mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 19:16:00 +00:00
Compare commits
56 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 60b1c5cf68 | |||
| 2325c43369 | |||
| 9f72f5fc40 | |||
| 757dcd348d | |||
| d2e4833782 | |||
| 9e5766df8c | |||
| 009b7a10e1 | |||
| 249cbb0ea6 | |||
| 4a690a35dc | |||
| d1a7caafcd | |||
| 1023b3c6cc | |||
| 2affe6047a | |||
| 2a10dd326d | |||
| 2d360228ce | |||
| a8641f898f | |||
| fd412b15a5 | |||
| eb579ba11d | |||
| c545a66185 | |||
| f4f726d8e0 | |||
| 8f385c3366 | |||
| 305bf6f63b | |||
| 4797950600 | |||
| 18b1f4841d | |||
| 2a061d8ec2 | |||
| 47927ff332 | |||
| 80bb811f5f | |||
| 71827cbf99 | |||
| 84a9b62e3f | |||
| 0dfb2f6ef5 | |||
| 59a46563cf | |||
| a198b2d0a0 | |||
| 9574f4ecde | |||
| 649f1e38de | |||
| 0b86a75a10 | |||
| a06eab078d | |||
| d4ea9f57dc | |||
| ee0847f750 | |||
| 98047e4b8e | |||
| aa98640939 | |||
| 2b355f3fcb | |||
| 57632934c0 | |||
| a4b3da2bca | |||
| f0f2ae6fdf | |||
| 9d82331cfa | |||
| ea568f6239 | |||
| 4e2e716a76 | |||
| c64bda09fc | |||
| 65c5758c08 | |||
| 3d334b1fd4 | |||
| 31399a1cb7 | |||
| d7bff595de | |||
| 3f53222de8 | |||
| 4435eace17 | |||
| e971c54843 | |||
| c5df45b631 | |||
| 1123cf8edc |
+30
-44
@@ -21,7 +21,8 @@ RPMS ?= $(LATEST_RPMS)
|
||||
WITH_SUDO = $(shell cmp /usr/bin/mock /usr/sbin/mock &> /dev/null && echo sudo )
|
||||
|
||||
# MOCK_CONFIG_VAL is set in Makefile.shared
|
||||
MOCK ?= $(WITH_SUDO) /usr/bin/mock -r $(MOCK_CONFIG_VAL) $(MOCK_OPTS)
|
||||
MOCK_SMP_FLAGS=$(patsubst -j%, -D_smp_mflags\ -j%,$(filter -j%, $(MAKEFLAGS)))
|
||||
MOCK ?= $(WITH_SUDO) /usr/bin/mock -r $(MOCK_CONFIG_VAL) $(MOCK_SMP_FLAGS) $(MOCK_OPTS)
|
||||
|
||||
ifneq ($(wildcard upstream),)
|
||||
__allsources := $(notdir $(strip $(shell cat upstream)))
|
||||
@@ -172,7 +173,7 @@ autospec: preautospec-checks pullrebase localreponotice clean-old-content
|
||||
--name $(PKG_NAME) \
|
||||
--archives $(ARCHIVES) \
|
||||
--mock-config $(MOCK_CONFIG_VAL) \
|
||||
--mock-opts="$(MOCK_OPTS)" \
|
||||
--mock-opts="$(MOCK_SMP_FLAGS) $(MOCK_OPTS)" \
|
||||
$${SETVERSION:+ --version $${SETVERSION}} \
|
||||
$${NON_INTERACTIVE:+ --non_interactive} \
|
||||
$${SKIP_GIT:+ --skip-git} \
|
||||
@@ -349,11 +350,6 @@ rekoji-nowait:
|
||||
logcheck:
|
||||
@perl $(TOPLVL)/projects/common/logcheck.pl results/build.log
|
||||
|
||||
$(TOPLVL)/repo:
|
||||
@echo "Creating local RPM repository $(TOPLVL)/repo"
|
||||
mkdir $(TOPLVL)/repo
|
||||
$(MAKE) localrepocreate
|
||||
|
||||
#help repoadd: Adds locally-built RPMs for this package to the local RPM
|
||||
#help repository. If this repository does not yet exist, it is created and
|
||||
#help enabled.
|
||||
@@ -361,22 +357,16 @@ repoadd: $(TOPLVL)/repo
|
||||
@if [ -z "${LATEST_RPMS}" ]; then \
|
||||
echo "No rpms found in rpms/ directory."; \
|
||||
exit 1; \
|
||||
fi; \
|
||||
if [ -f .repo-index ]; then \
|
||||
echo "Cleaning old rpms:"; \
|
||||
for r in `cat .repo-index`; do \
|
||||
echo "-$$r"; \
|
||||
rm -f $(TOPLVL)/repo/$$r; \
|
||||
done; \
|
||||
rm .repo-index; \
|
||||
fi; \
|
||||
for r in ${LATEST_RPMS}; do \
|
||||
echo "+$$r"; \
|
||||
echo $$(basename $$r) >> .repo-index; \
|
||||
ln -f $$r $(TOPLVL)/repo/; \
|
||||
done
|
||||
$(MAKE) localrepocreate
|
||||
$(call localrepoenable,${PM_CONF},${MOCK_CONF})
|
||||
fi
|
||||
$(MAKE) -s repodel NO_CREATEREPO=1
|
||||
@echo "Adding new rpms:"; \
|
||||
for rpm in ${LATEST_RPMS}; do \
|
||||
echo "+$${rpm#rpms/}"; \
|
||||
echo "$${rpm#rpms/}" >> .repo-index; \
|
||||
done; \
|
||||
flock $</repo.lock ln -f -t $< ${LATEST_RPMS}
|
||||
$(MAKE) -s localrepocreate
|
||||
$(MAKE) -s localrepoenable
|
||||
|
||||
#help repostage: Stages locally-built RPMs for this package to the local RPM
|
||||
#help directory. If this directory does not yet exist, it is created and
|
||||
@@ -385,37 +375,33 @@ repostage: $(TOPLVL)/repo
|
||||
@if [ -z "${LATEST_RPMS}" ]; then \
|
||||
echo "No rpms found in rpms/ directory."; \
|
||||
exit 1; \
|
||||
fi; \
|
||||
if [ -f .repo-index ]; then \
|
||||
echo "Cleaning old rpms:"; \
|
||||
for r in `cat .repo-index`; do \
|
||||
echo "-$$r"; \
|
||||
rm -f $(TOPLVL)/repo/$$r; \
|
||||
done; \
|
||||
rm .repo-index; \
|
||||
fi; \
|
||||
for r in ${LATEST_RPMS}; do \
|
||||
echo "+$$r"; \
|
||||
echo $$(basename $$r) >> .repo-index; \
|
||||
ln -f $$r $(TOPLVL)/repo/; \
|
||||
done
|
||||
fi
|
||||
$(MAKE) -s repodel NO_CREATEREPO=1
|
||||
@for r in ${LATEST_RPMS}; do \
|
||||
echo "+$${rpm#rpms/}"; \
|
||||
echo "$${rpm#rpms/}" >> .repo-index; \
|
||||
done; \
|
||||
flock $</repo.lock ln -f -t $< ${LATEST_RPMS}
|
||||
|
||||
#help repodel: Removes RPMs from the local RPM repository that were
|
||||
#help previously added by 'make repoadd' for this package.
|
||||
repodel:
|
||||
repodel: $(TOPLVL)/repo
|
||||
@if [ -f .repo-index ]; then \
|
||||
echo "Cleaning old rpms:"; \
|
||||
for r in `cat .repo-index`; do \
|
||||
echo "-$$r"; \
|
||||
rm -f $(TOPLVL)/repo/$$r; \
|
||||
done; \
|
||||
mapfile -t rpms < <(sed 's|.*|$</&|' .repo-index); \
|
||||
for rpm in "$${rpms[@]}"; do \
|
||||
echo "-$${rpm#$</}"; \
|
||||
done < .repo-index; \
|
||||
flock $</repo.lock rm -f "$${rpms[@]}"; \
|
||||
rm .repo-index; \
|
||||
$(MAKE) localrepocreate; \
|
||||
if [ -z "$$NO_CREATEREPO" ]; then \
|
||||
$(MAKE) -s localrepocreate; \
|
||||
fi; \
|
||||
fi
|
||||
|
||||
#help repoenable: Enables the local RPM repository for use with Yum/DNF and
|
||||
#help Mock. If this repository does not yet exist, it is created.
|
||||
repoenable: $(TOPLVL)/repo ; $(call localrepoenable,${PM_CONF},${MOCK_CONF})
|
||||
repoenable: localrepoenable ;
|
||||
|
||||
#help repodisable: Disables the local RPM repository.
|
||||
repodisable: localrepodisable ;
|
||||
|
||||
+79
-17
@@ -62,33 +62,95 @@ define remotepkgname
|
||||
$(if $(USE_PACKAGE_MAPPING),$$(awk -v P="$(1)" '$$1 == P { res=$$2 } END { print res ? res : P }' $(TOPLVL)/projects/common/pkg-mapping),$(1))
|
||||
endef
|
||||
|
||||
# Clone repo from the configured gitolite instance, but only if the repo exists
|
||||
# on that instance and matches the pattern "packages/..*".
|
||||
define try-clone-gitolite
|
||||
rpkg=$(call remotepkgname,$(1)); \
|
||||
if ssh $(GITOLITE_BASE_URL) info "packages/$$rpkg" | grep --quiet "packages/$$rpkg$$"; then \
|
||||
git clone $(PKG_BASE_URL)/$$rpkg packages/$(1); \
|
||||
cd packages/$(1); \
|
||||
$(call gitoliteurl,packages/$(1)); \
|
||||
$(call subjectprefix,$(1)); \
|
||||
fi
|
||||
endef
|
||||
|
||||
# Clone repo from the configured package repo hosting location, as defined by
|
||||
# the PKG_BASE_URL variable, but only if the repo exists.
|
||||
define try-clone-other
|
||||
rpkg=$(call remotepkgname,$(1)); \
|
||||
if git ls-remote $(PKG_BASE_URL)/$$rpkg &> /dev/null; then \
|
||||
git clone $(PKG_BASE_URL)/$$rpkg packages/$(1); \
|
||||
cd packages/$(1); \
|
||||
$(call subjectprefix,$(1)); \
|
||||
fi
|
||||
endef
|
||||
|
||||
# First, try running `make clone_PKG`, where PKG is the first argument. If that
|
||||
# fails, proceed with fallback cloning strategies.
|
||||
define clone-if-available
|
||||
$(MAKE) clone_$(1) || { \
|
||||
$(if $(GITOLITE_BASE_URL),$(call try-clone-gitolite,$(1)),$(call try-clone-other,$(1))); \
|
||||
}
|
||||
endef
|
||||
|
||||
$(TOPLVL)/repo:
|
||||
@echo "Creating local RPM repository $(TOPLVL)/repo"
|
||||
mkdir $(TOPLVL)/repo
|
||||
|
||||
# Enables the local RPM repo by installing package manager and Mock configs.
|
||||
# First argument is the path to the package manager config, and the second
|
||||
# argument is the path to the mock config. Each of these config files is
|
||||
# augmented for local repo support.
|
||||
define localrepoenable
|
||||
@cp $(1) $(TOPLVL)/repo/yum.conf
|
||||
@printf "\n\n[local]\nname=Local\nfailovermethod=priority\nenabled=1\ngpgcheck=0\npriority=1\n" >> $(TOPLVL)/repo/yum.conf
|
||||
@printf "baseurl=file://$$(realpath $(TOPLVL))/repo/\n\n" >> $(TOPLVL)/repo/yum.conf
|
||||
@cp $(2) $(TOPLVL)/repo/clear.cfg
|
||||
@printf "\n\n[localrepo]\nname=Local repo\nfailovermethod=priority\nenabled=1\ngpgcheck=0\npriority=1\n" >> $(TOPLVL)/repo/clear.cfg
|
||||
@printf "baseurl=file://$$(realpath $(TOPLVL))/repo/\n\n" >> $(TOPLVL)/repo/clear.cfg
|
||||
@sed -i '/^"""/d; $$a"""' $(TOPLVL)/repo/clear.cfg
|
||||
endef
|
||||
localrepoenable: $(TOPLVL)/repo
|
||||
@if grep -qx '\[localrepo\]' ${PM_CONF}; then \
|
||||
echo "[ERROR] ${PM_CONF} contains section named [localrepo]."; \
|
||||
echo "[ERROR] Remove that section and try again."; \
|
||||
exit 1; \
|
||||
fi >&2
|
||||
@if grep -qx '\[localrepo\]' ${MOCK_CONF}; then \
|
||||
echo "[ERROR] ${MOCK_CONF} contains section named [localrepo]."; \
|
||||
echo "[ERROR] Remove that section and try again."; \
|
||||
exit 1; \
|
||||
fi >&2
|
||||
@last="$$(tail -n 1 ${MOCK_CONF})"; \
|
||||
if [[ "$$last" != "\"\"\"" ]]; then \
|
||||
echo "[ERROR] Last line of ${MOCK_CONF} is malformed; expected: \"\"\"; actual: $$last"; \
|
||||
echo "[ERROR] Fix that line and try again."; \
|
||||
exit 1; \
|
||||
fi >&2
|
||||
@pm_new=$$(mktemp -p $< yum.conf.XXXXXXX); \
|
||||
pm_orig=$</yum.conf; \
|
||||
mock_new=$$(mktemp -p $< clear.cfg.XXXXXXX); \
|
||||
mock_orig=$</clear.cfg; \
|
||||
cp ${PM_CONF} $$pm_new; \
|
||||
printf "\n\n[localrepo]\nname=localrepo\nfailovermethod=priority\nenabled=1\ngpgcheck=0\npriority=1\n" >> $$pm_new; \
|
||||
printf "baseurl=file://$$(realpath $<)/\n\n" >> $$pm_new; \
|
||||
if ! cmp -s $$pm_new $$pm_orig; then \
|
||||
flock $</repo.lock mv $$pm_new $$pm_orig; \
|
||||
fi; \
|
||||
rm -f $$pm_new; \
|
||||
cp ${MOCK_CONF} $$mock_new; \
|
||||
sed -i '$$d' $$mock_new; \
|
||||
printf "\n\n[localrepo]\nname=localrepo\nfailovermethod=priority\nenabled=1\ngpgcheck=0\npriority=1\n" >> $$mock_new; \
|
||||
printf "baseurl=file://$$(realpath $<)/\n\n" >> $$mock_new; \
|
||||
sed -i '$$a"""' $$mock_new; \
|
||||
if ! cmp -s $$mock_new $$mock_orig; then \
|
||||
flock $</repo.lock mv $$mock_new $$mock_orig; \
|
||||
fi; \
|
||||
rm -f $$mock_new
|
||||
|
||||
# Disables the local RPM repo by removing the installed package manager and
|
||||
# Mock configuration files.
|
||||
localrepodisable:
|
||||
@rm -f $(TOPLVL)/repo/yum.conf
|
||||
@rm -f $(TOPLVL)/repo/clear.cfg
|
||||
localrepodisable: $(TOPLVL)/repo
|
||||
flock $</repo.lock rm -f $</yum.conf $</clear.cfg
|
||||
|
||||
# Runs createrepo_c (or createrepo) for the local RPM repo
|
||||
localrepocreate:
|
||||
( cd $(TOPLVL)/repo ; if type createrepo_c 1>/dev/null 2>&1; then createrepo_c .; else createrepo .; fi );
|
||||
# Runs createrepo_c for the local RPM repo
|
||||
localrepocreate: $(TOPLVL)/repo
|
||||
cd $< && flock repo.lock createrepo_c .
|
||||
|
||||
# Remove all RPMs from the local RPM repo
|
||||
localrepoclean:
|
||||
@find $(TOPLVL)/repo -maxdepth 1 -name '*.rpm' -delete
|
||||
localrepoclean: $(TOPLVL)/repo
|
||||
flock $</repo.lock find $< -maxdepth 1 -name '*.rpm' -delete
|
||||
|
||||
# Summarizes the local RPM repo status
|
||||
localrepostatus:
|
||||
|
||||
+11
-7
@@ -166,6 +166,15 @@ diff: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
(cd $$p ; git status | grep -q 'nothing to commit, working [^ ]* clean' || (echo "Uncommitted changes in: $$p"; git diff |diffstat -p1)) ;\
|
||||
done
|
||||
|
||||
#help log: Run git log origin/master..HEAD for all package repos, thus
|
||||
#help displaying any committed but unpushed changes.
|
||||
log: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
@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 \
|
||||
echo $$p ; git --no-pager log --pretty="format:%s" origin/master..HEAD ; echo ; echo;\
|
||||
fi ; ) \
|
||||
done
|
||||
|
||||
#help versions: Displays the version of each package in the ./packages tree.
|
||||
versions: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
@for p in $(addprefix packages/,$(PKGS_LOCAL)); do \
|
||||
@@ -196,7 +205,7 @@ autospecnew: preautospecnew-checks localreponotice
|
||||
echo "Please specify NAME and URL. The ARCHIVES variable is optional."; \
|
||||
exit 1; \
|
||||
fi
|
||||
-$(MAKE) clone_$(NAME)
|
||||
$(call clone-if-available,$(NAME))
|
||||
@if [ ! -d $(TOPLVL)/packages/$(NAME)/.git ]; then \
|
||||
echo "no remote repository found, creating new package repository and running autospec"; \
|
||||
mkdir -p $(TOPLVL)/packages/$(NAME); \
|
||||
@@ -281,14 +290,9 @@ autospecnewgo: preautospecnew-checks localreponotice
|
||||
exit 1; \
|
||||
fi
|
||||
|
||||
$(TOPLVL)/repo:
|
||||
@echo "Creating local RPM repository $(TOPLVL)/repo"
|
||||
mkdir $(TOPLVL)/repo
|
||||
$(MAKE) localrepocreate
|
||||
|
||||
#help repoenable: Enables the local RPM repository for use with Yum/DNF and
|
||||
#help Mock. If this repository does not yet exist, it is created.
|
||||
repoenable: $(TOPLVL)/repo ; $(call localrepoenable,${PM_CONF},${MOCK_CONF})
|
||||
repoenable: localrepoenable ;
|
||||
|
||||
#help repodisable: Disables the local RPM repository.
|
||||
repodisable: localrepodisable ;
|
||||
|
||||
@@ -34,10 +34,12 @@ Judy
|
||||
Keras
|
||||
Keras_Applications
|
||||
Keras_Preprocessing
|
||||
LPCNet
|
||||
LS_COLORS
|
||||
LVM2
|
||||
LibRaw
|
||||
LibVNCServer
|
||||
LibreCAD
|
||||
Linux-PAM
|
||||
LuaJIT
|
||||
LyX
|
||||
@@ -78,6 +80,7 @@ PyWavelets
|
||||
PyYAML
|
||||
Pygments
|
||||
Pyro4
|
||||
QDarkStyle
|
||||
QGIS
|
||||
Qogir-theme
|
||||
QtAwesome
|
||||
@@ -119,6 +122,7 @@ R-DoseFinding
|
||||
R-Ecdat
|
||||
R-Ecfun
|
||||
R-EnvStats
|
||||
R-Exact
|
||||
R-FMStable
|
||||
R-FNN
|
||||
R-Fahrmeir
|
||||
@@ -126,6 +130,7 @@ R-Formula
|
||||
R-GGally
|
||||
R-GPArotation
|
||||
R-GeneralizedHyperbolic
|
||||
R-GetoptLong
|
||||
R-GlobalOptions
|
||||
R-Guerry
|
||||
R-HistData
|
||||
@@ -161,7 +166,6 @@ R-R.cache
|
||||
R-R.methodsS3
|
||||
R-R.oo
|
||||
R-R.utils
|
||||
R-R2Cuba
|
||||
R-R2HTML
|
||||
R-R2WinBUGS
|
||||
R-R2jags
|
||||
@@ -265,6 +269,7 @@ R-bootstrap
|
||||
R-brew
|
||||
R-brglm
|
||||
R-bridgesampling
|
||||
R-brio
|
||||
R-brms
|
||||
R-broom
|
||||
R-bvls
|
||||
@@ -299,6 +304,7 @@ R-combinat
|
||||
R-commonmark
|
||||
R-compositions
|
||||
R-config
|
||||
R-conquer
|
||||
R-contfrac
|
||||
R-conting
|
||||
R-corpcor
|
||||
@@ -343,6 +349,7 @@ R-doParallel
|
||||
R-doRNG
|
||||
R-doSNOW
|
||||
R-dotCall64
|
||||
R-downlit
|
||||
R-downloader
|
||||
R-dplyr
|
||||
R-drc
|
||||
@@ -492,6 +499,7 @@ R-ineq
|
||||
R-influenceR
|
||||
R-ini
|
||||
R-inline
|
||||
R-insight
|
||||
R-inum
|
||||
R-invgamma
|
||||
R-ipred
|
||||
@@ -587,6 +595,7 @@ R-mlmRev
|
||||
R-mnormt
|
||||
R-mockery
|
||||
R-mockr
|
||||
R-modeldata
|
||||
R-modelr
|
||||
R-modeltools
|
||||
R-modest
|
||||
@@ -746,6 +755,7 @@ R-rhub
|
||||
R-rio
|
||||
R-ritis
|
||||
R-rjags
|
||||
R-rjson
|
||||
R-rjstat
|
||||
R-rlang
|
||||
R-rmarkdown
|
||||
@@ -873,9 +883,9 @@ R-tinytest
|
||||
R-tinytex
|
||||
R-tis
|
||||
R-tm
|
||||
R-tmvnsim
|
||||
R-toOrdinal
|
||||
R-topicmodels
|
||||
R-treatSens
|
||||
R-tree
|
||||
R-triebeard
|
||||
R-trimcluster
|
||||
@@ -1036,6 +1046,7 @@ alembic
|
||||
alsa-firmware
|
||||
alsa-lib
|
||||
alsa-plugins
|
||||
alsa-tools
|
||||
alsa-ucm-conf
|
||||
alsa-utils
|
||||
amazon-efs-utils
|
||||
@@ -1044,12 +1055,14 @@ amtk
|
||||
analitza
|
||||
aniso8601
|
||||
ansible
|
||||
antlr4-python3-runtime
|
||||
anyjson
|
||||
apache-ant
|
||||
apache-libcloud
|
||||
apipkg
|
||||
appdirs
|
||||
applaunchservices
|
||||
applicationinsights
|
||||
appstream
|
||||
appstream-glib
|
||||
apr
|
||||
@@ -1059,7 +1072,7 @@ arandr
|
||||
arc-theme
|
||||
argcomplete
|
||||
argon2
|
||||
argon2_cffi
|
||||
argon2-cffi
|
||||
aria2
|
||||
ark
|
||||
armadillo
|
||||
@@ -1114,11 +1127,95 @@ avahi
|
||||
awesome-wm
|
||||
awscli
|
||||
axel
|
||||
azure-batch
|
||||
azure-cli
|
||||
azure-cli-command-modules-nspkg
|
||||
azure-cli-core
|
||||
azure-cli-nspkg
|
||||
azure-cli-telemetry
|
||||
azure-common
|
||||
azure-configs
|
||||
azure-core
|
||||
azure-cosmos
|
||||
azure-datalake-store
|
||||
azure-functions-devops-build
|
||||
azure-graphrbac
|
||||
azure-identity
|
||||
azure-iot-sdk
|
||||
azure-keyvault
|
||||
azure-keyvault-certificates
|
||||
azure-keyvault-keys
|
||||
azure-keyvault-secrets
|
||||
azure-loganalytics
|
||||
azure-mgmt-advisor
|
||||
azure-mgmt-apimanagement
|
||||
azure-mgmt-appconfiguration
|
||||
azure-mgmt-applicationinsights
|
||||
azure-mgmt-authorization
|
||||
azure-mgmt-batch
|
||||
azure-mgmt-batchai
|
||||
azure-mgmt-billing
|
||||
azure-mgmt-botservice
|
||||
azure-mgmt-cdn
|
||||
azure-mgmt-cognitiveservices
|
||||
azure-mgmt-compute
|
||||
azure-mgmt-consumption
|
||||
azure-mgmt-containerinstance
|
||||
azure-mgmt-containerregistry
|
||||
azure-mgmt-containerservice
|
||||
azure-mgmt-core
|
||||
azure-mgmt-cosmosdb
|
||||
azure-mgmt-datalake-analytics
|
||||
azure-mgmt-datalake-nspkg
|
||||
azure-mgmt-datalake-store
|
||||
azure-mgmt-datamigration
|
||||
azure-mgmt-deploymentmanager
|
||||
azure-mgmt-devtestlabs
|
||||
azure-mgmt-dns
|
||||
azure-mgmt-eventgrid
|
||||
azure-mgmt-eventhub
|
||||
azure-mgmt-hdinsight
|
||||
azure-mgmt-imagebuilder
|
||||
azure-mgmt-iotcentral
|
||||
azure-mgmt-iothub
|
||||
azure-mgmt-iothubprovisioningservices
|
||||
azure-mgmt-keyvault
|
||||
azure-mgmt-kusto
|
||||
azure-mgmt-loganalytics
|
||||
azure-mgmt-managedservices
|
||||
azure-mgmt-managementgroups
|
||||
azure-mgmt-maps
|
||||
azure-mgmt-marketplaceordering
|
||||
azure-mgmt-media
|
||||
azure-mgmt-monitor
|
||||
azure-mgmt-msi
|
||||
azure-mgmt-netapp
|
||||
azure-mgmt-network
|
||||
azure-mgmt-nspkg
|
||||
azure-mgmt-policyinsights
|
||||
azure-mgmt-privatedns
|
||||
azure-mgmt-rdbms
|
||||
azure-mgmt-recoveryservices
|
||||
azure-mgmt-recoveryservicesbackup
|
||||
azure-mgmt-redhatopenshift
|
||||
azure-mgmt-redis
|
||||
azure-mgmt-relay
|
||||
azure-mgmt-reservations
|
||||
azure-mgmt-resource
|
||||
azure-mgmt-search
|
||||
azure-mgmt-security
|
||||
azure-mgmt-servicebus
|
||||
azure-mgmt-servicefabric
|
||||
azure-mgmt-signalr
|
||||
azure-mgmt-sql
|
||||
azure-mgmt-sqlvirtualmachine
|
||||
azure-mgmt-storage
|
||||
azure-mgmt-trafficmanager
|
||||
azure-mgmt-web
|
||||
azure-multiapi-storage
|
||||
azure-nspkg
|
||||
azure-servicebus
|
||||
azure-storage-blob
|
||||
azure-storage-common
|
||||
babeltrace
|
||||
babl
|
||||
@@ -1154,6 +1251,7 @@ bleach
|
||||
blender
|
||||
blinken
|
||||
blinker
|
||||
blis
|
||||
blktrace
|
||||
blockdiag
|
||||
bluedevil
|
||||
@@ -1203,7 +1301,6 @@ buildreq-nginx
|
||||
buildreq-php
|
||||
buildreq-qmake
|
||||
buildreq-scons
|
||||
bundle-chroot-builder
|
||||
bwidget
|
||||
byobu
|
||||
bz2file
|
||||
@@ -1347,6 +1444,7 @@ comedilib
|
||||
comfortaa-fonts
|
||||
commonmark
|
||||
compat-SDL2-soname1
|
||||
compat-boost-soname1.72.0
|
||||
compat-cryptsetup-soname4
|
||||
compat-curl-gnutls-soname4
|
||||
compat-double-conversion-soname1
|
||||
@@ -1354,42 +1452,39 @@ compat-efivar-soname0
|
||||
compat-enchant-soname1
|
||||
compat-fuse-soname2
|
||||
compat-gdal-soname20
|
||||
compat-gdbm-soname4
|
||||
compat-glew-soname1
|
||||
compat-gmime-26
|
||||
compat-gspell-soname1
|
||||
compat-gtksourceview-soname3
|
||||
compat-guile-soname20
|
||||
compat-hunspell-soname1.6
|
||||
compat-hwloc-soname5
|
||||
compat-hyperscan-soname4
|
||||
compat-ilmbase-soname23
|
||||
compat-icu4c-soname64
|
||||
compat-intel-gmmlib-soname1
|
||||
compat-ipset-soname10
|
||||
compat-iptables-soname0.1.0
|
||||
compat-ldc-soname90
|
||||
compat-libevent-soname6
|
||||
compat-libgit2-soname27
|
||||
compat-libhandy-0.0
|
||||
compat-libical-soname2
|
||||
compat-libidn-soname11
|
||||
compat-libnftnl-soname7
|
||||
compat-libpng-soname12
|
||||
compat-libraw-soname19
|
||||
compat-libva-soname1
|
||||
compat-libvpx-soname5
|
||||
compat-libwebp-soname6
|
||||
compat-llvm-soname5
|
||||
compat-llvm-soname6
|
||||
compat-llvm-soname7
|
||||
compat-mariadb-soname18
|
||||
compat-mpfr-soname4
|
||||
compat-nettle-soname6
|
||||
compat-opencv-soname41
|
||||
compat-nettle-soname7
|
||||
compat-opencv-soname42
|
||||
compat-proj-soname13
|
||||
compat-protobuf-soname14
|
||||
compat-protobuf-soname15
|
||||
compat-protobuf-soname21
|
||||
compat-protobuf-soname22
|
||||
compat-python36
|
||||
compat-re2-soname7
|
||||
compat-readline
|
||||
compat-readline-soname5
|
||||
compat-readline-soname7
|
||||
compat-tracker-soname2.0
|
||||
component
|
||||
compute-image-packages
|
||||
conda
|
||||
@@ -1421,7 +1516,6 @@ cpuloadgen
|
||||
cracklib
|
||||
crcmod
|
||||
createrepo_c
|
||||
cri-containerd
|
||||
cri-o
|
||||
cri-tools
|
||||
cronie
|
||||
@@ -1437,6 +1531,7 @@ cups-filters
|
||||
cups-pk-helper
|
||||
curl
|
||||
cursive
|
||||
custom_inherit
|
||||
cve-bin-tool
|
||||
cxxfilt
|
||||
cycler
|
||||
@@ -1545,7 +1640,6 @@ dunst
|
||||
duperemove
|
||||
dvisvgm
|
||||
dwarves
|
||||
dxvk
|
||||
dyskctl
|
||||
e2fsprogs
|
||||
earlyapp
|
||||
@@ -1577,6 +1671,7 @@ envs
|
||||
eog
|
||||
eog-plugins
|
||||
epm
|
||||
epson-inkjet-printer-escpr
|
||||
eternalegypt
|
||||
ethtool
|
||||
etr
|
||||
@@ -1600,6 +1695,7 @@ extras
|
||||
f2fs-tools
|
||||
faas-cli
|
||||
faba-icon-theme
|
||||
fabric
|
||||
fakeroot
|
||||
fangfrisch
|
||||
fann
|
||||
@@ -1640,6 +1736,7 @@ flake8-import-order
|
||||
flake8-polyfill
|
||||
flare-engine
|
||||
flare-game
|
||||
flask-restx
|
||||
flatpak
|
||||
flatpak-builder
|
||||
flatten_json
|
||||
@@ -1668,6 +1765,7 @@ freezegun
|
||||
fribidi
|
||||
fritzing-app
|
||||
fs
|
||||
fsearch
|
||||
funcparserlib
|
||||
funcsigs
|
||||
fuse
|
||||
@@ -1685,6 +1783,7 @@ gcab
|
||||
gcc
|
||||
gcc7
|
||||
gcc8
|
||||
gcc9
|
||||
gcompris-qt
|
||||
gcr
|
||||
gcs-oauth2-boto-plugin
|
||||
@@ -1708,6 +1807,7 @@ geocode-glib
|
||||
geos
|
||||
gettext
|
||||
gevent
|
||||
geventhttpclient-wheels
|
||||
gexiv2
|
||||
gfbgraph
|
||||
gflags
|
||||
@@ -1743,6 +1843,7 @@ glusterfs
|
||||
gmic
|
||||
gmime
|
||||
gmp
|
||||
gmpy2
|
||||
gmqtt
|
||||
gmsh
|
||||
gnocchiclient
|
||||
@@ -1761,6 +1862,7 @@ gnome-common
|
||||
gnome-contacts
|
||||
gnome-control-center
|
||||
gnome-desktop
|
||||
gnome-desktop-testing
|
||||
gnome-disk-utility
|
||||
gnome-flashback
|
||||
gnome-font-viewer
|
||||
@@ -1807,12 +1909,14 @@ gobject-introspection
|
||||
golang-github-cpuguy83-go-md2man
|
||||
gom
|
||||
goocanvas
|
||||
google-api-core
|
||||
google-api-python-client
|
||||
google-apitools
|
||||
google-auth
|
||||
google-auth-httplib2
|
||||
google-pasta
|
||||
google-reauth
|
||||
googleapis-common-protos
|
||||
googletest
|
||||
gparted
|
||||
gpaste
|
||||
@@ -1858,7 +1962,6 @@ gtk-doc
|
||||
gtk-vnc
|
||||
gtk-xfce-engine
|
||||
gtk3
|
||||
gtkglext
|
||||
gtkmm2
|
||||
gtkmm3
|
||||
gtksourceview
|
||||
@@ -1883,10 +1986,10 @@ haveged
|
||||
hdf5
|
||||
hdmedians
|
||||
hdparm
|
||||
heat
|
||||
helloworld
|
||||
helm
|
||||
help2man
|
||||
helpdev
|
||||
hexchat
|
||||
hexedit
|
||||
hgtools
|
||||
@@ -1913,6 +2016,7 @@ hyperscan
|
||||
hyperstart
|
||||
hyphen
|
||||
hypothesis
|
||||
hypre
|
||||
i2c-tools
|
||||
i3
|
||||
i3blocks
|
||||
@@ -1950,6 +2054,7 @@ importlib_metadata
|
||||
indent
|
||||
inflection
|
||||
influxdb
|
||||
iniconfig
|
||||
iniparse
|
||||
init-rdahead
|
||||
inkscape
|
||||
@@ -1965,12 +2070,12 @@ intel-media-driver
|
||||
intelhex
|
||||
intervaltree
|
||||
intltool
|
||||
invoke
|
||||
ioc-cbc-tools
|
||||
ioping
|
||||
ioport
|
||||
iotop
|
||||
ipaddr
|
||||
ipaddress
|
||||
ipcalc
|
||||
ipdb
|
||||
ipdbplugin
|
||||
@@ -1981,7 +2086,7 @@ ipmitool
|
||||
iproute2
|
||||
ipset
|
||||
iptables
|
||||
iptraf
|
||||
iptraf-ng
|
||||
iptstate
|
||||
iputils
|
||||
ipvsadm
|
||||
@@ -2000,6 +2105,7 @@ isa-l
|
||||
iso-codes
|
||||
iso8601
|
||||
isodate
|
||||
isomd5sum
|
||||
isort
|
||||
ister
|
||||
isync
|
||||
@@ -2015,6 +2121,7 @@ jaraco.collections
|
||||
jaraco.functools
|
||||
jaraco.text
|
||||
jarn.viewdoc
|
||||
javaproperties
|
||||
jdcal
|
||||
jedi
|
||||
jedi-vim
|
||||
@@ -2026,6 +2133,7 @@ joe
|
||||
josepy
|
||||
jpegoptim
|
||||
jq
|
||||
jsmin
|
||||
json-c
|
||||
json-glib
|
||||
json5
|
||||
@@ -2083,6 +2191,7 @@ kcachegrind
|
||||
kcalc
|
||||
kcalendarcore
|
||||
kcalutils
|
||||
kcc
|
||||
kcharselect
|
||||
kcmutils
|
||||
kcodecs
|
||||
@@ -2125,13 +2234,13 @@ kdiamond
|
||||
kdiff3
|
||||
kdnssd
|
||||
kdoctools
|
||||
kdsoap
|
||||
keditbookmarks
|
||||
keepalived
|
||||
keepassxc
|
||||
kemoticons
|
||||
kerberos
|
||||
kernel-config
|
||||
kernel-config-checker
|
||||
kernel-install
|
||||
kexec-tools
|
||||
keychain
|
||||
@@ -2205,6 +2314,7 @@ kmod
|
||||
kmousetool
|
||||
kmouth
|
||||
kmplot
|
||||
knack
|
||||
knavalbattle
|
||||
knetwalk
|
||||
knewstuff
|
||||
@@ -2249,7 +2359,6 @@ kshisen
|
||||
ksirk
|
||||
ksmtp
|
||||
ksnakeduel
|
||||
ksonnet
|
||||
kspaceduel
|
||||
ksquares
|
||||
ksshaskpass
|
||||
@@ -2272,6 +2381,7 @@ kwallet-pam
|
||||
kwalletmanager
|
||||
kwayland
|
||||
kwayland-integration
|
||||
kwayland-server
|
||||
kwidgetsaddons
|
||||
kwin
|
||||
kwindowsystem
|
||||
@@ -2354,6 +2464,7 @@ libcomps
|
||||
libconfig
|
||||
libcroco
|
||||
libcryptui
|
||||
libcxx
|
||||
libdaemon
|
||||
libdatrie
|
||||
libdazzle
|
||||
@@ -2382,6 +2493,7 @@ libfakekey
|
||||
libfastjson
|
||||
libffi
|
||||
libffmpeg-stub
|
||||
libflame
|
||||
libfm
|
||||
libfm-qt
|
||||
libfontenc
|
||||
@@ -2471,6 +2583,7 @@ libnfnetlink
|
||||
libnftnl
|
||||
libnice
|
||||
libnl
|
||||
libnma
|
||||
libnotify
|
||||
libnova
|
||||
libnumbertext
|
||||
@@ -2603,7 +2716,6 @@ linux-hyperv-lts
|
||||
linux-iot-lts2017-preempt-rt
|
||||
linux-iot-lts2018
|
||||
linux-iot-lts2018-preempt-rt
|
||||
linux-iot-lts2019
|
||||
linux-kata
|
||||
linux-kvm
|
||||
linux-libc-headers
|
||||
@@ -2621,10 +2733,11 @@ lldb
|
||||
llfuse
|
||||
llvm
|
||||
llvm8
|
||||
llvmlite
|
||||
llvm9
|
||||
lm-sensors
|
||||
lmdb
|
||||
locket
|
||||
lockfile
|
||||
locustio
|
||||
log4cpp
|
||||
logilab-common
|
||||
@@ -2722,6 +2835,7 @@ mingw-gcc
|
||||
minicom
|
||||
minimodem
|
||||
mistune
|
||||
mitogen
|
||||
mixer-tools
|
||||
mkfontdir
|
||||
mkfontscale
|
||||
@@ -2735,6 +2849,8 @@ mock
|
||||
mod_perl
|
||||
mod_wsgi
|
||||
modemmanager-qt
|
||||
modsecurity
|
||||
modsecurity-nginx
|
||||
modules
|
||||
moka-icon-theme
|
||||
mokutil
|
||||
@@ -2749,10 +2865,8 @@ motd-update
|
||||
motif
|
||||
mox
|
||||
mox3
|
||||
mozjs
|
||||
mozjs52
|
||||
mozjs60
|
||||
mozjs68
|
||||
mozjs78
|
||||
mpc
|
||||
mpfr
|
||||
mpg123
|
||||
@@ -2761,6 +2875,8 @@ mpir
|
||||
mpmath
|
||||
mpv
|
||||
mraa
|
||||
msal
|
||||
msal-extensions
|
||||
msgpack
|
||||
msgpack-c
|
||||
msm
|
||||
@@ -2852,6 +2968,8 @@ nlopt
|
||||
nltk
|
||||
nmap
|
||||
nnn
|
||||
nocasedict
|
||||
nocaselist
|
||||
nodejs
|
||||
nose
|
||||
nose-cov
|
||||
@@ -2880,7 +2998,6 @@ ntp
|
||||
ntplib
|
||||
numactl
|
||||
numatop
|
||||
numba
|
||||
numlockx
|
||||
numpy
|
||||
numpy-stl
|
||||
@@ -2922,6 +3039,7 @@ openjade
|
||||
openjdk
|
||||
openjdk11
|
||||
openjdk13
|
||||
openjpeg
|
||||
openldap
|
||||
openmpi
|
||||
openscad
|
||||
@@ -3004,7 +3122,6 @@ pandoc
|
||||
pandocfilters
|
||||
pango
|
||||
pangomm
|
||||
pangox-compat
|
||||
paper-icon-theme
|
||||
papi
|
||||
papirus-icon-theme
|
||||
@@ -3060,6 +3177,7 @@ perl-AnyEvent-CacheDNS
|
||||
perl-Apache-Htpasswd
|
||||
perl-Apache-LogFormat-Compiler
|
||||
perl-Apache-Session
|
||||
perl-App-MigrateModules
|
||||
perl-App-Nopaste
|
||||
perl-App-cpanminus
|
||||
perl-App-perlbrew
|
||||
@@ -3151,6 +3269,7 @@ perl-Clone-PP
|
||||
perl-Compress-Bzip2
|
||||
perl-Compress-Raw-Lzma
|
||||
perl-Config-Any
|
||||
perl-Config-AutoConf
|
||||
perl-Config-General
|
||||
perl-Config-Grammar
|
||||
perl-Config-INI
|
||||
@@ -3339,6 +3458,7 @@ perl-Geo-IP
|
||||
perl-Geo-IPfree
|
||||
perl-Getopt-Euclid
|
||||
perl-Getopt-Long-Descriptive
|
||||
perl-Getopt-Long-Modern
|
||||
perl-Getopt-Tabular
|
||||
perl-Git-Version-Compare
|
||||
perl-Glib
|
||||
@@ -3372,6 +3492,7 @@ perl-HTTP-Negotiate
|
||||
perl-HTTP-Parser-XS
|
||||
perl-HTTP-Request-AsCGI
|
||||
perl-HTTP-Server-Simple
|
||||
perl-HTTP-Tinyish
|
||||
perl-Hash-Flatten
|
||||
perl-Hash-Merge
|
||||
perl-Hash-MoreUtils
|
||||
@@ -3479,6 +3600,7 @@ perl-Math-Utils
|
||||
perl-Math-Vec
|
||||
perl-Memoize-ExpireLRU
|
||||
perl-Meta-Builder
|
||||
perl-Metrics-Any
|
||||
perl-Minion
|
||||
perl-Mixin-Linewise
|
||||
perl-Mock-Config
|
||||
@@ -3618,6 +3740,7 @@ perl-Router-Simple
|
||||
perl-SGMLS
|
||||
perl-SMTP-Server
|
||||
perl-SQL-Abstract
|
||||
perl-SQL-Abstract-Classic
|
||||
perl-SQL-SplitStatement
|
||||
perl-SQL-Tokenizer
|
||||
perl-SQL-Translator
|
||||
@@ -3706,6 +3829,8 @@ perl-Test-LectroTest
|
||||
perl-Test-LongString
|
||||
perl-Test-Manifest
|
||||
perl-Test-Memory-Cycle
|
||||
perl-Test-MemoryGrowth
|
||||
perl-Test-Metrics-Any
|
||||
perl-Test-MockModule
|
||||
perl-Test-MockTime
|
||||
perl-Test-More-UTF8
|
||||
@@ -3737,6 +3862,7 @@ perl-Test-Warnings
|
||||
perl-Test-Without-Module
|
||||
perl-Test-YAML
|
||||
perl-Test-utf8
|
||||
perl-Test2-Plugin-NoWarnings
|
||||
perl-Test2-Suite
|
||||
perl-Text-Autoformat
|
||||
perl-Text-Brew
|
||||
@@ -3846,6 +3972,7 @@ perl-local-lib
|
||||
perl-multidimensional
|
||||
perl-namespace-autoclean
|
||||
perl-namespace-clean
|
||||
perl-pmtools
|
||||
perl-prefork
|
||||
perl-strictures
|
||||
persistent
|
||||
@@ -3955,7 +4082,9 @@ plasma-integration
|
||||
plasma-nm
|
||||
plasma-pa
|
||||
plasma-sdk
|
||||
plasma-thunderbolt
|
||||
plasma-vault
|
||||
plasma-wayland-protocols
|
||||
plasma-workspace
|
||||
plasma-workspace-wallpapers
|
||||
plata-theme
|
||||
@@ -3974,6 +4103,8 @@ polkit-qt
|
||||
poppler
|
||||
poppler-data-clr-rename
|
||||
popt
|
||||
port-for
|
||||
portalocker
|
||||
portaudio
|
||||
portend
|
||||
positional
|
||||
@@ -3987,6 +4118,7 @@ potrace
|
||||
povray
|
||||
powerdevil
|
||||
powerline-fonts
|
||||
powerstat
|
||||
powertop
|
||||
poxml
|
||||
ppp
|
||||
@@ -4040,7 +4172,7 @@ pycairo
|
||||
pycodestyle
|
||||
pycosat
|
||||
pycparser
|
||||
pycrypto
|
||||
pycryptodomex
|
||||
pycurl
|
||||
pydocstyle
|
||||
pydot
|
||||
@@ -4092,6 +4224,7 @@ pytest-repeat
|
||||
pytest-rerunfailures
|
||||
pytest-runner
|
||||
pytest-sugar
|
||||
pytest-tap
|
||||
pytest-timeout
|
||||
pytest-xdist
|
||||
python
|
||||
@@ -4119,6 +4252,7 @@ python-kconfiglib
|
||||
python-keystoneclient
|
||||
python-language-server
|
||||
python-ldap
|
||||
python-libsass
|
||||
python-magic
|
||||
python-magnumclient
|
||||
python-manilaclient
|
||||
@@ -4144,7 +4278,6 @@ python-subunit
|
||||
python-swiftclient
|
||||
python-systemd
|
||||
python-tabulate
|
||||
python-tappy
|
||||
python-troveclient
|
||||
python-urwid
|
||||
python-utils
|
||||
@@ -4176,6 +4309,7 @@ qpdf
|
||||
qqc2-desktop-style
|
||||
qrencode
|
||||
qscintilla
|
||||
qsstv
|
||||
qt-creator
|
||||
qt3d
|
||||
qt5ct
|
||||
@@ -4197,6 +4331,7 @@ qtnetworkauth
|
||||
qtquickcontrols
|
||||
qtquickcontrols2
|
||||
qtremoteobjects
|
||||
qtsass
|
||||
qtscript
|
||||
qtscxml
|
||||
qtsensors
|
||||
@@ -4242,6 +4377,7 @@ redis2-nginx-module
|
||||
redland
|
||||
redshift
|
||||
redsocks
|
||||
regex
|
||||
renderdoc
|
||||
reno
|
||||
reportlab
|
||||
@@ -4308,7 +4444,6 @@ sassc
|
||||
satyr
|
||||
sbc
|
||||
sbsigntools
|
||||
scala
|
||||
scdoc
|
||||
scene-alembic
|
||||
scikit-build
|
||||
@@ -4316,7 +4451,9 @@ scikit-image
|
||||
scikit-learn
|
||||
scipy
|
||||
scons
|
||||
scour
|
||||
scowl
|
||||
scp
|
||||
screen
|
||||
scripttest
|
||||
scrypt
|
||||
@@ -4419,6 +4556,7 @@ squashfs-tools
|
||||
squid
|
||||
sshfs
|
||||
sshpass
|
||||
sshtunnel
|
||||
ssocr
|
||||
sssd
|
||||
ssw
|
||||
@@ -4460,7 +4598,6 @@ sweeper
|
||||
swift
|
||||
swig
|
||||
swupd-client
|
||||
swupd-client-pre-release
|
||||
swupd-overdue
|
||||
swupd-probe
|
||||
swupd-search
|
||||
@@ -4484,6 +4621,7 @@ systemtap
|
||||
taglib
|
||||
talloc
|
||||
tallow
|
||||
tap.py
|
||||
tar
|
||||
taskflow
|
||||
taskwarrior
|
||||
@@ -4515,6 +4653,7 @@ terminus-font
|
||||
tesseract
|
||||
test-generator
|
||||
testdisk
|
||||
testfixtures
|
||||
testpath
|
||||
testrepository
|
||||
testresources
|
||||
@@ -4576,8 +4715,8 @@ trollius
|
||||
trustme
|
||||
twine
|
||||
typed_ast
|
||||
typing
|
||||
typing_extensions
|
||||
typing_inspect
|
||||
tzdata
|
||||
tzlocal
|
||||
ua-parser
|
||||
@@ -4600,7 +4739,6 @@ unit
|
||||
unittest2
|
||||
unixODBC
|
||||
unzip
|
||||
upm
|
||||
upower
|
||||
uritemplate
|
||||
urllib3
|
||||
@@ -4646,6 +4784,8 @@ voluptuous-serialize
|
||||
vpnc
|
||||
vpp
|
||||
vsqlite
|
||||
vsts
|
||||
vsts-cd-manager
|
||||
vte
|
||||
waffle
|
||||
waitress
|
||||
@@ -4724,9 +4864,12 @@ xf86-video-vesa
|
||||
xf86-video-vmware
|
||||
xfburn
|
||||
xfce4-appfinder
|
||||
xfce4-battery-plugin
|
||||
xfce4-dev-tools
|
||||
xfce4-notifyd
|
||||
xfce4-panel
|
||||
xfce4-pulseaudio-plugin
|
||||
xfce4-screensaver
|
||||
xfce4-screenshooter
|
||||
xfce4-session
|
||||
xfce4-settings
|
||||
@@ -4737,6 +4880,7 @@ xfdesktop
|
||||
xfontsel
|
||||
xfsprogs
|
||||
xfwm4
|
||||
xgboost
|
||||
xhost
|
||||
xinit
|
||||
xinput
|
||||
@@ -4773,11 +4917,13 @@ xvfb-run
|
||||
xwd
|
||||
xwdrun
|
||||
xwininfo
|
||||
xxhash
|
||||
xz
|
||||
yajl
|
||||
yakuake
|
||||
yaml
|
||||
yaml-cpp
|
||||
yamlloader
|
||||
yappi
|
||||
yarg
|
||||
yarl
|
||||
|
||||
+5
-2
@@ -244,14 +244,15 @@ def main():
|
||||
|
||||
zap_line_in_file_start(".spec", "Release :")
|
||||
zap_line_in_file_start(".spec", "Source99 :")
|
||||
zap_line_in_file_start(".spec", "Source0 :")
|
||||
zap_line_in_file_start(".spec", "export SOURCE_DATE_EPOCH")
|
||||
zap_line_in_file_start(".spec", "export AR=gcc-ar")
|
||||
zap_line_in_file_start(".spec", "export RANLIB=gcc-ranlib")
|
||||
zap_line_in_file_start(".spec", "export NM=gcc-nm")
|
||||
zap_line_in_file_start(".spec", "export CFLAGS=\"$CFLAGS -O3 -ffat-lto-objects -flto=4 \"")
|
||||
zap_line_in_file_start(".spec", "export FCFLAGS=\"$CFLAGS -O3 -ffat-lto-objects -flto=4 \"")
|
||||
zap_line_in_file_start(".spec", "export FCFLAGS=\"$FFLAGS -O3 -ffat-lto-objects -flto=4 \"")
|
||||
zap_line_in_file_start(".spec", "export FFLAGS=\"$CFLAGS -O3 -ffat-lto-objects -flto=4 \"")
|
||||
zap_line_in_file_start(".spec", "export FFLAGS=\"$FFLAGS -O3 -ffat-lto-objects -flto=4 \"")
|
||||
zap_line_in_file_start(".spec", "export CXXFLAGS=\"$CXXFLAGS -O3 -ffat-lto-objects -flto=4 \"")
|
||||
zap_line_in_file_start(".spec", "%setup -q -n ")
|
||||
zap_line_in_file_start(".spec", "URL :")
|
||||
@@ -288,13 +289,15 @@ def main():
|
||||
zap_line_in_file_start(".spec", "cp -a ")
|
||||
zap_line_in_file_start(".spec", "cd %{_builddir}/")
|
||||
zap_line_in_file_start(".spec", "export GCC_IGNORE_WERROR=1")
|
||||
zap_line_in_file_start(".spec", "rm -rf %{buildroot}")
|
||||
|
||||
zap_line_in_file_start("b/Makefile", "URL =")
|
||||
zap_line_in_file_start("b/Makefile", "PKG_NAME :=")
|
||||
|
||||
zap_line_in_file_start("b/options.conf", "name = ")
|
||||
zap_line_in_file("b/options.conf", "archives = ")
|
||||
zap_line_in_file("b/options.conf", "giturl = ")
|
||||
zap_line_in_file("b/options.conf", "url = ")
|
||||
zap_line_in_file_start("b/options.conf", "url = ")
|
||||
zap_line_in_file("b/options.conf", "[package]")
|
||||
zap_line_in_file("b/options.conf", "")
|
||||
zap_line_in_file("b/options.conf", "[autospec]")
|
||||
|
||||
Reference in New Issue
Block a user