mirror of
https://github.com/clearlinux/common.git
synced 2026-07-14 00:35:53 +00:00
Compare commits
26 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8997481daf | |||
| 896832831f | |||
| 1978d3268c | |||
| 7d9588c779 | |||
| 7794fa715c | |||
| 1c79b04db3 | |||
| b52570a7ad | |||
| 1a0e21943f | |||
| c4fe341972 | |||
| 23cc04134a | |||
| 9614d9e14e | |||
| 7f94ad0fc5 | |||
| 443c6b9694 | |||
| 5d7039fb9a | |||
| f2de7b7dc6 | |||
| 446c96bf65 | |||
| 0e420e434d | |||
| be0cdd6c5d | |||
| 7111d57d6c | |||
| 96850c538a | |||
| 96fd23e88b | |||
| 6f5fd11673 | |||
| 7ea85257af | |||
| 4ccec6a4d0 | |||
| c76272e46a | |||
| 1559d4e0b5 |
+7
-7
@@ -74,7 +74,7 @@ mockproper:
|
|||||||
$(MOCK) --clean --uniqueext=$(PKG_NAME)
|
$(MOCK) --clean --uniqueext=$(PKG_NAME)
|
||||||
|
|
||||||
configemail:
|
configemail:
|
||||||
@test -d .git || git init
|
@test -d .git || git init -b main
|
||||||
@$(call subjectprefix,$(PKG_NAME))
|
@$(call subjectprefix,$(PKG_NAME))
|
||||||
@echo -n "Subject prefix email configured to: "
|
@echo -n "Subject prefix email configured to: "
|
||||||
@git config --get format.subjectPrefix
|
@git config --get format.subjectPrefix
|
||||||
@@ -132,7 +132,7 @@ $(SRPMFILE): $(SPECFILE) $(__allsources) localreponotice clean-old-content
|
|||||||
# initialized locally, or if the remote contains no commits.
|
# initialized locally, or if the remote contains no commits.
|
||||||
pullrebase:
|
pullrebase:
|
||||||
@if [ -z "$$SKIP_GIT" ] && [ -e .git ]; then \
|
@if [ -z "$$SKIP_GIT" ] && [ -e .git ]; then \
|
||||||
if ! git rev-parse --verify --quiet origin/master > /dev/null; then \
|
if ! git rev-parse --verify --quiet origin/main > /dev/null; then \
|
||||||
echo "Remote not yet initialized. Continuing."; \
|
echo "Remote not yet initialized. Continuing."; \
|
||||||
exit 0; \
|
exit 0; \
|
||||||
fi; \
|
fi; \
|
||||||
@@ -146,7 +146,7 @@ pullrebase:
|
|||||||
echo "Current branch up-to-date. Continuing."; \
|
echo "Current branch up-to-date. Continuing."; \
|
||||||
exit 0; \
|
exit 0; \
|
||||||
fi; \
|
fi; \
|
||||||
echo "Rebasing to origin/master"; \
|
echo "Rebasing to origin/main"; \
|
||||||
if git status --porcelain | grep -q '^.[^?]'; \
|
if git status --porcelain | grep -q '^.[^?]'; \
|
||||||
then \
|
then \
|
||||||
git stash save; \
|
git stash save; \
|
||||||
@@ -310,8 +310,8 @@ prekoji-checks:
|
|||||||
koji: prekoji-checks kojidef
|
koji: prekoji-checks kojidef
|
||||||
@$(MAKE) spdxcheck
|
@$(MAKE) spdxcheck
|
||||||
@$(MAKE) checkblacklist
|
@$(MAKE) checkblacklist
|
||||||
@if [ "$(CURRENT_BRANCH)" != "master" ] && [ "$(CURRENT_BRANCH)" != "main" ]; then \
|
@if [ "$(CURRENT_BRANCH)" != "main" ]; then \
|
||||||
echo "Error: Must be on the \"master\" or \"main\" branch to submit to koji" >&2; \
|
echo "Error: Must be on the \"main\" branch to submit to koji" >&2; \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
fi; \
|
fi; \
|
||||||
if ! git diff --quiet HEAD -- ${SPECFILE}; then \
|
if ! git diff --quiet HEAD -- ${SPECFILE}; then \
|
||||||
@@ -319,7 +319,7 @@ koji: prekoji-checks kojidef
|
|||||||
exit 1; \
|
exit 1; \
|
||||||
fi; \
|
fi; \
|
||||||
git fetch; \
|
git fetch; \
|
||||||
if git rev-parse --verify --quiet origin/master >/dev/null; then \
|
if git rev-parse --verify --quiet origin/main >/dev/null; then \
|
||||||
git pull --rebase; \
|
git pull --rebase; \
|
||||||
fi; \
|
fi; \
|
||||||
if git ls-remote --tags --exit-code origin $(SRPMVERS) >/dev/null; then \
|
if git ls-remote --tags --exit-code origin $(SRPMVERS) >/dev/null; then \
|
||||||
@@ -327,7 +327,7 @@ koji: prekoji-checks kojidef
|
|||||||
exit 1; \
|
exit 1; \
|
||||||
fi
|
fi
|
||||||
git tag $(SRPMVERS)
|
git tag $(SRPMVERS)
|
||||||
git push origin $(CURRENT_BRANCH):master refs/tags/$(SRPMVERS)
|
git push origin $(CURRENT_BRANCH):main refs/tags/$(SRPMVERS)
|
||||||
$(KOJI_CMD) build $$KOJI_NOWAIT $(KOJI_TAG) $(PKG_BASE_URL)/$(PKG_NAME)?#$(SRPMVERS)
|
$(KOJI_CMD) build $$KOJI_NOWAIT $(KOJI_TAG) $(PKG_BASE_URL)/$(PKG_NAME)?#$(SRPMVERS)
|
||||||
|
|
||||||
#help rekoji: In case a previous 'make koji' failed, trigger a rebuild for the
|
#help rekoji: In case a previous 'make koji' failed, trigger a rebuild for the
|
||||||
|
|||||||
+17
-12
@@ -68,13 +68,18 @@ ${PULL_PKGS}:
|
|||||||
if [ ! -d "$$p/.git" ]; then echo "Nothing to pull for $$p - $$p/.git missing"; exit 0; fi; \
|
if [ ! -d "$$p/.git" ]; then echo "Nothing to pull for $$p - $$p/.git missing"; exit 0; fi; \
|
||||||
cd "$$p" ; \
|
cd "$$p" ; \
|
||||||
if git remote | grep origin >/dev/null 2>&1; then \
|
if git remote | grep origin >/dev/null 2>&1; then \
|
||||||
O=$$(git rev-parse origin/master 2>/dev/null); \
|
case "$$p" in \
|
||||||
|
("projects/"*) BRANCH=master ;; \
|
||||||
|
("packages/"*) BRANCH=main ;; \
|
||||||
|
(*) BRANCH=master ;; \
|
||||||
|
esac; \
|
||||||
|
O=$$(git rev-parse origin/"$$BRANCH" 2>/dev/null); \
|
||||||
git fetch --tags origin >/dev/null 2>&1; \
|
git fetch --tags origin >/dev/null 2>&1; \
|
||||||
N=$$(git rev-parse origin/master); \
|
N=$$(git rev-parse origin/"$$BRANCH"); \
|
||||||
if [ "$$O" != "$$N" ]; then \
|
if [ "$$O" != "$$N" ]; then \
|
||||||
echo "Updating: $$p"; \
|
echo "Updating: $$p"; \
|
||||||
if ! git merge --ff-only origin/master 2>/dev/null; then \
|
if ! git merge --ff-only origin/"$$BRANCH" 2>/dev/null; then \
|
||||||
echo "$$p: Cannot fast-forward $$(git rev-parse --abbrev-ref HEAD) to origin/master" ; \
|
echo "$$p: Cannot fast-forward $$(git rev-parse --abbrev-ref HEAD) to origin/$$BRANCH" ; \
|
||||||
fi ; \
|
fi ; \
|
||||||
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; \
|
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 ; \
|
fi ; \
|
||||||
@@ -159,19 +164,19 @@ status: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
|||||||
if [ -d "$$p/.git" ] && [ -n "$$(git -C $$p status -uno --porcelain)" ]; then echo "Uncommitted changes in $$p:"; git -C "$$p" status --short; fi ;\
|
if [ -d "$$p/.git" ] && [ -n "$$(git -C $$p status -uno --porcelain)" ]; then echo "Uncommitted changes in $$p:"; git -C "$$p" status --short; fi ;\
|
||||||
done
|
done
|
||||||
|
|
||||||
#help diff: Runs git diff for all package repos and displays the output using
|
#help diff: Runs git diff for all package repos and displays the diffstat using
|
||||||
#help diffstat. Requires that diffstat is installed.
|
#help the --stat flag.
|
||||||
diff: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
diff: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||||
@for p in projects/common $(addprefix packages/,$(PKGS_LOCAL)); do \
|
@for p in projects/common $(addprefix packages/,$(PKGS_LOCAL)); do \
|
||||||
(cd $$p; git status --porcelain | grep -vq '^?? ' && (echo "Uncommitted changes in: $$p"; git diff | diffstat -p1); :) ;\
|
(cd $$p; git status --porcelain | grep -vq '^?? ' && (echo "Uncommitted changes in: $$p"; git diff --stat); :) ;\
|
||||||
done
|
done
|
||||||
|
|
||||||
#help log: Run git log origin/master..HEAD for all package repos, thus
|
#help log: Run git log origin/main..HEAD for all package repos, thus
|
||||||
#help displaying any committed but unpushed changes.
|
#help displaying any committed but unpushed changes.
|
||||||
log: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
log: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||||
@for p in projects/common $(addprefix packages/,$(PKGS_LOCAL)); do \
|
@for p in projects/common $(addprefix packages/,$(PKGS_LOCAL)); do \
|
||||||
( cd $$p; if [ "$$(git rev-parse --verify HEAD)" != "$$(git rev-parse --verify origin/master)" ] ; then \
|
( cd $$p; if [ -n "$$(git rev-list origin/main..HEAD)" ] ; then \
|
||||||
echo $$p ; git --no-pager log --pretty="format:%s" origin/master..HEAD ; echo ; echo;\
|
echo $$p ; git --no-pager log --pretty="format:%s" origin/main..HEAD ; echo ; echo;\
|
||||||
fi ; ) \
|
fi ; ) \
|
||||||
done
|
done
|
||||||
|
|
||||||
@@ -211,7 +216,7 @@ autospecnew: preautospecnew-checks localreponotice
|
|||||||
mkdir -p $(TOPLVL)/packages/$(NAME); \
|
mkdir -p $(TOPLVL)/packages/$(NAME); \
|
||||||
( \
|
( \
|
||||||
cd $(TOPLVL)/packages/$(NAME); \
|
cd $(TOPLVL)/packages/$(NAME); \
|
||||||
git init; \
|
git init -b main; \
|
||||||
git remote add origin $(PKG_BASE_URL)/$(NAME); \
|
git remote add origin $(PKG_BASE_URL)/$(NAME); \
|
||||||
$(call gitoliteurl,packages/$(NAME)); \
|
$(call gitoliteurl,packages/$(NAME)); \
|
||||||
$(call subjectprefix,$(NAME)); \
|
$(call subjectprefix,$(NAME)); \
|
||||||
@@ -262,7 +267,7 @@ autospecnewgo: preautospecnew-checks localreponotice
|
|||||||
mkdir -p $(TOPLVL)/packages/$(NAME); \
|
mkdir -p $(TOPLVL)/packages/$(NAME); \
|
||||||
( \
|
( \
|
||||||
cd $(TOPLVL)/packages/$(NAME); \
|
cd $(TOPLVL)/packages/$(NAME); \
|
||||||
git init; \
|
git init -b main; \
|
||||||
git remote add origin $(PKG_BASE_URL)/$(NAME); \
|
git remote add origin $(PKG_BASE_URL)/$(NAME); \
|
||||||
$(call gitoliteurl,packages/$(NAME)); \
|
$(call gitoliteurl,packages/$(NAME)); \
|
||||||
$(call subjectprefix,$(NAME)); \
|
$(call subjectprefix,$(NAME)); \
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ Download the [user setup](user-setup.sh) script and run it on your Clear Linux
|
|||||||
system as an unprivileged user.
|
system as an unprivileged user.
|
||||||
|
|
||||||
```
|
```
|
||||||
$ curl -O https://raw.githubusercontent.com/clearlinux/common/master/user-setup.sh
|
$ curl -O https://raw.githubusercontent.com/clearlinux/common/main/user-setup.sh
|
||||||
$ chmod +x user-setup.sh
|
$ chmod +x user-setup.sh
|
||||||
$ ./user-setup.sh
|
$ ./user-setup.sh
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -49,6 +49,7 @@ QGIS
|
|||||||
R
|
R
|
||||||
R-AER
|
R-AER
|
||||||
R-AMORE
|
R-AMORE
|
||||||
|
R-ATR
|
||||||
R-Amelia
|
R-Amelia
|
||||||
R-AmesHousing
|
R-AmesHousing
|
||||||
R-BB
|
R-BB
|
||||||
@@ -408,6 +409,7 @@ R-fixest
|
|||||||
R-flashClust
|
R-flashClust
|
||||||
R-flexmix
|
R-flexmix
|
||||||
R-flexsurv
|
R-flexsurv
|
||||||
|
R-flextable
|
||||||
R-float
|
R-float
|
||||||
R-fontBitstreamVera
|
R-fontBitstreamVera
|
||||||
R-fontLiberation
|
R-fontLiberation
|
||||||
@@ -431,6 +433,9 @@ R-future
|
|||||||
R-future.apply
|
R-future.apply
|
||||||
R-g.data
|
R-g.data
|
||||||
R-gam
|
R-gam
|
||||||
|
R-gamlss
|
||||||
|
R-gamlss.data
|
||||||
|
R-gamlss.dist
|
||||||
R-gamm4
|
R-gamm4
|
||||||
R-gargle
|
R-gargle
|
||||||
R-gbRd
|
R-gbRd
|
||||||
@@ -587,6 +592,7 @@ R-mda
|
|||||||
R-measures
|
R-measures
|
||||||
R-memisc
|
R-memisc
|
||||||
R-memoise
|
R-memoise
|
||||||
|
R-metadat
|
||||||
R-metafor
|
R-metafor
|
||||||
R-mi
|
R-mi
|
||||||
R-mice
|
R-mice
|
||||||
@@ -640,12 +646,14 @@ R-npsurv
|
|||||||
R-numDeriv
|
R-numDeriv
|
||||||
R-nws
|
R-nws
|
||||||
R-nycflights13
|
R-nycflights13
|
||||||
|
R-officer
|
||||||
R-openssl
|
R-openssl
|
||||||
R-openxlsx
|
R-openxlsx
|
||||||
R-optextras
|
R-optextras
|
||||||
R-optimx
|
R-optimx
|
||||||
R-optparse
|
R-optparse
|
||||||
R-ordinal
|
R-ordinal
|
||||||
|
R-ordinalCont
|
||||||
R-orthopolynom
|
R-orthopolynom
|
||||||
R-pROC
|
R-pROC
|
||||||
R-packrat
|
R-packrat
|
||||||
@@ -935,6 +943,7 @@ R-tm
|
|||||||
R-tmvnsim
|
R-tmvnsim
|
||||||
R-toOrdinal
|
R-toOrdinal
|
||||||
R-topicmodels
|
R-topicmodels
|
||||||
|
R-tram
|
||||||
R-tree
|
R-tree
|
||||||
R-triebeard
|
R-triebeard
|
||||||
R-trimcluster
|
R-trimcluster
|
||||||
@@ -1059,9 +1068,7 @@ analitza
|
|||||||
ansible
|
ansible
|
||||||
ansible-core
|
ansible-core
|
||||||
antlr4-python3-runtime
|
antlr4-python3-runtime
|
||||||
anyio
|
|
||||||
apache-ant
|
apache-ant
|
||||||
applaunchservices
|
|
||||||
appstream
|
appstream
|
||||||
appstream-glib
|
appstream-glib
|
||||||
apr
|
apr
|
||||||
@@ -1125,6 +1132,7 @@ bcache-tools
|
|||||||
bcc
|
bcc
|
||||||
bcftools
|
bcftools
|
||||||
bdftopcf
|
bdftopcf
|
||||||
|
bemenu
|
||||||
bijiben
|
bijiben
|
||||||
bind-utils
|
bind-utils
|
||||||
binutils
|
binutils
|
||||||
@@ -1177,6 +1185,7 @@ byobu
|
|||||||
bz2file
|
bz2file
|
||||||
bzip2
|
bzip2
|
||||||
c-ares
|
c-ares
|
||||||
|
c-basic-meta
|
||||||
cJSON
|
cJSON
|
||||||
c_rehash
|
c_rehash
|
||||||
ca-certs
|
ca-certs
|
||||||
@@ -1200,7 +1209,6 @@ cdparanoia
|
|||||||
ceph
|
ceph
|
||||||
ceph-deploy
|
ceph-deploy
|
||||||
cereal
|
cereal
|
||||||
certbot
|
|
||||||
cfitsio
|
cfitsio
|
||||||
cgdb
|
cgdb
|
||||||
cgit
|
cgit
|
||||||
@@ -1292,6 +1300,7 @@ compat-lua-53
|
|||||||
compat-nettle-soname7
|
compat-nettle-soname7
|
||||||
compat-pangomm-soname14
|
compat-pangomm-soname14
|
||||||
compat-poppler-soname112
|
compat-poppler-soname112
|
||||||
|
compat-poppler-soname117
|
||||||
compat-protobuf-soname23
|
compat-protobuf-soname23
|
||||||
compat-readline-soname5
|
compat-readline-soname5
|
||||||
compat-rest-soname07
|
compat-rest-soname07
|
||||||
@@ -1494,7 +1503,6 @@ fribidi
|
|||||||
fritzing-app
|
fritzing-app
|
||||||
fs
|
fs
|
||||||
fsearch
|
fsearch
|
||||||
funcparserlib
|
|
||||||
fuse
|
fuse
|
||||||
fwupd
|
fwupd
|
||||||
fwupd-efi
|
fwupd-efi
|
||||||
@@ -1503,6 +1511,7 @@ gawk
|
|||||||
gc
|
gc
|
||||||
gcab
|
gcab
|
||||||
gcc
|
gcc
|
||||||
|
gcc11
|
||||||
gcc7
|
gcc7
|
||||||
gcc8
|
gcc8
|
||||||
gcc9
|
gcc9
|
||||||
@@ -2010,6 +2019,7 @@ ledmon
|
|||||||
lensfun
|
lensfun
|
||||||
leptonica
|
leptonica
|
||||||
less
|
less
|
||||||
|
level-zero
|
||||||
leveldb
|
leveldb
|
||||||
lftp
|
lftp
|
||||||
libArcus
|
libArcus
|
||||||
@@ -2068,6 +2078,7 @@ libcomps
|
|||||||
libconfig
|
libconfig
|
||||||
libcroco
|
libcroco
|
||||||
libcryptui
|
libcryptui
|
||||||
|
libcuckoo
|
||||||
libcxx
|
libcxx
|
||||||
libdaemon
|
libdaemon
|
||||||
libdatrie
|
libdatrie
|
||||||
@@ -2323,6 +2334,7 @@ lksctp-tools
|
|||||||
llvm
|
llvm
|
||||||
llvm11
|
llvm11
|
||||||
llvm12
|
llvm12
|
||||||
|
llvm13
|
||||||
lm-sensors
|
lm-sensors
|
||||||
lmdb
|
lmdb
|
||||||
logrotate
|
logrotate
|
||||||
@@ -2603,6 +2615,7 @@ pbzip2
|
|||||||
pciutils
|
pciutils
|
||||||
pcmanfm
|
pcmanfm
|
||||||
pcmanfm-qt
|
pcmanfm-qt
|
||||||
|
pcp
|
||||||
pcre
|
pcre
|
||||||
pcre2
|
pcre2
|
||||||
pcs
|
pcs
|
||||||
@@ -3057,6 +3070,7 @@ perl-Metrics-Any
|
|||||||
perl-Minion
|
perl-Minion
|
||||||
perl-Mixin-Linewise
|
perl-Mixin-Linewise
|
||||||
perl-Mock-Config
|
perl-Mock-Config
|
||||||
|
perl-Mock-Sub
|
||||||
perl-Modern-Perl
|
perl-Modern-Perl
|
||||||
perl-Module-Build
|
perl-Module-Build
|
||||||
perl-Module-Build-Tiny
|
perl-Module-Build-Tiny
|
||||||
@@ -3596,17 +3610,22 @@ pypi-aiofiles
|
|||||||
pypi-aiohttp
|
pypi-aiohttp
|
||||||
pypi-aiohttp_cors
|
pypi-aiohttp_cors
|
||||||
pypi-aiosignal
|
pypi-aiosignal
|
||||||
|
pypi-aiosmtpd
|
||||||
pypi-alabaster
|
pypi-alabaster
|
||||||
|
pypi-altgraph
|
||||||
pypi-ansi2html
|
pypi-ansi2html
|
||||||
pypi-ansible_compat
|
pypi-ansible_compat
|
||||||
pypi-ansible_pygments
|
pypi-ansible_pygments
|
||||||
|
pypi-anyio
|
||||||
pypi-apacheconfig
|
pypi-apacheconfig
|
||||||
pypi-apipkg
|
pypi-apipkg
|
||||||
pypi-appdirs
|
pypi-appdirs
|
||||||
pypi-applicationinsights
|
pypi-applicationinsights
|
||||||
pypi-argcomplete
|
pypi-argcomplete
|
||||||
|
pypi-argh
|
||||||
pypi-argon2_cffi
|
pypi-argon2_cffi
|
||||||
pypi-argon2_cffi_bindings
|
pypi-argon2_cffi_bindings
|
||||||
|
pypi-argparse
|
||||||
pypi-arrow
|
pypi-arrow
|
||||||
pypi-asgiref
|
pypi-asgiref
|
||||||
pypi-asn1crypto
|
pypi-asn1crypto
|
||||||
@@ -3618,8 +3637,10 @@ pypi-astunparse
|
|||||||
pypi-asv
|
pypi-asv
|
||||||
pypi-async_generator
|
pypi-async_generator
|
||||||
pypi-async_timeout
|
pypi-async_timeout
|
||||||
|
pypi-asyncssh
|
||||||
pypi-asynctest
|
pypi-asynctest
|
||||||
pypi-atomicwrites
|
pypi-atomicwrites
|
||||||
|
pypi-atpublic
|
||||||
pypi-attrs
|
pypi-attrs
|
||||||
pypi-awesomeversion
|
pypi-awesomeversion
|
||||||
pypi-awscrt
|
pypi-awscrt
|
||||||
@@ -3638,6 +3659,7 @@ pypi-backcall
|
|||||||
pypi-backports.cached_property
|
pypi-backports.cached_property
|
||||||
pypi-backports.entry_points_selectable
|
pypi-backports.entry_points_selectable
|
||||||
pypi-backports.functools_lru_cache
|
pypi-backports.functools_lru_cache
|
||||||
|
pypi-backports.shutil_get_terminal_size
|
||||||
pypi-backports.ssl_match_hostname
|
pypi-backports.ssl_match_hostname
|
||||||
pypi-backports.weakref
|
pypi-backports.weakref
|
||||||
pypi-bash_kernel
|
pypi-bash_kernel
|
||||||
@@ -3669,8 +3691,11 @@ pypi-cached_property
|
|||||||
pypi-cachetools
|
pypi-cachetools
|
||||||
pypi-cachy
|
pypi-cachy
|
||||||
pypi-capturer
|
pypi-capturer
|
||||||
|
pypi-cattrs
|
||||||
pypi-cchardet
|
pypi-cchardet
|
||||||
pypi-cerberus
|
pypi-cerberus
|
||||||
|
pypi-certbot
|
||||||
|
pypi-certbot_dns_google
|
||||||
pypi-certifi
|
pypi-certifi
|
||||||
pypi-cffi
|
pypi-cffi
|
||||||
pypi-cffsubr
|
pypi-cffsubr
|
||||||
@@ -3701,7 +3726,6 @@ pypi-columnize
|
|||||||
pypi-commonmark
|
pypi-commonmark
|
||||||
pypi-complete
|
pypi-complete
|
||||||
pypi-compreffor
|
pypi-compreffor
|
||||||
pypi-comtypes
|
|
||||||
pypi-configargparse
|
pypi-configargparse
|
||||||
pypi-configparser
|
pypi-configparser
|
||||||
pypi-cons
|
pypi-cons
|
||||||
@@ -3746,6 +3770,7 @@ pypi-django_compressor
|
|||||||
pypi-django_discover_runner
|
pypi-django_discover_runner
|
||||||
pypi-django_nose
|
pypi-django_nose
|
||||||
pypi-django_pyscss
|
pypi-django_pyscss
|
||||||
|
pypi-dnacentersdk
|
||||||
pypi-dns_lexicon
|
pypi-dns_lexicon
|
||||||
pypi-dnspython
|
pypi-dnspython
|
||||||
pypi-docker
|
pypi-docker
|
||||||
@@ -3764,6 +3789,7 @@ pypi-envs
|
|||||||
pypi-eternalegypt
|
pypi-eternalegypt
|
||||||
pypi-etuples
|
pypi-etuples
|
||||||
pypi-evdev
|
pypi-evdev
|
||||||
|
pypi-exceptiongroup
|
||||||
pypi-exdir
|
pypi-exdir
|
||||||
pypi-execnet
|
pypi-execnet
|
||||||
pypi-executing
|
pypi-executing
|
||||||
@@ -3781,14 +3807,18 @@ pypi-flake8_blind_except
|
|||||||
pypi-flake8_class_newline
|
pypi-flake8_class_newline
|
||||||
pypi-flake8_docstrings
|
pypi-flake8_docstrings
|
||||||
pypi-flake8_import_order
|
pypi-flake8_import_order
|
||||||
|
pypi-flaky
|
||||||
pypi-flask
|
pypi-flask
|
||||||
pypi-flatten_json
|
pypi-flatten_json
|
||||||
pypi-flit
|
pypi-flit
|
||||||
pypi-flit_core
|
pypi-flit_core
|
||||||
|
pypi-flit_scm
|
||||||
pypi-fontmath
|
pypi-fontmath
|
||||||
pypi-freezegun
|
pypi-freezegun
|
||||||
pypi-frozenlist
|
pypi-frozenlist
|
||||||
pypi-fsspec
|
pypi-fsspec
|
||||||
|
pypi-ftfy
|
||||||
|
pypi-funcparserlib
|
||||||
pypi-future
|
pypi-future
|
||||||
pypi-gast
|
pypi-gast
|
||||||
pypi-gcs_oauth2_boto_plugin
|
pypi-gcs_oauth2_boto_plugin
|
||||||
@@ -3822,6 +3852,7 @@ pypi-h11
|
|||||||
pypi-h2
|
pypi-h2
|
||||||
pypi-h5py
|
pypi-h5py
|
||||||
pypi-hammock
|
pypi-hammock
|
||||||
|
pypi-hatch_vcs
|
||||||
pypi-hatchling
|
pypi-hatchling
|
||||||
pypi-heapdict
|
pypi-heapdict
|
||||||
pypi-hkp4py
|
pypi-hkp4py
|
||||||
@@ -3857,6 +3888,7 @@ pypi-iniconfig
|
|||||||
pypi-inspursmsdk
|
pypi-inspursmsdk
|
||||||
pypi-intervaltree
|
pypi-intervaltree
|
||||||
pypi-invoke
|
pypi-invoke
|
||||||
|
pypi-iocapture
|
||||||
pypi-ipaddress
|
pypi-ipaddress
|
||||||
pypi-ipdb
|
pypi-ipdb
|
||||||
pypi-ipdbplugin
|
pypi-ipdbplugin
|
||||||
@@ -3919,6 +3951,7 @@ pypi-khal
|
|||||||
pypi-kiwisolver
|
pypi-kiwisolver
|
||||||
pypi-krb5
|
pypi-krb5
|
||||||
pypi-kubernetes
|
pypi-kubernetes
|
||||||
|
pypi-langcodes
|
||||||
pypi-lark_parser
|
pypi-lark_parser
|
||||||
pypi-latexcodec
|
pypi-latexcodec
|
||||||
pypi-lazy_object_proxy
|
pypi-lazy_object_proxy
|
||||||
@@ -3932,6 +3965,8 @@ pypi-logical_unification
|
|||||||
pypi-logilab_common
|
pypi-logilab_common
|
||||||
pypi-lxml
|
pypi-lxml
|
||||||
pypi-lz4
|
pypi-lz4
|
||||||
|
pypi-m2r
|
||||||
|
pypi-macholib
|
||||||
pypi-mako
|
pypi-mako
|
||||||
pypi-markdown
|
pypi-markdown
|
||||||
pypi-markdown2
|
pypi-markdown2
|
||||||
@@ -3948,7 +3983,9 @@ pypi-mkdocs
|
|||||||
pypi-mkdocs_material
|
pypi-mkdocs_material
|
||||||
pypi-mkdocs_material_extensions
|
pypi-mkdocs_material_extensions
|
||||||
pypi-mock
|
pypi-mock
|
||||||
|
pypi-modulegraph
|
||||||
pypi-molecule
|
pypi-molecule
|
||||||
|
pypi-molecule_docker
|
||||||
pypi-monotonic
|
pypi-monotonic
|
||||||
pypi-more_itertools
|
pypi-more_itertools
|
||||||
pypi-moreorless
|
pypi-moreorless
|
||||||
@@ -3981,12 +4018,14 @@ pypi-netdisco
|
|||||||
pypi-netifaces
|
pypi-netifaces
|
||||||
pypi-networkx
|
pypi-networkx
|
||||||
pypi-nibabel
|
pypi-nibabel
|
||||||
|
pypi-nltk
|
||||||
pypi-nocasedict
|
pypi-nocasedict
|
||||||
pypi-nocaselist
|
pypi-nocaselist
|
||||||
pypi-nodeenv
|
pypi-nodeenv
|
||||||
pypi-nose
|
pypi-nose
|
||||||
pypi-nose_timer
|
pypi-nose_timer
|
||||||
pypi-notebook
|
pypi-notebook
|
||||||
|
pypi-notebook_shim
|
||||||
pypi-numpoly
|
pypi-numpoly
|
||||||
pypi-numpy
|
pypi-numpy
|
||||||
pypi-numpydoc
|
pypi-numpydoc
|
||||||
@@ -3999,11 +4038,13 @@ pypi-openshift
|
|||||||
pypi-opt_einsum
|
pypi-opt_einsum
|
||||||
pypi-ouimeaux
|
pypi-ouimeaux
|
||||||
pypi-outcome
|
pypi-outcome
|
||||||
|
pypi-ovirt_imageio
|
||||||
pypi-packaging
|
pypi-packaging
|
||||||
pypi-paho_mqtt
|
pypi-paho_mqtt
|
||||||
pypi-pandocfilters
|
pypi-pandocfilters
|
||||||
pypi-paramiko
|
pypi-paramiko
|
||||||
pypi-parse
|
pypi-parse
|
||||||
|
pypi-parse_type
|
||||||
pypi-parsedatetime
|
pypi-parsedatetime
|
||||||
pypi-parso
|
pypi-parso
|
||||||
pypi-partd
|
pypi-partd
|
||||||
@@ -4012,8 +4053,10 @@ pypi-pastedeploy
|
|||||||
pypi-pastel
|
pypi-pastel
|
||||||
pypi-pathlib
|
pypi-pathlib
|
||||||
pypi-pathspec
|
pypi-pathspec
|
||||||
|
pypi-pathtools
|
||||||
pypi-patsy
|
pypi-patsy
|
||||||
pypi-pbr
|
pypi-pbr
|
||||||
|
pypi-pdm_pep517
|
||||||
pypi-pdocs
|
pypi-pdocs
|
||||||
pypi-pecan
|
pypi-pecan
|
||||||
pypi-ped
|
pypi-ped
|
||||||
@@ -4028,6 +4071,7 @@ pypi-pickleshare
|
|||||||
pypi-pid
|
pypi-pid
|
||||||
pypi-pillow
|
pypi-pillow
|
||||||
pypi-pip
|
pypi-pip
|
||||||
|
pypi-pip_tools
|
||||||
pypi-pkgconfig
|
pypi-pkgconfig
|
||||||
pypi-pkginfo
|
pypi-pkginfo
|
||||||
pypi-platformdirs
|
pypi-platformdirs
|
||||||
@@ -4038,6 +4082,7 @@ pypi-pockets
|
|||||||
pypi-poetry
|
pypi-poetry
|
||||||
pypi-poetry_core
|
pypi-poetry_core
|
||||||
pypi-polib
|
pypi-polib
|
||||||
|
pypi-port_for
|
||||||
pypi-portalocker
|
pypi-portalocker
|
||||||
pypi-portend
|
pypi-portend
|
||||||
pypi-portray
|
pypi-portray
|
||||||
@@ -4095,6 +4140,7 @@ pypi-pylint
|
|||||||
pypi-pyls_black
|
pypi-pyls_black
|
||||||
pypi-pymdown_extensions
|
pypi-pymdown_extensions
|
||||||
pypi-pynacl
|
pypi-pynacl
|
||||||
|
pypi-pynetbox
|
||||||
pypi-pynsist
|
pypi-pynsist
|
||||||
pypi-pyopengl
|
pypi-pyopengl
|
||||||
pypi-pyopenssl
|
pypi-pyopenssl
|
||||||
@@ -4154,6 +4200,7 @@ pypi-python_slugify
|
|||||||
pypi-python_string_utils
|
pypi-python_string_utils
|
||||||
pypi-python_xlib
|
pypi-python_xlib
|
||||||
pypi-pythran
|
pypi-pythran
|
||||||
|
pypi-pytoolconfig
|
||||||
pypi-pytz
|
pypi-pytz
|
||||||
pypi-pytz_deprecation_shim
|
pypi-pytz_deprecation_shim
|
||||||
pypi-pyu2f
|
pypi-pyu2f
|
||||||
@@ -4253,6 +4300,7 @@ pypi-sphinx_last_updated_by_git
|
|||||||
pypi-sphinx_notfound_page
|
pypi-sphinx_notfound_page
|
||||||
pypi-sphinx_rtd_theme
|
pypi-sphinx_rtd_theme
|
||||||
pypi-sphinx_thebe
|
pypi-sphinx_thebe
|
||||||
|
pypi-sphinx_theme_builder
|
||||||
pypi-sphinx_togglebutton
|
pypi-sphinx_togglebutton
|
||||||
pypi-sphinxcontrib_apidoc
|
pypi-sphinxcontrib_apidoc
|
||||||
pypi-sphinxcontrib_applehelp
|
pypi-sphinxcontrib_applehelp
|
||||||
@@ -4265,9 +4313,11 @@ pypi-sphinxcontrib_httpdomain
|
|||||||
pypi-sphinxcontrib_jsmath
|
pypi-sphinxcontrib_jsmath
|
||||||
pypi-sphinxcontrib_napoleon
|
pypi-sphinxcontrib_napoleon
|
||||||
pypi-sphinxcontrib_newsfeed
|
pypi-sphinxcontrib_newsfeed
|
||||||
|
pypi-sphinxcontrib_openapi
|
||||||
pypi-sphinxcontrib_plantuml
|
pypi-sphinxcontrib_plantuml
|
||||||
pypi-sphinxcontrib_programoutput
|
pypi-sphinxcontrib_programoutput
|
||||||
pypi-sphinxcontrib_qthelp
|
pypi-sphinxcontrib_qthelp
|
||||||
|
pypi-sphinxcontrib_redoc
|
||||||
pypi-sphinxcontrib_seqdiag
|
pypi-sphinxcontrib_seqdiag
|
||||||
pypi-sphinxcontrib_serializinghtml
|
pypi-sphinxcontrib_serializinghtml
|
||||||
pypi-sphinxcontrib_svg2pdfconverter
|
pypi-sphinxcontrib_svg2pdfconverter
|
||||||
@@ -4294,6 +4344,7 @@ pypi-testpath
|
|||||||
pypi-text_unidecode
|
pypi-text_unidecode
|
||||||
pypi-textdistance
|
pypi-textdistance
|
||||||
pypi-textfsm
|
pypi-textfsm
|
||||||
|
pypi-texttable
|
||||||
pypi-theano
|
pypi-theano
|
||||||
pypi-threadpoolctl
|
pypi-threadpoolctl
|
||||||
pypi-three_merge
|
pypi-three_merge
|
||||||
@@ -4306,6 +4357,7 @@ pypi-tomli_w
|
|||||||
pypi-tomlkit
|
pypi-tomlkit
|
||||||
pypi-toolz
|
pypi-toolz
|
||||||
pypi-tornado
|
pypi-tornado
|
||||||
|
pypi-tornado_xstatic
|
||||||
pypi-tox
|
pypi-tox
|
||||||
pypi-tqdm
|
pypi-tqdm
|
||||||
pypi-traitlets
|
pypi-traitlets
|
||||||
@@ -4340,6 +4392,7 @@ pypi-ua_parser
|
|||||||
pypi-uamqp
|
pypi-uamqp
|
||||||
pypi-uc_micro_py
|
pypi-uc_micro_py
|
||||||
pypi-ufolib2
|
pypi-ufolib2
|
||||||
|
pypi-uharfbuzz
|
||||||
pypi-ujson
|
pypi-ujson
|
||||||
pypi-uncertainpy
|
pypi-uncertainpy
|
||||||
pypi-unicodedata2
|
pypi-unicodedata2
|
||||||
@@ -4365,11 +4418,13 @@ pypi-webcolors
|
|||||||
pypi-webencodings
|
pypi-webencodings
|
||||||
pypi-webob
|
pypi-webob
|
||||||
pypi-websocket_client
|
pypi-websocket_client
|
||||||
|
pypi-websockets
|
||||||
pypi-webtest
|
pypi-webtest
|
||||||
pypi-werkzeug
|
pypi-werkzeug
|
||||||
pypi-wheel
|
pypi-wheel
|
||||||
pypi-widgetsnbextension
|
pypi-widgetsnbextension
|
||||||
pypi-wikipedia
|
pypi-wikipedia
|
||||||
|
pypi-wordfreq
|
||||||
pypi-wrapt
|
pypi-wrapt
|
||||||
pypi-wsgiproxy2
|
pypi-wsgiproxy2
|
||||||
pypi-wsproto
|
pypi-wsproto
|
||||||
@@ -4477,6 +4532,7 @@ qtwebchannel
|
|||||||
qtwebengine
|
qtwebengine
|
||||||
qtwebsockets
|
qtwebsockets
|
||||||
qtx11extras
|
qtx11extras
|
||||||
|
qtxdg-tools
|
||||||
qtxmlpatterns
|
qtxmlpatterns
|
||||||
quagga
|
quagga
|
||||||
quassel
|
quassel
|
||||||
@@ -4663,13 +4719,13 @@ tevent
|
|||||||
texinfo
|
texinfo
|
||||||
texlive
|
texlive
|
||||||
texmaker
|
texmaker
|
||||||
texttable
|
|
||||||
tgt
|
tgt
|
||||||
the_silver_searcher
|
the_silver_searcher
|
||||||
thermal_daemon
|
thermal_daemon
|
||||||
thermal_monitor
|
thermal_monitor
|
||||||
thin-provisioning-tools
|
thin-provisioning-tools
|
||||||
threadweaver
|
threadweaver
|
||||||
|
thrift
|
||||||
thunar-volman
|
thunar-volman
|
||||||
thunderbird
|
thunderbird
|
||||||
thunderbolt-software-user-space
|
thunderbolt-software-user-space
|
||||||
@@ -4701,6 +4757,7 @@ udisks2
|
|||||||
udunits
|
udunits
|
||||||
uget
|
uget
|
||||||
uhttpmock
|
uhttpmock
|
||||||
|
umockdev
|
||||||
unbundle
|
unbundle
|
||||||
unibilium
|
unibilium
|
||||||
unifdef
|
unifdef
|
||||||
@@ -4720,6 +4777,7 @@ usrbinjava
|
|||||||
usrbinpython
|
usrbinpython
|
||||||
usrbinvi
|
usrbinvi
|
||||||
utf8cpp
|
utf8cpp
|
||||||
|
utf8proc
|
||||||
util-linux
|
util-linux
|
||||||
util-macros
|
util-macros
|
||||||
uwsgi
|
uwsgi
|
||||||
@@ -4875,3 +4933,4 @@ zopfli
|
|||||||
zsh
|
zsh
|
||||||
zstd
|
zstd
|
||||||
zstd-bin
|
zstd-bin
|
||||||
|
zxing
|
||||||
|
|||||||
Reference in New Issue
Block a user