mirror of
https://github.com/clearlinux/common.git
synced 2026-07-14 00:35:53 +00:00
Compare commits
25 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 89f861fda6 | |||
| 447126c594 | |||
| a3ad322a0a | |||
| c357625466 | |||
| ee3938da6c | |||
| d86d9e564d | |||
| df467c348a | |||
| 581aa3f813 | |||
| 5946c4dfa9 | |||
| f3e7eec6dc | |||
| fca54d3027 | |||
| 6550c61092 | |||
| d2d8b886bd | |||
| e227e8722b | |||
| b924031ba6 | |||
| 0981d133b1 | |||
| 3d195f17b2 | |||
| 187098145c | |||
| fbd176e68d | |||
| 75e48d2e12 | |||
| 87bbccedf1 | |||
| 3f52dc6afb | |||
| c2421ce65c | |||
| 410f9f4e34 | |||
| 480dfd8a53 |
+12
-10
@@ -9,9 +9,11 @@ include $(TOPLVL)/projects/common/Makefile.shared
|
|||||||
|
|
||||||
SHELL = /bin/bash
|
SHELL = /bin/bash
|
||||||
|
|
||||||
|
CURRENT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
|
||||||
|
|
||||||
SPECFILE = $(addsuffix .spec, $(PKG_NAME))
|
SPECFILE = $(addsuffix .spec, $(PKG_NAME))
|
||||||
|
|
||||||
SRPMVERS = $(shell [ ! -f $(SPECFILE) ] || rpmspec -D '_vendor clr' --srpm -q --queryformat '%{NAME}-%{VERSION}-%{RELEASE}\n' $(SPECFILE))
|
SRPMVERS = $(shell [ ! -f $(SPECFILE) ] || $(call queryspec,%{NVR}\n,$(SPECFILE)))
|
||||||
SRPMFILE = results/$(SRPMVERS).src.rpm
|
SRPMFILE = results/$(SRPMVERS).src.rpm
|
||||||
|
|
||||||
LATEST_RPMS = $(wildcard rpms/*.rpm)
|
LATEST_RPMS = $(wildcard rpms/*.rpm)
|
||||||
@@ -46,7 +48,7 @@ upstream:
|
|||||||
#help spdxcheck: Checks that the package license is a valid SPDX license,
|
#help spdxcheck: Checks that the package license is a valid SPDX license,
|
||||||
#help or that it is in the exceptions list.
|
#help or that it is in the exceptions list.
|
||||||
spdxcheck: $(SPECFILE)
|
spdxcheck: $(SPECFILE)
|
||||||
@for LICENSE in `rpmspec -D '_vendor clr' --srpm -q --queryformat '%{LICENSE}\n' $(SPECFILE)`; do \
|
@for LICENSE in `$(call queryspec,%{LICENSE}\n,$(SPECFILE))`; do \
|
||||||
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; \
|
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"
|
done; test -z "$$FAIL"
|
||||||
|
|
||||||
@@ -217,12 +219,12 @@ bump:
|
|||||||
git pull --rebase
|
git pull --rebase
|
||||||
$(MAKE) bumpnogit
|
$(MAKE) bumpnogit
|
||||||
git add $(SPECFILE) 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)`"
|
git commit -a -m "version bump from $(shell $(call queryspec,%{VERSION}-%{RELEASE}\n,$(SPECFILE))) to `$(call queryspec,%{VERSION}-%{RELEASE}\n,$(SPECFILE))`"
|
||||||
|
|
||||||
#help bumpnogit: Increments the release file by one and does not commit changes.
|
#help bumpnogit: Increments the release file by one and does not commit changes.
|
||||||
bumpnogit:
|
bumpnogit:
|
||||||
@$(MAKE) spdxcheck
|
@$(MAKE) spdxcheck
|
||||||
oldrel=$(shell rpmspec -D '_vendor clr' --srpm -q --queryformat '%{RELEASE}\n' $(SPECFILE)); \
|
oldrel=$(shell $(call queryspec,%{RELEASE}\n,$(SPECFILE))); \
|
||||||
newrel=$$(($$oldrel + 1)); \
|
newrel=$$(($$oldrel + 1)); \
|
||||||
sed -i "s/^\(Release[[:blank:]]*:[[:blank:]]*\)$$oldrel$$/\1$$newrel/" $(SPECFILE); \
|
sed -i "s/^\(Release[[:blank:]]*:[[:blank:]]*\)$$oldrel$$/\1$$newrel/" $(SPECFILE); \
|
||||||
echo "$$newrel" > release;
|
echo "$$newrel" > release;
|
||||||
@@ -232,7 +234,7 @@ $(__missingsources): sources
|
|||||||
# First argument is a Clear Linux build number (e.g. 22000)
|
# First argument is a Clear Linux build number (e.g. 22000)
|
||||||
define fetch-from-srpm
|
define fetch-from-srpm
|
||||||
tmp=$$(mktemp -d -p "."); \
|
tmp=$$(mktemp -d -p "."); \
|
||||||
srpm=$$(rpmspec --srpm -q --qf "%{NVR}.src.rpm\n" $(SPECFILE)); \
|
srpm=$$($(call queryspec,%{NVR}.src.rpm\n,$(SPECFILE))); \
|
||||||
if cd "$$tmp" && ! curl -s -S -f -L -O $(MIRROR_CURL_OPTS) $(DOWNLOAD_MIRROR)/releases/$(1)/clear/source/SRPMS/$$srpm; then \
|
if cd "$$tmp" && ! curl -s -S -f -L -O $(MIRROR_CURL_OPTS) $(DOWNLOAD_MIRROR)/releases/$(1)/clear/source/SRPMS/$$srpm; then \
|
||||||
echo "Failed to download $$srpm from Clear Linux release $(1)." >&2; \
|
echo "Failed to download $$srpm from Clear Linux release $(1)." >&2; \
|
||||||
cd .. && rm -rf "$$tmp"; \
|
cd .. && rm -rf "$$tmp"; \
|
||||||
@@ -240,7 +242,7 @@ define fetch-from-srpm
|
|||||||
fi; \
|
fi; \
|
||||||
rpm2cpio $$srpm | cpio --quiet -id; \
|
rpm2cpio $$srpm | cpio --quiet -id; \
|
||||||
cd ..; \
|
cd ..; \
|
||||||
srclist=$$(rpmspec --srpm -q --qf "[%{SOURCE}\n]" $(SPECFILE)); \
|
srclist=$$($(call queryspec,[%{SOURCE}\n],$(SPECFILE))); \
|
||||||
for s in $$srclist; do \
|
for s in $$srclist; do \
|
||||||
if ! mv --no-clobber "$$tmp"/$$s .; then \
|
if ! mv --no-clobber "$$tmp"/$$s .; then \
|
||||||
echo "Missing source file \"$$s\" in $${srpm}." >&2; \
|
echo "Missing source file \"$$s\" in $${srpm}." >&2; \
|
||||||
@@ -279,7 +281,7 @@ else
|
|||||||
sources:
|
sources:
|
||||||
@$(MAKE) generateupstream; \
|
@$(MAKE) generateupstream; \
|
||||||
[ $$? -eq 0 ] && exit 0; \
|
[ $$? -eq 0 ] && exit 0; \
|
||||||
nvr="$$(rpmspec --srpm -q --qf '%{NAME}\t%{VERSION}\t%{RELEASE}\n' $(SPECFILE))"; \
|
nvr="$$($(call queryspec,%{NAME}\t%{VERSION}\t%{RELEASE}\n,$(SPECFILE)))"; \
|
||||||
git -C $(TOPLVL)/projects/common fetch --tags >/dev/null 2>&1; \
|
git -C $(TOPLVL)/projects/common fetch --tags >/dev/null 2>&1; \
|
||||||
latest_builds=$$(git -C $(TOPLVL)/projects/common tag -l | sort -rn); \
|
latest_builds=$$(git -C $(TOPLVL)/projects/common tag -l | sort -rn); \
|
||||||
for b in $$latest_builds; do \
|
for b in $$latest_builds; do \
|
||||||
@@ -305,8 +307,8 @@ prekoji-checks:
|
|||||||
koji: prekoji-checks kojidef
|
koji: prekoji-checks kojidef
|
||||||
@$(MAKE) spdxcheck
|
@$(MAKE) spdxcheck
|
||||||
@$(MAKE) checkblacklist
|
@$(MAKE) checkblacklist
|
||||||
@if [ "$$(git rev-parse --abbrev-ref HEAD)" != "master" ]; then \
|
@if [ "$(CURRENT_BRANCH)" != "master" ] && [ "$(CURRENT_BRANCH)" != "main" ]; then \
|
||||||
echo "Error: Must be on the master branch to submit to koji" >&2; \
|
echo "Error: Must be on the \"master\" or \"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 \
|
||||||
@@ -322,7 +324,7 @@ koji: prekoji-checks kojidef
|
|||||||
exit 1; \
|
exit 1; \
|
||||||
fi
|
fi
|
||||||
git tag $(SRPMVERS)
|
git tag $(SRPMVERS)
|
||||||
git push origin master refs/tags/$(SRPMVERS)
|
git push origin $(CURRENT_BRANCH):master 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
|
||||||
|
|||||||
@@ -47,6 +47,14 @@ define subjectprefix
|
|||||||
git config format.subjectPrefix "PATCH $(1)"
|
git config format.subjectPrefix "PATCH $(1)"
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
# Query the spec file (or spec files) listed in argument 2 for the field(s)
|
||||||
|
# specified in argument 1. The fields are derived from the source rpm(s)
|
||||||
|
# generated by the specs. Queried fields that are declared within the spec file
|
||||||
|
# must be declared above the first %files section.
|
||||||
|
define queryspec
|
||||||
|
rpmspec --define='_vendor clr' --srpm --query --queryformat='$(1)' <(sed -n '1,/%files/p' $(2))
|
||||||
|
endef
|
||||||
|
|
||||||
# If GITOLITE_BASE_URL is defined, sets a repo's push URL for that gitolite
|
# If GITOLITE_BASE_URL is defined, sets a repo's push URL for that gitolite
|
||||||
# instance. Accepts one argument: the path to the repo on gitolite. If
|
# instance. Accepts one argument: the path to the repo on gitolite. If
|
||||||
# GITOLITE_BASE_URL is not defined, no push URL is set -- the shell's null
|
# GITOLITE_BASE_URL is not defined, no push URL is set -- the shell's null
|
||||||
|
|||||||
+2
-2
@@ -178,13 +178,13 @@ log: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
|||||||
#help versions: Displays the version of each package in the ./packages tree.
|
#help versions: Displays the version of each package in the ./packages tree.
|
||||||
versions: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
versions: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||||
@for p in $(addprefix packages/,$(PKGS_LOCAL)); do \
|
@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) ;\
|
(cd $$p; if ls *.spec &> /dev/null; then $(call queryspec,%{NAME}-%{VERSION}\n,*.spec) | head -n1; fi) ;\
|
||||||
done
|
done
|
||||||
|
|
||||||
#help releases: Like 'make versions', but also displays the release number.
|
#help releases: Like 'make versions', but also displays the release number.
|
||||||
releases: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
releases: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||||
@for p in $(addprefix packages/,$(PKGS_LOCAL)); do \
|
@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) ;\
|
(cd $$p; if ls *.spec &> /dev/null; then $(call queryspec,%{NVR}\n,*.spec) | head -n1; fi) ;\
|
||||||
done
|
done
|
||||||
|
|
||||||
#help provides: Is used to find out which RPM package provides some file.
|
#help provides: Is used to find out which RPM package provides some file.
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ AMDPLPA
|
|||||||
AML
|
AML
|
||||||
AMPAS
|
AMPAS
|
||||||
ANTLR-PD
|
ANTLR-PD
|
||||||
|
ANTLR-PD-fallback
|
||||||
APAFML
|
APAFML
|
||||||
APL-1.0
|
APL-1.0
|
||||||
APSL-1.0
|
APSL-1.0
|
||||||
@@ -39,6 +40,7 @@ BSD-2-Clause
|
|||||||
BSD-2-Clause-FreeBSD
|
BSD-2-Clause-FreeBSD
|
||||||
BSD-2-Clause-NetBSD
|
BSD-2-Clause-NetBSD
|
||||||
BSD-2-Clause-Patent
|
BSD-2-Clause-Patent
|
||||||
|
BSD-2-Clause-Views
|
||||||
BSD-3-Clause
|
BSD-3-Clause
|
||||||
BSD-3-Clause-Attribution
|
BSD-3-Clause-Attribution
|
||||||
BSD-3-Clause-Clear
|
BSD-3-Clause-Clear
|
||||||
@@ -52,6 +54,7 @@ BSD-4-Clause-UC
|
|||||||
BSD-Protection
|
BSD-Protection
|
||||||
BSD-Source-Code
|
BSD-Source-Code
|
||||||
BSL-1.0
|
BSL-1.0
|
||||||
|
BUSL-1.1
|
||||||
Bahyph
|
Bahyph
|
||||||
Barr
|
Barr
|
||||||
Beerware
|
Beerware
|
||||||
@@ -59,11 +62,15 @@ BitTorrent-1.0
|
|||||||
BitTorrent-1.1
|
BitTorrent-1.1
|
||||||
BlueOak-1.0.0
|
BlueOak-1.0.0
|
||||||
Borceux
|
Borceux
|
||||||
|
CAL-1.0
|
||||||
|
CAL-1.0-Combined-Work-Exception
|
||||||
CATOSL-1.1
|
CATOSL-1.1
|
||||||
CC-BY-1.0
|
CC-BY-1.0
|
||||||
CC-BY-2.0
|
CC-BY-2.0
|
||||||
CC-BY-2.5
|
CC-BY-2.5
|
||||||
CC-BY-3.0
|
CC-BY-3.0
|
||||||
|
CC-BY-3.0-AT
|
||||||
|
CC-BY-3.0-US
|
||||||
CC-BY-4.0
|
CC-BY-4.0
|
||||||
CC-BY-NC-1.0
|
CC-BY-NC-1.0
|
||||||
CC-BY-NC-2.0
|
CC-BY-NC-2.0
|
||||||
@@ -74,6 +81,7 @@ CC-BY-NC-ND-1.0
|
|||||||
CC-BY-NC-ND-2.0
|
CC-BY-NC-ND-2.0
|
||||||
CC-BY-NC-ND-2.5
|
CC-BY-NC-ND-2.5
|
||||||
CC-BY-NC-ND-3.0
|
CC-BY-NC-ND-3.0
|
||||||
|
CC-BY-NC-ND-3.0-IGO
|
||||||
CC-BY-NC-ND-4.0
|
CC-BY-NC-ND-4.0
|
||||||
CC-BY-NC-SA-1.0
|
CC-BY-NC-SA-1.0
|
||||||
CC-BY-NC-SA-2.0
|
CC-BY-NC-SA-2.0
|
||||||
@@ -87,8 +95,10 @@ CC-BY-ND-3.0
|
|||||||
CC-BY-ND-4.0
|
CC-BY-ND-4.0
|
||||||
CC-BY-SA-1.0
|
CC-BY-SA-1.0
|
||||||
CC-BY-SA-2.0
|
CC-BY-SA-2.0
|
||||||
|
CC-BY-SA-2.0-UK
|
||||||
CC-BY-SA-2.5
|
CC-BY-SA-2.5
|
||||||
CC-BY-SA-3.0
|
CC-BY-SA-3.0
|
||||||
|
CC-BY-SA-3.0-AT
|
||||||
CC-BY-SA-4.0
|
CC-BY-SA-4.0
|
||||||
CC-PDDC
|
CC-PDDC
|
||||||
CC0-1.0
|
CC0-1.0
|
||||||
@@ -104,6 +114,9 @@ CECILL-B
|
|||||||
CECILL-C
|
CECILL-C
|
||||||
CERN-OHL-1.1
|
CERN-OHL-1.1
|
||||||
CERN-OHL-1.2
|
CERN-OHL-1.2
|
||||||
|
CERN-OHL-P-2.0
|
||||||
|
CERN-OHL-S-2.0
|
||||||
|
CERN-OHL-W-2.0
|
||||||
CNRI-Jython
|
CNRI-Jython
|
||||||
CNRI-Python
|
CNRI-Python
|
||||||
CNRI-Python-GPL-Compatible
|
CNRI-Python-GPL-Compatible
|
||||||
@@ -125,6 +138,7 @@ ECL-1.0
|
|||||||
ECL-2.0
|
ECL-2.0
|
||||||
EFL-1.0
|
EFL-1.0
|
||||||
EFL-2.0
|
EFL-2.0
|
||||||
|
EPICS
|
||||||
EPL-1.0
|
EPL-1.0
|
||||||
EPL-2.0
|
EPL-2.0
|
||||||
EUDatagrid
|
EUDatagrid
|
||||||
@@ -142,15 +156,28 @@ Fair
|
|||||||
Frameworx-1.0
|
Frameworx-1.0
|
||||||
FreeImage
|
FreeImage
|
||||||
GFDL-1.1
|
GFDL-1.1
|
||||||
|
GFDL-1.1-invariants-only
|
||||||
|
GFDL-1.1-invariants-or-later
|
||||||
|
GFDL-1.1-no-invariants-only
|
||||||
|
GFDL-1.1-no-invariants-or-later
|
||||||
GFDL-1.1-only
|
GFDL-1.1-only
|
||||||
GFDL-1.1-or-later
|
GFDL-1.1-or-later
|
||||||
GFDL-1.2
|
GFDL-1.2
|
||||||
|
GFDL-1.2-invariants-only
|
||||||
|
GFDL-1.2-invariants-or-later
|
||||||
|
GFDL-1.2-no-invariants-only
|
||||||
|
GFDL-1.2-no-invariants-or-later
|
||||||
GFDL-1.2-only
|
GFDL-1.2-only
|
||||||
GFDL-1.2-or-later
|
GFDL-1.2-or-later
|
||||||
GFDL-1.3
|
GFDL-1.3
|
||||||
|
GFDL-1.3-invariants-only
|
||||||
|
GFDL-1.3-invariants-or-later
|
||||||
|
GFDL-1.3-no-invariants-only
|
||||||
|
GFDL-1.3-no-invariants-or-later
|
||||||
GFDL-1.3-only
|
GFDL-1.3-only
|
||||||
GFDL-1.3-or-later
|
GFDL-1.3-or-later
|
||||||
GL2PS
|
GL2PS
|
||||||
|
GLWTPL
|
||||||
GPL-1.0
|
GPL-1.0
|
||||||
GPL-1.0+
|
GPL-1.0+
|
||||||
GPL-1.0-only
|
GPL-1.0-only
|
||||||
@@ -175,7 +202,9 @@ Glide
|
|||||||
Glulxe
|
Glulxe
|
||||||
HPND
|
HPND
|
||||||
HPND-sell-variant
|
HPND-sell-variant
|
||||||
|
HTMLTIDY
|
||||||
HaskellReport
|
HaskellReport
|
||||||
|
Hippocratic-2.1
|
||||||
IBM-pibs
|
IBM-pibs
|
||||||
ICU
|
ICU
|
||||||
IJG
|
IJG
|
||||||
@@ -226,6 +255,7 @@ MIT-CMU
|
|||||||
MIT-advertising
|
MIT-advertising
|
||||||
MIT-enna
|
MIT-enna
|
||||||
MIT-feh
|
MIT-feh
|
||||||
|
MIT-open-group
|
||||||
MITNFA
|
MITNFA
|
||||||
MPL-1.0
|
MPL-1.0
|
||||||
MPL-1.1
|
MPL-1.1
|
||||||
@@ -238,12 +268,16 @@ MakeIndex
|
|||||||
MirOS
|
MirOS
|
||||||
Motosoto
|
Motosoto
|
||||||
MulanPSL-1.0
|
MulanPSL-1.0
|
||||||
|
MulanPSL-2.0
|
||||||
Multics
|
Multics
|
||||||
Mup
|
Mup
|
||||||
NASA-1.3
|
NASA-1.3
|
||||||
NBPL-1.0
|
NBPL-1.0
|
||||||
|
NCGL-UK-2.0
|
||||||
NCSA
|
NCSA
|
||||||
NGPL
|
NGPL
|
||||||
|
NIST-PD
|
||||||
|
NIST-PD-fallback
|
||||||
NLOD-1.0
|
NLOD-1.0
|
||||||
NLPL
|
NLPL
|
||||||
NOSL
|
NOSL
|
||||||
@@ -260,6 +294,7 @@ Newsletr
|
|||||||
Nokia
|
Nokia
|
||||||
Noweb
|
Noweb
|
||||||
Nunit
|
Nunit
|
||||||
|
O-UDA-1.0
|
||||||
OCCT-PL
|
OCCT-PL
|
||||||
OCLC-2.0
|
OCLC-2.0
|
||||||
ODC-By-1.0
|
ODC-By-1.0
|
||||||
@@ -270,6 +305,7 @@ OFL-1.0-no-RFN
|
|||||||
OFL-1.1
|
OFL-1.1
|
||||||
OFL-1.1-RFN
|
OFL-1.1-RFN
|
||||||
OFL-1.1-no-RFN
|
OFL-1.1-no-RFN
|
||||||
|
OGC-1.0
|
||||||
OGL-Canada-2.0
|
OGL-Canada-2.0
|
||||||
OGL-UK-1.0
|
OGL-UK-1.0
|
||||||
OGL-UK-2.0
|
OGL-UK-2.0
|
||||||
@@ -305,7 +341,10 @@ PHP-3.0
|
|||||||
PHP-3.01
|
PHP-3.01
|
||||||
PSF-2.0
|
PSF-2.0
|
||||||
Parity-6.0.0
|
Parity-6.0.0
|
||||||
|
Parity-7.0.0
|
||||||
Plexus
|
Plexus
|
||||||
|
PolyForm-Noncommercial-1.0.0
|
||||||
|
PolyForm-Small-Business-1.0.0
|
||||||
PostgreSQL
|
PostgreSQL
|
||||||
Python-2.0
|
Python-2.0
|
||||||
QPL-1.0
|
QPL-1.0
|
||||||
|
|||||||
@@ -88,6 +88,7 @@ R-BMS
|
|||||||
R-BatchJobs
|
R-BatchJobs
|
||||||
R-BayesFactor
|
R-BayesFactor
|
||||||
R-BiasedUrn
|
R-BiasedUrn
|
||||||
|
R-BiocManager
|
||||||
R-BoolNet
|
R-BoolNet
|
||||||
R-BradleyTerry2
|
R-BradleyTerry2
|
||||||
R-Brobdingnag
|
R-Brobdingnag
|
||||||
@@ -256,11 +257,14 @@ R-bootstrap
|
|||||||
R-brew
|
R-brew
|
||||||
R-brglm
|
R-brglm
|
||||||
R-bridgesampling
|
R-bridgesampling
|
||||||
|
R-brio
|
||||||
R-brms
|
R-brms
|
||||||
R-broom
|
R-broom
|
||||||
|
R-bslib
|
||||||
R-bvls
|
R-bvls
|
||||||
R-ca
|
R-ca
|
||||||
R-caTools
|
R-caTools
|
||||||
|
R-cachem
|
||||||
R-calibrate
|
R-calibrate
|
||||||
R-calibrator
|
R-calibrator
|
||||||
R-callr
|
R-callr
|
||||||
@@ -301,6 +305,7 @@ R-covr
|
|||||||
R-cowplot
|
R-cowplot
|
||||||
R-cpp11
|
R-cpp11
|
||||||
R-crayon
|
R-crayon
|
||||||
|
R-credentials
|
||||||
R-crosstalk
|
R-crosstalk
|
||||||
R-crul
|
R-crul
|
||||||
R-csvy
|
R-csvy
|
||||||
@@ -337,6 +342,7 @@ R-doParallel
|
|||||||
R-doRNG
|
R-doRNG
|
||||||
R-doSNOW
|
R-doSNOW
|
||||||
R-dotCall64
|
R-dotCall64
|
||||||
|
R-downlit
|
||||||
R-downloader
|
R-downloader
|
||||||
R-dplyr
|
R-dplyr
|
||||||
R-drc
|
R-drc
|
||||||
@@ -395,6 +401,7 @@ R-fastmap
|
|||||||
R-fastmatch
|
R-fastmatch
|
||||||
R-fauxpas
|
R-fauxpas
|
||||||
R-fda
|
R-fda
|
||||||
|
R-fds
|
||||||
R-feather
|
R-feather
|
||||||
R-ff
|
R-ff
|
||||||
R-fields
|
R-fields
|
||||||
@@ -413,6 +420,7 @@ R-forcats
|
|||||||
R-foreach
|
R-foreach
|
||||||
R-forecast
|
R-forecast
|
||||||
R-formatR
|
R-formatR
|
||||||
|
R-formattable
|
||||||
R-fossil
|
R-fossil
|
||||||
R-fpc
|
R-fpc
|
||||||
R-fracdiff
|
R-fracdiff
|
||||||
@@ -436,6 +444,7 @@ R-geiger
|
|||||||
R-generics
|
R-generics
|
||||||
R-geojson
|
R-geojson
|
||||||
R-geometry
|
R-geometry
|
||||||
|
R-gert
|
||||||
R-getopt
|
R-getopt
|
||||||
R-ggjoy
|
R-ggjoy
|
||||||
R-ggplot2
|
R-ggplot2
|
||||||
@@ -444,6 +453,8 @@ R-ggridges
|
|||||||
R-ggvis
|
R-ggvis
|
||||||
R-gh
|
R-gh
|
||||||
R-git2r
|
R-git2r
|
||||||
|
R-gitcreds
|
||||||
|
R-gld
|
||||||
R-glmnet
|
R-glmnet
|
||||||
R-globals
|
R-globals
|
||||||
R-glue
|
R-glue
|
||||||
@@ -496,7 +507,9 @@ R-joineR
|
|||||||
R-joineRML
|
R-joineRML
|
||||||
R-jpeg
|
R-jpeg
|
||||||
R-jqr
|
R-jqr
|
||||||
|
R-jquerylib
|
||||||
R-jsonlite
|
R-jsonlite
|
||||||
|
R-kableExtra
|
||||||
R-keras
|
R-keras
|
||||||
R-kernlab
|
R-kernlab
|
||||||
R-kimisc
|
R-kimisc
|
||||||
@@ -531,6 +544,7 @@ R-listviewer
|
|||||||
R-lle
|
R-lle
|
||||||
R-lme4
|
R-lme4
|
||||||
R-lmerTest
|
R-lmerTest
|
||||||
|
R-lmom
|
||||||
R-lmtest
|
R-lmtest
|
||||||
R-locfit
|
R-locfit
|
||||||
R-logcondens
|
R-logcondens
|
||||||
@@ -552,6 +566,7 @@ R-mapproj
|
|||||||
R-maps
|
R-maps
|
||||||
R-maptools
|
R-maptools
|
||||||
R-markdown
|
R-markdown
|
||||||
|
R-mathjaxr
|
||||||
R-matrixStats
|
R-matrixStats
|
||||||
R-matrixcalc
|
R-matrixcalc
|
||||||
R-maxLik
|
R-maxLik
|
||||||
@@ -561,6 +576,7 @@ R-mda
|
|||||||
R-measures
|
R-measures
|
||||||
R-memisc
|
R-memisc
|
||||||
R-memoise
|
R-memoise
|
||||||
|
R-metafor
|
||||||
R-mi
|
R-mi
|
||||||
R-mice
|
R-mice
|
||||||
R-microbenchmark
|
R-microbenchmark
|
||||||
@@ -618,6 +634,8 @@ R-ordinal
|
|||||||
R-pROC
|
R-pROC
|
||||||
R-packrat
|
R-packrat
|
||||||
R-pamr
|
R-pamr
|
||||||
|
R-pander
|
||||||
|
R-parallelly
|
||||||
R-parsedate
|
R-parsedate
|
||||||
R-partitions
|
R-partitions
|
||||||
R-party
|
R-party
|
||||||
@@ -668,11 +686,13 @@ R-prefmod
|
|||||||
R-prettyunits
|
R-prettyunits
|
||||||
R-princurve
|
R-princurve
|
||||||
R-processx
|
R-processx
|
||||||
|
R-procmaps
|
||||||
R-prodlim
|
R-prodlim
|
||||||
R-profdpm
|
R-profdpm
|
||||||
R-profileModel
|
R-profileModel
|
||||||
R-profmem
|
R-profmem
|
||||||
R-progress
|
R-progress
|
||||||
|
R-projpred
|
||||||
R-promises
|
R-promises
|
||||||
R-proto
|
R-proto
|
||||||
R-protolite
|
R-protolite
|
||||||
@@ -697,6 +717,8 @@ R-quantmod
|
|||||||
R-quantreg
|
R-quantreg
|
||||||
R-questionr
|
R-questionr
|
||||||
R-qvcalc
|
R-qvcalc
|
||||||
|
R-ragg
|
||||||
|
R-rainbow
|
||||||
R-randomForest
|
R-randomForest
|
||||||
R-randomNames
|
R-randomNames
|
||||||
R-randtests
|
R-randtests
|
||||||
@@ -709,6 +731,7 @@ R-rbenchmark
|
|||||||
R-rbibutils
|
R-rbibutils
|
||||||
R-rcmdcheck
|
R-rcmdcheck
|
||||||
R-reactR
|
R-reactR
|
||||||
|
R-reactable
|
||||||
R-reactlog
|
R-reactlog
|
||||||
R-readODS
|
R-readODS
|
||||||
R-readr
|
R-readr
|
||||||
@@ -775,6 +798,7 @@ R-rvest
|
|||||||
R-sROC
|
R-sROC
|
||||||
R-sampling
|
R-sampling
|
||||||
R-sandwich
|
R-sandwich
|
||||||
|
R-sass
|
||||||
R-scales
|
R-scales
|
||||||
R-scatterplot3d
|
R-scatterplot3d
|
||||||
R-sde
|
R-sde
|
||||||
@@ -814,8 +838,11 @@ R-sourcetools
|
|||||||
R-sp
|
R-sp
|
||||||
R-spData
|
R-spData
|
||||||
R-spam
|
R-spam
|
||||||
|
R-sparkline
|
||||||
R-spatstat
|
R-spatstat
|
||||||
R-spatstat.data
|
R-spatstat.data
|
||||||
|
R-spatstat.geom
|
||||||
|
R-spatstat.sparse
|
||||||
R-spatstat.utils
|
R-spatstat.utils
|
||||||
R-spc
|
R-spc
|
||||||
R-spdep
|
R-spdep
|
||||||
@@ -841,6 +868,7 @@ R-svUnit
|
|||||||
R-sys
|
R-sys
|
||||||
R-systemfit
|
R-systemfit
|
||||||
R-systemfonts
|
R-systemfonts
|
||||||
|
R-tables
|
||||||
R-tau
|
R-tau
|
||||||
R-taxize
|
R-taxize
|
||||||
R-tclust
|
R-tclust
|
||||||
@@ -892,6 +920,7 @@ R-vioplot
|
|||||||
R-viridis
|
R-viridis
|
||||||
R-viridisLite
|
R-viridisLite
|
||||||
R-visNetwork
|
R-visNetwork
|
||||||
|
R-waldo
|
||||||
R-warp
|
R-warp
|
||||||
R-webmockr
|
R-webmockr
|
||||||
R-webshot
|
R-webshot
|
||||||
@@ -899,6 +928,7 @@ R-webutils
|
|||||||
R-whisker
|
R-whisker
|
||||||
R-whoami
|
R-whoami
|
||||||
R-wikitaxa
|
R-wikitaxa
|
||||||
|
R-winch
|
||||||
R-withr
|
R-withr
|
||||||
R-worrms
|
R-worrms
|
||||||
R-xfun
|
R-xfun
|
||||||
@@ -964,6 +994,7 @@ XStatic-term.js
|
|||||||
Z3
|
Z3
|
||||||
abireport
|
abireport
|
||||||
absl-py
|
absl-py
|
||||||
|
abydos
|
||||||
accountsservice
|
accountsservice
|
||||||
acl
|
acl
|
||||||
acme
|
acme
|
||||||
@@ -996,6 +1027,7 @@ amtk
|
|||||||
analitza
|
analitza
|
||||||
ansible
|
ansible
|
||||||
antlr4-python3-runtime
|
antlr4-python3-runtime
|
||||||
|
anyio
|
||||||
apache-ant
|
apache-ant
|
||||||
apipkg
|
apipkg
|
||||||
appdirs
|
appdirs
|
||||||
@@ -1033,6 +1065,7 @@ astunparse
|
|||||||
asunder
|
asunder
|
||||||
asv
|
asv
|
||||||
async-timeout
|
async-timeout
|
||||||
|
async_generator
|
||||||
at
|
at
|
||||||
at-spi2-atk
|
at-spi2-atk
|
||||||
at-spi2-core
|
at-spi2-core
|
||||||
@@ -1060,94 +1093,8 @@ avahi
|
|||||||
awesome-wm
|
awesome-wm
|
||||||
awscli
|
awscli
|
||||||
axel
|
axel
|
||||||
azure-batch
|
|
||||||
azure-cli
|
|
||||||
azure-cli-command-modules-nspkg
|
|
||||||
azure-cli-core
|
|
||||||
azure-cli-nspkg
|
|
||||||
azure-cli-telemetry
|
|
||||||
azure-common
|
|
||||||
azure-configs
|
azure-configs
|
||||||
azure-core
|
|
||||||
azure-cosmos
|
|
||||||
azure-datalake-store
|
|
||||||
azure-functions-devops-build
|
|
||||||
azure-graphrbac
|
|
||||||
azure-iot-sdk
|
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-storage-blob
|
|
||||||
azure-storage-common
|
|
||||||
babeltrace
|
babeltrace
|
||||||
babl
|
babl
|
||||||
backcall
|
backcall
|
||||||
@@ -1174,6 +1121,7 @@ bind-utils
|
|||||||
binutils
|
binutils
|
||||||
binwalk
|
binwalk
|
||||||
bison
|
bison
|
||||||
|
black
|
||||||
bleach
|
bleach
|
||||||
blender
|
blender
|
||||||
blinken
|
blinken
|
||||||
@@ -1226,6 +1174,7 @@ byobu
|
|||||||
bz2file
|
bz2file
|
||||||
bzip2
|
bzip2
|
||||||
c-ares
|
c-ares
|
||||||
|
cJSON
|
||||||
c_rehash
|
c_rehash
|
||||||
ca-certs
|
ca-certs
|
||||||
ca-certs-static
|
ca-certs-static
|
||||||
@@ -1330,22 +1279,27 @@ colord-gtk
|
|||||||
colordiff
|
colordiff
|
||||||
columbiad
|
columbiad
|
||||||
commonmark
|
commonmark
|
||||||
|
compat-atkmm-soname16
|
||||||
compat-boost-soname1.72.0
|
compat-boost-soname1.72.0
|
||||||
compat-boost-soname1.73.0
|
compat-boost-soname1.73.0
|
||||||
|
compat-cairomm-soname10
|
||||||
compat-curl-gnutls-soname4
|
compat-curl-gnutls-soname4
|
||||||
compat-enchant-soname1
|
compat-enchant-soname1
|
||||||
compat-fuse-soname2
|
compat-fuse-soname2
|
||||||
|
compat-glibmm-soname24
|
||||||
compat-gtksourceview-soname3
|
compat-gtksourceview-soname3
|
||||||
compat-hunspell-soname1.6
|
|
||||||
compat-icu4c-soname64
|
compat-icu4c-soname64
|
||||||
compat-libhandy-0.0
|
compat-libhandy-0.0
|
||||||
compat-libpng-soname12
|
compat-libpng-soname12
|
||||||
compat-libraw-soname19
|
compat-libraw-soname19
|
||||||
|
compat-libsigc++-soname20
|
||||||
compat-libva-soname1
|
compat-libva-soname1
|
||||||
compat-nettle-soname6
|
compat-nettle-soname6
|
||||||
compat-nettle-soname7
|
compat-nettle-soname7
|
||||||
compat-opencv-soname42
|
compat-opencv-soname42
|
||||||
|
compat-pangomm-soname14
|
||||||
compat-protobuf-soname22
|
compat-protobuf-soname22
|
||||||
|
compat-python38
|
||||||
compat-re2-soname7
|
compat-re2-soname7
|
||||||
compat-readline-soname5
|
compat-readline-soname5
|
||||||
compat-tracker-soname2.0
|
compat-tracker-soname2.0
|
||||||
@@ -1388,12 +1342,14 @@ cups
|
|||||||
cups-bjnp
|
cups-bjnp
|
||||||
cups-filters
|
cups-filters
|
||||||
cups-pk-helper
|
cups-pk-helper
|
||||||
|
curio
|
||||||
curl
|
curl
|
||||||
custom_inherit
|
custom_inherit
|
||||||
cve-bin-tool
|
cve-bin-tool
|
||||||
cxxfilt
|
cxxfilt
|
||||||
cycler
|
cycler
|
||||||
cyrus-sasl
|
cyrus-sasl
|
||||||
|
dacite
|
||||||
dapl
|
dapl
|
||||||
darkflow
|
darkflow
|
||||||
darktable
|
darktable
|
||||||
@@ -1414,6 +1370,7 @@ decorator
|
|||||||
defusedxml
|
defusedxml
|
||||||
dejagnu
|
dejagnu
|
||||||
dejavu-fonts
|
dejavu-fonts
|
||||||
|
deprecation
|
||||||
desktop-file-utils
|
desktop-file-utils
|
||||||
devhelp
|
devhelp
|
||||||
dfc
|
dfc
|
||||||
@@ -1613,6 +1570,7 @@ gdal
|
|||||||
gdb
|
gdb
|
||||||
gdbm
|
gdbm
|
||||||
gdk-pixbuf
|
gdk-pixbuf
|
||||||
|
gdk-pixbuf-xlib
|
||||||
gdl
|
gdl
|
||||||
gdm
|
gdm
|
||||||
geany
|
geany
|
||||||
@@ -1859,6 +1817,7 @@ importlib_metadata
|
|||||||
indent
|
indent
|
||||||
influxdb
|
influxdb
|
||||||
iniconfig
|
iniconfig
|
||||||
|
inih
|
||||||
iniparse
|
iniparse
|
||||||
init-rdahead
|
init-rdahead
|
||||||
inkscape
|
inkscape
|
||||||
@@ -1915,6 +1874,7 @@ iwd
|
|||||||
ixion
|
ixion
|
||||||
jack2
|
jack2
|
||||||
jansson
|
jansson
|
||||||
|
janus
|
||||||
jaraco.classes
|
jaraco.classes
|
||||||
jaraco.collections
|
jaraco.collections
|
||||||
jaraco.functools
|
jaraco.functools
|
||||||
@@ -1924,6 +1884,7 @@ javaproperties
|
|||||||
jdcal
|
jdcal
|
||||||
jedi
|
jedi
|
||||||
jeepney
|
jeepney
|
||||||
|
jellyfish
|
||||||
jemalloc
|
jemalloc
|
||||||
jmespath
|
jmespath
|
||||||
joblib
|
joblib
|
||||||
@@ -1946,13 +1907,16 @@ juk
|
|||||||
jupyter
|
jupyter
|
||||||
jupyter-nbgallery
|
jupyter-nbgallery
|
||||||
jupyter-notebook-gist
|
jupyter-notebook-gist
|
||||||
|
jupyter-packaging
|
||||||
jupyter_client
|
jupyter_client
|
||||||
jupyter_console
|
jupyter_console
|
||||||
jupyter_core
|
jupyter_core
|
||||||
|
jupyter_server
|
||||||
jupyterlab
|
jupyterlab
|
||||||
jupyterlab_launcher
|
jupyterlab_launcher
|
||||||
jupyterlab_pygments
|
jupyterlab_pygments
|
||||||
jupyterlab_server
|
jupyterlab_server
|
||||||
|
jupyterlab_widgets
|
||||||
kactivities
|
kactivities
|
||||||
kactivities-stats
|
kactivities-stats
|
||||||
kactivitymanagerd
|
kactivitymanagerd
|
||||||
@@ -2251,6 +2215,7 @@ libdmx
|
|||||||
libdnf
|
libdnf
|
||||||
libdrm
|
libdrm
|
||||||
libe-book
|
libe-book
|
||||||
|
libebur128
|
||||||
libeconf
|
libeconf
|
||||||
libedit
|
libedit
|
||||||
libepoxy
|
libepoxy
|
||||||
@@ -2586,6 +2551,7 @@ mkl-dnn
|
|||||||
mkosi
|
mkosi
|
||||||
mlocate
|
mlocate
|
||||||
mlt
|
mlt
|
||||||
|
mm-common
|
||||||
mmc-utils
|
mmc-utils
|
||||||
mobile-broadband-provider-info
|
mobile-broadband-provider-info
|
||||||
mock
|
mock
|
||||||
@@ -2612,14 +2578,11 @@ mpg123
|
|||||||
mpi4py
|
mpi4py
|
||||||
mpmath
|
mpmath
|
||||||
mpv
|
mpv
|
||||||
msal
|
|
||||||
msal-extensions
|
|
||||||
msgpack
|
msgpack
|
||||||
msgpack-c
|
msgpack-c
|
||||||
msmtp
|
msmtp
|
||||||
msr-tools
|
msr-tools
|
||||||
msrest
|
msrest
|
||||||
msrestazure
|
|
||||||
mstflint
|
mstflint
|
||||||
mtd-utils
|
mtd-utils
|
||||||
mtdev
|
mtdev
|
||||||
@@ -2645,6 +2608,7 @@ nagios-plugins
|
|||||||
nano
|
nano
|
||||||
nasm
|
nasm
|
||||||
nautilus
|
nautilus
|
||||||
|
nbclassic
|
||||||
nbconvert
|
nbconvert
|
||||||
nbformat
|
nbformat
|
||||||
nbval
|
nbval
|
||||||
@@ -2786,6 +2750,7 @@ p11-kit
|
|||||||
p7zip
|
p7zip
|
||||||
packaging
|
packaging
|
||||||
pacrunner
|
pacrunner
|
||||||
|
paho-mqtt
|
||||||
paho.mqtt.c
|
paho.mqtt.c
|
||||||
paho.mqtt.cpp
|
paho.mqtt.cpp
|
||||||
palapeli
|
palapeli
|
||||||
@@ -2823,6 +2788,7 @@ pdns
|
|||||||
pdns-recursor
|
pdns-recursor
|
||||||
pdsh
|
pdsh
|
||||||
pecan
|
pecan
|
||||||
|
ped
|
||||||
pep517
|
pep517
|
||||||
pep8
|
pep8
|
||||||
perftest
|
perftest
|
||||||
@@ -3645,6 +3611,7 @@ perl-prefork
|
|||||||
perl-strictures
|
perl-strictures
|
||||||
persistent
|
persistent
|
||||||
pesign
|
pesign
|
||||||
|
petastorm
|
||||||
pexpect
|
pexpect
|
||||||
phonon
|
phonon
|
||||||
phonon-vlc
|
phonon-vlc
|
||||||
@@ -3827,6 +3794,8 @@ pyflakes
|
|||||||
pygobject
|
pygobject
|
||||||
pyhs100
|
pyhs100
|
||||||
pylint
|
pylint
|
||||||
|
pyls-black
|
||||||
|
pyls-spyder
|
||||||
pynvim
|
pynvim
|
||||||
pyotherside
|
pyotherside
|
||||||
pyotp
|
pyotp
|
||||||
@@ -3861,6 +3830,7 @@ python-crfsuite
|
|||||||
python-dateutil
|
python-dateutil
|
||||||
python-digitalocean
|
python-digitalocean
|
||||||
python-distutils-extra
|
python-distutils-extra
|
||||||
|
python-dotenv
|
||||||
python-future
|
python-future
|
||||||
python-gflags
|
python-gflags
|
||||||
python-graphviz
|
python-graphviz
|
||||||
@@ -3894,6 +3864,7 @@ pyu2f
|
|||||||
pyudev
|
pyudev
|
||||||
pyusb
|
pyusb
|
||||||
pywbem
|
pywbem
|
||||||
|
pyxDamerauLevenshtein
|
||||||
pyxattr
|
pyxattr
|
||||||
pyxdg
|
pyxdg
|
||||||
pyzmq
|
pyzmq
|
||||||
@@ -3984,6 +3955,7 @@ requests-mock
|
|||||||
requests-ntlm
|
requests-ntlm
|
||||||
requests-oauthlib
|
requests-oauthlib
|
||||||
requests-toolbelt
|
requests-toolbelt
|
||||||
|
requests-unixsocket
|
||||||
responses
|
responses
|
||||||
rest
|
rest
|
||||||
restic
|
restic
|
||||||
@@ -4213,6 +4185,7 @@ texinfo
|
|||||||
texlive
|
texlive
|
||||||
texmaker
|
texmaker
|
||||||
text-unidecode
|
text-unidecode
|
||||||
|
textdistance
|
||||||
texttable
|
texttable
|
||||||
tflearn
|
tflearn
|
||||||
tgt
|
tgt
|
||||||
@@ -4220,11 +4193,14 @@ the_silver_searcher
|
|||||||
thermal_daemon
|
thermal_daemon
|
||||||
thermal_monitor
|
thermal_monitor
|
||||||
thin-provisioning-tools
|
thin-provisioning-tools
|
||||||
|
threadpoolctl
|
||||||
threadweaver
|
threadweaver
|
||||||
|
three-merge
|
||||||
thunar-volman
|
thunar-volman
|
||||||
thunderbird
|
thunderbird
|
||||||
thunderbolt-software-user-space
|
thunderbolt-software-user-space
|
||||||
tiff
|
tiff
|
||||||
|
tifffile
|
||||||
tig
|
tig
|
||||||
tigervnc
|
tigervnc
|
||||||
tilix
|
tilix
|
||||||
@@ -4260,6 +4236,7 @@ typing_extensions
|
|||||||
tzdata
|
tzdata
|
||||||
tzlocal
|
tzlocal
|
||||||
ua-parser
|
ua-parser
|
||||||
|
uamqp
|
||||||
ucpp
|
ucpp
|
||||||
udisks2
|
udisks2
|
||||||
udunits
|
udunits
|
||||||
|
|||||||
+1
-1
@@ -211,7 +211,7 @@ def main():
|
|||||||
with open (filename, "r") as myfile:
|
with open (filename, "r") as myfile:
|
||||||
lines = myfile.readlines()
|
lines = myfile.readlines()
|
||||||
else:
|
else:
|
||||||
output = subprocess.check_output("git format-patch -1 --stdout", shell=True).decode("latin-1")
|
output = subprocess.check_output("git format-patch -1 --stdout", shell=True).decode("utf-8", errors="replace")
|
||||||
lines = output.split("\n")
|
lines = output.split("\n")
|
||||||
|
|
||||||
parse_patch(lines)
|
parse_patch(lines)
|
||||||
|
|||||||
Reference in New Issue
Block a user