sync ports with The Matrix
This commit is contained in:
parent
137b59ed88
commit
d97ea2d955
49 changed files with 530 additions and 192 deletions
|
@ -2,7 +2,7 @@ COMMENT = extension to horizontally scale PostgreSQL
|
|||
|
||||
GH_ACCOUNT = citusdata
|
||||
GH_PROJECT = citus
|
||||
GH_TAGNAME = v11.3.0
|
||||
GH_TAGNAME = v12.1.0
|
||||
|
||||
CATEGORIES = databases
|
||||
HOMEPAGE = https://www.citusdata.com/
|
||||
|
@ -19,6 +19,7 @@ LIB_DEPENDS = databases/postgresql
|
|||
BUILD_DEPENDS = databases/postgresql,-server
|
||||
RUN_DEPENDS = databases/postgresql,-server
|
||||
TEST_DEPENDS = ${FULLPKGNAME}:${BUILD_PKGPATH} \
|
||||
databases/postgresql,-contrib \
|
||||
shells/bash
|
||||
|
||||
FAKE_TARGET = install-all
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (citus-11.3.0.tar.gz) = 43eYHtpBoMPe+q/D50cenxAkgt9w7aJdrJEvz3wk3xY=
|
||||
SIZE (citus-11.3.0.tar.gz) = 6627414
|
||||
SHA256 (citus-12.1.0.tar.gz) = zCUSLs1XF6wLFNjLqYEmXRXXHNlVIQlxzm8XTrADb5o=
|
||||
SIZE (citus-12.1.0.tar.gz) = 6896809
|
||||
|
|
|
@ -5,7 +5,7 @@ building anyway.
|
|||
Index: Makefile
|
||||
--- Makefile.orig
|
||||
+++ Makefile
|
||||
@@ -68,7 +68,7 @@ check-style:
|
||||
@@ -60,7 +60,7 @@ check-style:
|
||||
.PHONY: reindent check-style
|
||||
|
||||
# depend on install-all so that downgrade scripts are installed as well
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
@bin bin/pg_send_cancellation
|
||||
include/postgresql/server/citus_version.h
|
||||
include/postgresql/server/distributed/
|
||||
include/postgresql/server/distributed/adaptive_executor.h
|
||||
|
@ -52,6 +51,7 @@ include/postgresql/server/distributed/lock_graph.h
|
|||
include/postgresql/server/distributed/log_utils.h
|
||||
include/postgresql/server/distributed/maintenanced.h
|
||||
include/postgresql/server/distributed/memutils.h
|
||||
include/postgresql/server/distributed/merge_executor.h
|
||||
include/postgresql/server/distributed/merge_planner.h
|
||||
include/postgresql/server/distributed/metadata_cache.h
|
||||
include/postgresql/server/distributed/metadata_sync.h
|
||||
|
@ -80,6 +80,7 @@ include/postgresql/server/distributed/pg_dist_node_metadata.h
|
|||
include/postgresql/server/distributed/pg_dist_partition.h
|
||||
include/postgresql/server/distributed/pg_dist_placement.h
|
||||
include/postgresql/server/distributed/pg_dist_rebalance_strategy.h
|
||||
include/postgresql/server/distributed/pg_dist_schema.h
|
||||
include/postgresql/server/distributed/pg_dist_shard.h
|
||||
include/postgresql/server/distributed/pg_dist_transaction.h
|
||||
include/postgresql/server/distributed/pg_version_constants.h
|
||||
|
@ -98,7 +99,9 @@ include/postgresql/server/distributed/relation_utils.h
|
|||
include/postgresql/server/distributed/relay_utility.h
|
||||
include/postgresql/server/distributed/remote_commands.h
|
||||
include/postgresql/server/distributed/remote_transaction.h
|
||||
include/postgresql/server/distributed/repartition_executor.h
|
||||
include/postgresql/server/distributed/repartition_join_execution.h
|
||||
include/postgresql/server/distributed/replicate_none_dist_table_shard.h
|
||||
include/postgresql/server/distributed/replication_origin_session_utils.h
|
||||
include/postgresql/server/distributed/resource_lock.h
|
||||
include/postgresql/server/distributed/run_from_same_connection.h
|
||||
|
@ -118,6 +121,7 @@ include/postgresql/server/distributed/string_utils.h
|
|||
include/postgresql/server/distributed/subplan_execution.h
|
||||
include/postgresql/server/distributed/task_execution_utils.h
|
||||
include/postgresql/server/distributed/tdigest_extension.h
|
||||
include/postgresql/server/distributed/tenant_schema_metadata.h
|
||||
include/postgresql/server/distributed/time_constants.h
|
||||
include/postgresql/server/distributed/transaction_identifier.h
|
||||
include/postgresql/server/distributed/transaction_management.h
|
||||
|
@ -173,6 +177,12 @@ share/postgresql/extension/citus--11.2-1--11.2-2.sql
|
|||
share/postgresql/extension/citus--11.2-2--11.2-1.sql
|
||||
share/postgresql/extension/citus--11.2-2--11.3-1.sql
|
||||
share/postgresql/extension/citus--11.3-1--11.2-2.sql
|
||||
share/postgresql/extension/citus--11.3-1--11.3-2.sql
|
||||
share/postgresql/extension/citus--11.3-2--11.3-1.sql
|
||||
share/postgresql/extension/citus--11.3-2--12.0-1.sql
|
||||
share/postgresql/extension/citus--12.0-1--11.3-2.sql
|
||||
share/postgresql/extension/citus--12.0-1--12.1-1.sql
|
||||
share/postgresql/extension/citus--12.1-1--12.0-1.sql
|
||||
share/postgresql/extension/citus--8.0-1--8.0-2.sql
|
||||
share/postgresql/extension/citus--8.0-1.sql
|
||||
share/postgresql/extension/citus--8.0-10--8.0-11.sql
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
COMMENT = lightweight connection pooler for PostgreSQL
|
||||
|
||||
V = 1.20.0
|
||||
V = 1.20.1
|
||||
DISTNAME = pgbouncer-${V}
|
||||
|
||||
CATEGORIES = databases
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (pgbouncer-1.20.0.tar.gz) = 5w1afLi3Hdfbq/01cdcaS2uZ8uhdjXGvHnNPbYZjXw4=
|
||||
SIZE (pgbouncer-1.20.0.tar.gz) = 638020
|
||||
SHA256 (pgbouncer-1.20.1.tar.gz) = JJks9VfXNCbXBIaY3/x7AZ5jZNTYdXriz14kcShqIIg=
|
||||
SIZE (pgbouncer-1.20.1.tar.gz) = 638844
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
COMMENT = configuration system for Python applications
|
||||
|
||||
MODPY_EGG_VERSION = 5.6.0
|
||||
MODPY_EGG_VERSION = 5.10.0
|
||||
DISTNAME = traitlets-${MODPY_EGG_VERSION}
|
||||
PKGNAME = py-${DISTNAME}
|
||||
|
||||
|
@ -20,4 +20,8 @@ MODPY_PI = Yes
|
|||
MODPY_PYBUILD = hatchling
|
||||
MODPY_PYTEST_ARGS = traitlets
|
||||
|
||||
TEST_DEPENDS = devel/py-argcomplete${MODPY_FLAVOR} \
|
||||
devel/py-mypy${MODPY_FLAVOR} \
|
||||
devel/py-test-mock${MODPY_FLAVOR}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (traitlets-5.6.0.tar.gz) = ELbtHJzt7oPnldtwqLnC2xV7s3eOxFh6NJ7LfvOxAzs=
|
||||
SIZE (traitlets-5.6.0.tar.gz) = 133316
|
||||
SHA256 (traitlets-5.10.0.tar.gz) = 9YTqIJJARm5m6R88gap9AEukz3lJkLDHdZOKFUQhfNE=
|
||||
SIZE (traitlets-5.10.0.tar.gz) = 153836
|
||||
|
|
|
@ -6,7 +6,7 @@ lib/python${MODPY_VERSION}/site-packages/traitlets-${MODPY_EGG_VERSION}.dist-inf
|
|||
lib/python${MODPY_VERSION}/site-packages/traitlets-${MODPY_EGG_VERSION}.dist-info/RECORD
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets-${MODPY_EGG_VERSION}.dist-info/WHEEL
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets-${MODPY_EGG_VERSION}.dist-info/licenses/
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets-${MODPY_EGG_VERSION}.dist-info/licenses/COPYING.md
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets-${MODPY_EGG_VERSION}.dist-info/licenses/LICENSE
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/__init__.py
|
||||
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/traitlets/${MODPY_PYCACHE}/
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -25,6 +25,8 @@ lib/python${MODPY_VERSION}/site-packages/traitlets/config/${MODPY_PYCACHE}__init
|
|||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/${MODPY_PYCACHE}application.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/${MODPY_PYCACHE}application.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/${MODPY_PYCACHE}argcomplete_config.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/${MODPY_PYCACHE}argcomplete_config.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/${MODPY_PYCACHE}configurable.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/${MODPY_PYCACHE}configurable.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/${MODPY_PYCACHE}loader.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -34,6 +36,7 @@ lib/python${MODPY_VERSION}/site-packages/traitlets/config/${MODPY_PYCACHE}manage
|
|||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/${MODPY_PYCACHE}sphinxdoc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/${MODPY_PYCACHE}sphinxdoc.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/application.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/argcomplete_config.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/configurable.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/loader.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/manager.py
|
||||
|
@ -45,11 +48,14 @@ lib/python${MODPY_VERSION}/site-packages/traitlets/config/tests/${MODPY_PYCACHE}
|
|||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/tests/${MODPY_PYCACHE}test_application.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/tests/${MODPY_PYCACHE}test_application.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/tests/${MODPY_PYCACHE}test_argcomplete.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/tests/${MODPY_PYCACHE}test_argcomplete.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/tests/${MODPY_PYCACHE}test_configurable.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/tests/${MODPY_PYCACHE}test_configurable.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/tests/${MODPY_PYCACHE}test_loader.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/tests/${MODPY_PYCACHE}test_loader.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/tests/test_application.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/tests/test_argcomplete.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/tests/test_configurable.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/config/tests/test_loader.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/log.py
|
||||
|
@ -65,11 +71,14 @@ lib/python${MODPY_VERSION}/site-packages/traitlets/tests/${MODPY_PYCACHE}test_tr
|
|||
lib/python${MODPY_VERSION}/site-packages/traitlets/tests/${MODPY_PYCACHE}test_traitlets.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/tests/${MODPY_PYCACHE}test_traitlets_enum.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/tests/${MODPY_PYCACHE}test_traitlets_enum.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/tests/${MODPY_PYCACHE}test_typing.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/tests/${MODPY_PYCACHE}test_typing.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/tests/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/tests/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/tests/_warnings.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/tests/test_traitlets.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/tests/test_traitlets_enum.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/tests/test_typing.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/tests/utils.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/traitlets.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/utils/
|
||||
|
@ -93,6 +102,8 @@ lib/python${MODPY_VERSION}/site-packages/traitlets/utils/${MODPY_PYCACHE}sentine
|
|||
lib/python${MODPY_VERSION}/site-packages/traitlets/utils/${MODPY_PYCACHE}sentinel.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/utils/${MODPY_PYCACHE}text.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/utils/${MODPY_PYCACHE}text.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/utils/${MODPY_PYCACHE}warnings.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/utils/${MODPY_PYCACHE}warnings.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/utils/bunch.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/utils/decorators.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/utils/descriptions.py
|
||||
|
@ -115,3 +126,4 @@ lib/python${MODPY_VERSION}/site-packages/traitlets/utils/tests/test_bunch.py
|
|||
lib/python${MODPY_VERSION}/site-packages/traitlets/utils/tests/test_decorators.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/utils/tests/test_importstring.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/utils/text.py
|
||||
lib/python${MODPY_VERSION}/site-packages/traitlets/utils/warnings.py
|
||||
|
|
|
@ -43,8 +43,6 @@ DISTFILES.sharp = godot-${V}-mono-glue.tar.gz godot-${V}-nuget-packages.tar.xz
|
|||
|
||||
DIST_TUPLE += github CoaguCo-Industries GodotSteam v3.20 godotsteam # MIT
|
||||
|
||||
DIST_SUBDIR = ${PKGNAME}
|
||||
|
||||
MODULES = devel/scons
|
||||
|
||||
MODSCONS_FLAGS = CC="${CC}" \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
SHA256 (godot-3.5.2/CoaguCo-Industries-GodotSteam-v3.20.tar.gz) = FoAl3iZ+1CWwIPXwJZ9S7q3QMn//RslYT06tXkc38QU=
|
||||
SHA256 (godot-3.5.2/godot-3.5.2-mono-glue.tar.gz) = ezUneQt2JzlsQPF4FvSCcNtJiYbdb3NEY4Lvjj/gz64=
|
||||
SHA256 (godot-3.5.2/godot-3.5.2-nuget-packages.tar.xz) = RXlTjB1IgjZEP2ZJY05xoGQv8XTRKHxwPaMmiNdduQE=
|
||||
SHA256 (godot-3.5.2/godot-3.5.2-stable.tar.xz) = tDodaynqJby6+86/e6CEMmGqEjfic5SUU4oiANjHvmI=
|
||||
SIZE (godot-3.5.2/CoaguCo-Industries-GodotSteam-v3.20.tar.gz) = 253832
|
||||
SIZE (godot-3.5.2/godot-3.5.2-mono-glue.tar.gz) = 1094618
|
||||
SIZE (godot-3.5.2/godot-3.5.2-nuget-packages.tar.xz) = 55742184
|
||||
SIZE (godot-3.5.2/godot-3.5.2-stable.tar.xz) = 24047432
|
||||
SHA256 (CoaguCo-Industries-GodotSteam-v3.20.tar.gz) = FoAl3iZ+1CWwIPXwJZ9S7q3QMn//RslYT06tXkc38QU=
|
||||
SHA256 (godot-3.5.2-mono-glue.tar.gz) = ezUneQt2JzlsQPF4FvSCcNtJiYbdb3NEY4Lvjj/gz64=
|
||||
SHA256 (godot-3.5.2-nuget-packages.tar.xz) = RXlTjB1IgjZEP2ZJY05xoGQv8XTRKHxwPaMmiNdduQE=
|
||||
SHA256 (godot-3.5.2-stable.tar.xz) = tDodaynqJby6+86/e6CEMmGqEjfic5SUU4oiANjHvmI=
|
||||
SIZE (CoaguCo-Industries-GodotSteam-v3.20.tar.gz) = 253832
|
||||
SIZE (godot-3.5.2-mono-glue.tar.gz) = 1094618
|
||||
SIZE (godot-3.5.2-nuget-packages.tar.xz) = 55742184
|
||||
SIZE (godot-3.5.2-stable.tar.xz) = 24047432
|
||||
|
|
|
@ -6,6 +6,8 @@ GH_PROJECT = wxmaxima
|
|||
GH_TAGNAME = Version-$V
|
||||
PKGNAME = wxMaxima-$V
|
||||
|
||||
REVISION = 0
|
||||
|
||||
CATEGORIES = math
|
||||
|
||||
HOMEPAGE = https://wxmaxima-developers.github.io/
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
COMMENT = simple, lightweight XMPP C library
|
||||
|
||||
V = 0.12.2
|
||||
V = 0.12.3
|
||||
DISTNAME = libstrophe-${V}
|
||||
|
||||
SHARED_LIBS = strophe 4.0 # 12.1
|
||||
|
@ -33,4 +33,6 @@ MAKE_FLAGS = CC="${CC}" CFLAGS="${CFLAGS}"
|
|||
CONFIGURE_ENV += CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
DEBUG_PACKAGES = ${BUILD_PACKAGES}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (libstrophe-0.12.2.tar.gz) = re3KHP/2oXCVqqfifuz/LNPWCAh/Vf4ek5WmqxqJN0A=
|
||||
SIZE (libstrophe-0.12.2.tar.gz) = 581031
|
||||
SHA256 (libstrophe-0.12.3.tar.gz) = dZ+bvv8go5LIP66BRFXNm82q6BJWspAW93fLwHDYlEU=
|
||||
SIZE (libstrophe-0.12.3.tar.gz) = 579381
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
COMMENT = console based XMPP client
|
||||
DISTNAME = profanity-0.13.1
|
||||
DISTNAME = profanity-0.14.0
|
||||
CATEGORIES = net
|
||||
REVISION = 1
|
||||
|
||||
HOMEPAGE = https://profanity-im.github.io/
|
||||
|
||||
|
@ -16,9 +15,9 @@ MASTER_SITES = https://profanity-im.github.io/tarballs/
|
|||
|
||||
WANTLIB += assuan c crypto curl curses ereadline expat ffi gcrypt
|
||||
WANTLIB += gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0 gpg-error
|
||||
WANTLIB += gpgme iconv intl m nghttp2 otr pcre2-8 pthread ${MODPY_WANTLIB}
|
||||
WANTLIB += qrencode signal-protocol-c sqlite3 ssl strophe util
|
||||
WANTLIB += z
|
||||
WANTLIB += gpgme iconv intl m nghttp2 nghttp3 ngtcp2 ngtcp2_crypto_openssl
|
||||
WANTLIB += otr pcre2-8 pthread python3.10 qrencode signal-protocol-c
|
||||
WANTLIB += sqlite3 ssl strophe util z
|
||||
|
||||
MODULES += lang/python
|
||||
|
||||
|
@ -54,6 +53,8 @@ CONFIGURE_ARGS += --with-xscreensaver=no \
|
|||
MAKE_FLAGS = CC="${CC}" \
|
||||
CFLAGS="${CFLAGS}"
|
||||
|
||||
DEBUG_PACKAGES = ${BUILD_PACKAGES}
|
||||
|
||||
post-patch:
|
||||
${SUBST_CMD} ${WRKSRC}/configure.ac
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (profanity-0.13.1.tar.gz) = K1B1Jy5+ydnJkVQuWSsdR0//iMYcZufiMJatMG7SyEo=
|
||||
SIZE (profanity-0.13.1.tar.gz) = 903811
|
||||
SHA256 (profanity-0.14.0.tar.gz) = /SP/04oxkHl0poCjkAyVnhTUThbx+33yvbf2xnvXz38=
|
||||
SIZE (profanity-0.14.0.tar.gz) = 936272
|
||||
|
|
|
@ -56,7 +56,6 @@ lib/libprofanity.la
|
|||
@man man/man1/profanity-notify.1
|
||||
@man man/man1/profanity-occupants.1
|
||||
@man man/man1/profanity-omemo.1
|
||||
@man man/man1/profanity-os.1
|
||||
@man man/man1/profanity-otr.1
|
||||
@man man/man1/profanity-outtype.1
|
||||
@man man/man1/profanity-ox-setup.1
|
||||
|
@ -68,6 +67,7 @@ lib/libprofanity.la
|
|||
@man man/man1/profanity-prefs.1
|
||||
@man man/man1/profanity-presence.1
|
||||
@man man/man1/profanity-priority.1
|
||||
@man man/man1/profanity-privacy.1
|
||||
@man man/man1/profanity-privileges.1
|
||||
@man man/man1/profanity-quit.1
|
||||
@man man/man1/profanity-receipts.1
|
||||
|
@ -91,6 +91,7 @@ lib/libprofanity.la
|
|||
@man man/man1/profanity-states.1
|
||||
@man man/man1/profanity-status.1
|
||||
@man man/man1/profanity-statusbar.1
|
||||
@man man/man1/profanity-strophe.1
|
||||
@man man/man1/profanity-sub.1
|
||||
@man man/man1/profanity-subject.1
|
||||
@man man/man1/profanity-theme.1
|
||||
|
@ -99,6 +100,7 @@ lib/libprofanity.la
|
|||
@man man/man1/profanity-tls.1
|
||||
@man man/man1/profanity-tray.1
|
||||
@man man/man1/profanity-url.1
|
||||
@man man/man1/profanity-vcard.1
|
||||
@man man/man1/profanity-vercheck.1
|
||||
@man man/man1/profanity-who.1
|
||||
@man man/man1/profanity-win.1
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
COMMENT-main = network traffic monitor
|
||||
COMMENT-vnstati = image output support for vnstat
|
||||
|
||||
V = 2.10
|
||||
V = 2.11
|
||||
EPOCH = 0
|
||||
DISTNAME = vnstat-${V}
|
||||
PKGNAME-main = ${DISTNAME}
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (vnstat-2.10.tar.gz) = qcYXROXNjDZuLbTSgrrcdAId22FL1ltBJAk3mX5FfSU=
|
||||
SIZE (vnstat-2.10.tar.gz) = 304464
|
||||
SHA256 (vnstat-2.11.tar.gz) = urw/FYPMQOTo/7L1MpbZPTCMtaUEPoUFT26ve0rleFY=
|
||||
SIZE (vnstat-2.11.tar.gz) = 312821
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
COMMENT = PostScript and PDF interpreter
|
||||
|
||||
VERSION = 10.01.2
|
||||
VERSION = 10.02.0
|
||||
DISTNAME = ghostscript-${VERSION}
|
||||
EXTRACT_SUFX = .tar.xz
|
||||
CATEGORIES = lang print
|
||||
SHARED_LIBS = gs 18.0
|
||||
SHARED_LIBS = gs 18.1
|
||||
|
||||
MASTER_SITES = https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${VERSION:S/.//g}/
|
||||
SITES = https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${VERSION:S/.//g}/
|
||||
|
||||
PORTROACH = site:https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (ghostscript-10.01.2.tar.xz) = SNB5JCosoCouR6dqUs36gYsq12nCurAK0El90TVg5+c=
|
||||
SIZE (ghostscript-10.01.2.tar.xz) = 67571808
|
||||
SHA256 (ghostscript-10.02.0.tar.xz) = +gjOAWsw0mKT3DIsY1NpGs7ZT9Nmemjt5/9TldcfzQs=
|
||||
SIZE (ghostscript-10.02.0.tar.xz) = 67955320
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Index: configure
|
||||
--- configure.orig
|
||||
+++ configure
|
||||
@@ -12682,8 +12682,8 @@ DLL_EXT=""
|
||||
@@ -13149,8 +13149,8 @@ DLL_EXT=""
|
||||
SO_LIB_VERSION_SEPARATOR="."
|
||||
|
||||
libname1="_SO_BASE)\$(GS_SOEXT)\$(DLL_EXT)"
|
||||
|
@ -12,7 +12,7 @@ Index: configure
|
|||
GS_SONAME="lib\$(GS${libname1}"
|
||||
GS_SONAME_MAJOR="lib\$(GS${libname2}"
|
||||
GS_SONAME_MAJOR_MINOR="lib\$(GS${libname3}"
|
||||
@@ -12795,11 +12795,11 @@ case $host in
|
||||
@@ -13262,11 +13262,11 @@ case $host in
|
||||
;;
|
||||
*bsd*)
|
||||
DYNAMIC_CFLAGS="-fPIC $DYNAMIC_CFLAGS"
|
||||
|
|
|
@ -57,7 +57,7 @@ share/doc/ghostscript/${VERSION}/
|
|||
share/doc/ghostscript/${VERSION}/COPYING
|
||||
share/doc/ghostscript/${VERSION}/GS9_Color_Management.pdf
|
||||
share/doc/ghostscript/${VERSION}/Ghostscript.pdf
|
||||
share/doc/ghostscript/${VERSION}/News.htm
|
||||
share/doc/ghostscript/${VERSION}/News.html
|
||||
share/ghostscript/
|
||||
share/ghostscript/${VERSION}/
|
||||
share/ghostscript/${VERSION}/lib/
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
COMMENT= Python library for manipulating pages of PDF files
|
||||
|
||||
MODPY_EGG_VERSION= 3.16.1
|
||||
MODPY_EGG_VERSION= 3.16.2
|
||||
DISTNAME= pypdf-${MODPY_EGG_VERSION}
|
||||
PKGNAME= py-${DISTNAME}
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (pypdf-3.16.1.tar.gz) = r/lUDmxewTXW6AlD23QldSNjkyUWLQDJA+4eK+hDUfw=
|
||||
SIZE (pypdf-3.16.1.tar.gz) = 273431
|
||||
SHA256 (pypdf-3.16.2.tar.gz) = bgACgf0PTNMubx51sFrwtsD7vZd3+pqOnYbjTNplQZ0=
|
||||
SIZE (pypdf-3.16.2.tar.gz) = 273498
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
COMMENT= generic spell checking library
|
||||
|
||||
V= 2.5.0
|
||||
V= 2.6.1
|
||||
DISTNAME= enchant-${V}
|
||||
PKGNAME= enchant2-${V}
|
||||
|
||||
SHARED_LIBS += enchant-2 1.0 # 7.0
|
||||
SHARED_LIBS += enchant-2 1.0 # 8.1
|
||||
|
||||
CATEGORIES= textproc
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (enchant-2.5.0.tar.gz) = FJ4iTN0sqCXYdGOVeLYkbgfzfVuPOXBlijd6HvRvLhU=
|
||||
SIZE (enchant-2.5.0.tar.gz) = 990061
|
||||
SHA256 (enchant-2.6.1.tar.gz) = 8k4SRpE3rh0DFAu5AypHpZR8NvTR4vErkpBhAF6xUnk=
|
||||
SIZE (enchant-2.6.1.tar.gz) = 1014436
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Index: src/Makefile.in
|
||||
--- src/Makefile.in.orig
|
||||
+++ src/Makefile.in
|
||||
@@ -1495,10 +1495,10 @@ uninstall-man: uninstall-man1 uninstall-man5
|
||||
@@ -1588,10 +1588,10 @@ uninstall-man: uninstall-man1 uninstall-man5
|
||||
|
||||
|
||||
.1.html:
|
||||
|
@ -13,4 +13,4 @@ Index: src/Makefile.in
|
|||
+ mandoc -Thtml $< > $@
|
||||
|
||||
enchant-@ENCHANT_MAJOR_VERSION@.1: $(builddir)/enchant.1 Makefile.am $(top_builddir)/config.status
|
||||
rm -f $@ $@.tmp
|
||||
cp $(abs_builddir)/enchant.1 $@
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
NC_VERSION= 27.0.2
|
||||
NC_VERSION= 27.1.1
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (nextcloud-27.0.2.tar.bz2) = ei3OpDqjuPswM0fv2kxvN3M8yhE8juFt2fDl+2jHIS8=
|
||||
SIZE (nextcloud-27.0.2.tar.bz2) = 169607153
|
||||
SHA256 (nextcloud-27.1.1.tar.bz2) = OpFQBWaHRnVnb6O1v64lh6g5zeQd+sUxgEOxYsExH6s=
|
||||
SIZE (nextcloud-27.1.1.tar.bz2) = 180000001
|
||||
|
|
|
@ -9334,6 +9334,9 @@ nextcloud/apps/activity/img/change.svg
|
|||
nextcloud/apps/activity/img/delete-color.svg
|
||||
nextcloud/apps/activity/img/notifications-dark.svg
|
||||
nextcloud/apps/activity/js/
|
||||
nextcloud/apps/activity/js/activity-10.js
|
||||
nextcloud/apps/activity/js/activity-10.js.LICENSE.txt
|
||||
nextcloud/apps/activity/js/activity-10.js.map
|
||||
nextcloud/apps/activity/js/activity-323.js
|
||||
nextcloud/apps/activity/js/activity-323.js.LICENSE.txt
|
||||
nextcloud/apps/activity/js/activity-323.js.map
|
||||
|
@ -9343,6 +9346,9 @@ nextcloud/apps/activity/js/activity-398.js.map
|
|||
nextcloud/apps/activity/js/activity-554.js
|
||||
nextcloud/apps/activity/js/activity-554.js.LICENSE.txt
|
||||
nextcloud/apps/activity/js/activity-554.js.map
|
||||
nextcloud/apps/activity/js/activity-568.js
|
||||
nextcloud/apps/activity/js/activity-568.js.LICENSE.txt
|
||||
nextcloud/apps/activity/js/activity-568.js.map
|
||||
nextcloud/apps/activity/js/activity-783.js
|
||||
nextcloud/apps/activity/js/activity-783.js.LICENSE.txt
|
||||
nextcloud/apps/activity/js/activity-783.js.map
|
||||
|
@ -9649,6 +9655,8 @@ nextcloud/apps/activity/lib/Settings/Personal.php
|
|||
nextcloud/apps/activity/lib/Settings/PersonalSection.php
|
||||
nextcloud/apps/activity/lib/UserSettings.php
|
||||
nextcloud/apps/activity/lib/ViewInfoCache.php
|
||||
nextcloud/apps/activity/package-lock.json
|
||||
nextcloud/apps/activity/package.json
|
||||
nextcloud/apps/activity/templates/
|
||||
nextcloud/apps/activity/templates/rss.php
|
||||
nextcloud/apps/activity/templates/settings/
|
||||
|
@ -9656,6 +9664,10 @@ nextcloud/apps/activity/templates/settings/admin.php
|
|||
nextcloud/apps/activity/templates/settings/personal.php
|
||||
nextcloud/apps/activity/templates/stream.app.navigation.php
|
||||
nextcloud/apps/activity/templates/stream.body.php
|
||||
nextcloud/apps/activity/vendor-bin/
|
||||
nextcloud/apps/activity/vendor-bin/cs-fixer/
|
||||
nextcloud/apps/activity/vendor-bin/cs-fixer/composer.json
|
||||
nextcloud/apps/activity/vendor-bin/cs-fixer/composer.lock
|
||||
nextcloud/apps/admin_audit/
|
||||
nextcloud/apps/admin_audit/appinfo/
|
||||
nextcloud/apps/admin_audit/appinfo/info.xml
|
||||
|
@ -10021,6 +10033,8 @@ nextcloud/apps/bruteforcesettings/lib/Controller/
|
|||
nextcloud/apps/bruteforcesettings/lib/Controller/IPWhitelistController.php
|
||||
nextcloud/apps/bruteforcesettings/lib/Settings/
|
||||
nextcloud/apps/bruteforcesettings/lib/Settings/IPWhitelist.php
|
||||
nextcloud/apps/bruteforcesettings/package-lock.json
|
||||
nextcloud/apps/bruteforcesettings/package.json
|
||||
nextcloud/apps/bruteforcesettings/screenshots/
|
||||
nextcloud/apps/bruteforcesettings/screenshots/1.png
|
||||
nextcloud/apps/bruteforcesettings/templates/
|
||||
|
@ -10810,6 +10824,8 @@ nextcloud/apps/cloud_federation_api/l10n/tr.js
|
|||
nextcloud/apps/cloud_federation_api/l10n/tr.json
|
||||
nextcloud/apps/cloud_federation_api/l10n/uk.js
|
||||
nextcloud/apps/cloud_federation_api/l10n/uk.json
|
||||
nextcloud/apps/cloud_federation_api/l10n/vi.js
|
||||
nextcloud/apps/cloud_federation_api/l10n/vi.json
|
||||
nextcloud/apps/cloud_federation_api/l10n/zh_CN.js
|
||||
nextcloud/apps/cloud_federation_api/l10n/zh_CN.json
|
||||
nextcloud/apps/cloud_federation_api/l10n/zh_HK.js
|
||||
|
@ -11139,6 +11155,8 @@ nextcloud/apps/contactsinteraction/l10n/tr.js
|
|||
nextcloud/apps/contactsinteraction/l10n/tr.json
|
||||
nextcloud/apps/contactsinteraction/l10n/uk.js
|
||||
nextcloud/apps/contactsinteraction/l10n/uk.json
|
||||
nextcloud/apps/contactsinteraction/l10n/vi.js
|
||||
nextcloud/apps/contactsinteraction/l10n/vi.json
|
||||
nextcloud/apps/contactsinteraction/l10n/zh_CN.js
|
||||
nextcloud/apps/contactsinteraction/l10n/zh_CN.json
|
||||
nextcloud/apps/contactsinteraction/l10n/zh_HK.js
|
||||
|
@ -11276,6 +11294,8 @@ nextcloud/apps/dashboard/l10n/uk.js
|
|||
nextcloud/apps/dashboard/l10n/uk.json
|
||||
nextcloud/apps/dashboard/l10n/uz.js
|
||||
nextcloud/apps/dashboard/l10n/uz.json
|
||||
nextcloud/apps/dashboard/l10n/vi.js
|
||||
nextcloud/apps/dashboard/l10n/vi.json
|
||||
nextcloud/apps/dashboard/l10n/zh_CN.js
|
||||
nextcloud/apps/dashboard/l10n/zh_CN.json
|
||||
nextcloud/apps/dashboard/l10n/zh_HK.js
|
||||
|
@ -11287,7 +11307,6 @@ nextcloud/apps/dashboard/lib/Controller/
|
|||
nextcloud/apps/dashboard/lib/Controller/DashboardApiController.php
|
||||
nextcloud/apps/dashboard/lib/Controller/DashboardController.php
|
||||
nextcloud/apps/dashboard/lib/Controller/LayoutApiController.php
|
||||
nextcloud/apps/dashboard/openapi.json
|
||||
nextcloud/apps/dashboard/templates/
|
||||
nextcloud/apps/dashboard/templates/index.php
|
||||
nextcloud/apps/dav/
|
||||
|
@ -11385,6 +11404,8 @@ nextcloud/apps/dav/l10n/et_EE.js
|
|||
nextcloud/apps/dav/l10n/et_EE.json
|
||||
nextcloud/apps/dav/l10n/eu.js
|
||||
nextcloud/apps/dav/l10n/eu.json
|
||||
nextcloud/apps/dav/l10n/fa.js
|
||||
nextcloud/apps/dav/l10n/fa.json
|
||||
nextcloud/apps/dav/l10n/fi.js
|
||||
nextcloud/apps/dav/l10n/fi.json
|
||||
nextcloud/apps/dav/l10n/fr.js
|
||||
|
@ -13763,6 +13784,76 @@ nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/nn-NO/
|
|||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/nn-NO/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/oc/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/oc/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/pa-IN/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/pa-IN/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/pl/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/pl/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/pt-BR/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/pt-BR/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/pt-PT/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/pt-PT/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/rm/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/rm/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/ro/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/ro/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/ru/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/ru/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/sat/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/sat/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/sc/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/sc/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/scn/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/scn/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/sco/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/sco/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/si/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/si/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/sk/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/sk/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/skr/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/skr/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/sl/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/sl/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/son/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/son/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/sq/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/sq/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/sr/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/sr/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/sv-SE/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/sv-SE/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/szl/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/szl/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/ta/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/ta/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/te/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/te/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/tg/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/tg/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/th/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/th/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/tl/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/tl/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/tr/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/tr/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/trs/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/trs/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/uk/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/uk/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/ur/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/ur/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/uz/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/uz/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/vi/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/vi/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/wo/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/wo/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/xh/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/xh/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/zh-CN/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/zh-CN/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/zh-TW/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/locale/zh-TW/viewer.properties
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/standard_fonts/
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/standard_fonts/FoxitDingbats.pfb
|
||||
nextcloud/apps/files_pdfviewer/js/pdfjs/web/standard_fonts/FoxitFixed.pfb
|
||||
|
@ -13797,10 +13888,97 @@ nextcloud/apps/files_pdfviewer/lib/Listeners/
|
|||
nextcloud/apps/files_pdfviewer/lib/Listeners/CSPListener.php
|
||||
nextcloud/apps/files_pdfviewer/lib/Listeners/LoadPublicViewerListener.php
|
||||
nextcloud/apps/files_pdfviewer/lib/Listeners/LoadViewerListener.php
|
||||
nextcloud/apps/files_pdfviewer/package-lock.json
|
||||
nextcloud/apps/files_pdfviewer/package.json
|
||||
nextcloud/apps/files_pdfviewer/pdfjs-get.js
|
||||
nextcloud/apps/files_pdfviewer/templates/
|
||||
nextcloud/apps/files_pdfviewer/templates/viewer.php
|
||||
nextcloud/apps/files_pdfviewer/webpack.config.js
|
||||
nextcloud/apps/files_reminders/
|
||||
nextcloud/apps/files_reminders/appinfo/
|
||||
nextcloud/apps/files_reminders/appinfo/info.xml
|
||||
nextcloud/apps/files_reminders/appinfo/routes.php
|
||||
nextcloud/apps/files_reminders/appinfo/signature.json
|
||||
nextcloud/apps/files_reminders/composer/
|
||||
nextcloud/apps/files_reminders/composer/autoload.php
|
||||
nextcloud/apps/files_reminders/composer/composer/
|
||||
nextcloud/apps/files_reminders/composer/composer.json
|
||||
nextcloud/apps/files_reminders/composer/composer.lock
|
||||
nextcloud/apps/files_reminders/composer/composer/ClassLoader.php
|
||||
nextcloud/apps/files_reminders/composer/composer/InstalledVersions.php
|
||||
nextcloud/apps/files_reminders/composer/composer/LICENSE
|
||||
nextcloud/apps/files_reminders/composer/composer/autoload_classmap.php
|
||||
nextcloud/apps/files_reminders/composer/composer/autoload_namespaces.php
|
||||
nextcloud/apps/files_reminders/composer/composer/autoload_psr4.php
|
||||
nextcloud/apps/files_reminders/composer/composer/autoload_real.php
|
||||
nextcloud/apps/files_reminders/composer/composer/autoload_static.php
|
||||
nextcloud/apps/files_reminders/composer/composer/installed.json
|
||||
nextcloud/apps/files_reminders/composer/composer/installed.php
|
||||
nextcloud/apps/files_reminders/img/
|
||||
nextcloud/apps/files_reminders/img/alarm.svg
|
||||
nextcloud/apps/files_reminders/l10n/
|
||||
nextcloud/apps/files_reminders/l10n/ar.js
|
||||
nextcloud/apps/files_reminders/l10n/ar.json
|
||||
nextcloud/apps/files_reminders/l10n/cs.js
|
||||
nextcloud/apps/files_reminders/l10n/cs.json
|
||||
nextcloud/apps/files_reminders/l10n/de_DE.js
|
||||
nextcloud/apps/files_reminders/l10n/de_DE.json
|
||||
nextcloud/apps/files_reminders/l10n/el.js
|
||||
nextcloud/apps/files_reminders/l10n/el.json
|
||||
nextcloud/apps/files_reminders/l10n/en_GB.js
|
||||
nextcloud/apps/files_reminders/l10n/en_GB.json
|
||||
nextcloud/apps/files_reminders/l10n/es.js
|
||||
nextcloud/apps/files_reminders/l10n/es.json
|
||||
nextcloud/apps/files_reminders/l10n/fi.js
|
||||
nextcloud/apps/files_reminders/l10n/fi.json
|
||||
nextcloud/apps/files_reminders/l10n/gl.js
|
||||
nextcloud/apps/files_reminders/l10n/gl.json
|
||||
nextcloud/apps/files_reminders/l10n/mk.js
|
||||
nextcloud/apps/files_reminders/l10n/mk.json
|
||||
nextcloud/apps/files_reminders/l10n/nb.js
|
||||
nextcloud/apps/files_reminders/l10n/nb.json
|
||||
nextcloud/apps/files_reminders/l10n/pt_BR.js
|
||||
nextcloud/apps/files_reminders/l10n/pt_BR.json
|
||||
nextcloud/apps/files_reminders/l10n/ru.js
|
||||
nextcloud/apps/files_reminders/l10n/ru.json
|
||||
nextcloud/apps/files_reminders/l10n/sr.js
|
||||
nextcloud/apps/files_reminders/l10n/sr.json
|
||||
nextcloud/apps/files_reminders/l10n/sv.js
|
||||
nextcloud/apps/files_reminders/l10n/sv.json
|
||||
nextcloud/apps/files_reminders/l10n/tr.js
|
||||
nextcloud/apps/files_reminders/l10n/tr.json
|
||||
nextcloud/apps/files_reminders/l10n/zh_HK.js
|
||||
nextcloud/apps/files_reminders/l10n/zh_HK.json
|
||||
nextcloud/apps/files_reminders/l10n/zh_TW.js
|
||||
nextcloud/apps/files_reminders/l10n/zh_TW.json
|
||||
nextcloud/apps/files_reminders/lib/
|
||||
nextcloud/apps/files_reminders/lib/AppInfo/
|
||||
nextcloud/apps/files_reminders/lib/AppInfo/Application.php
|
||||
nextcloud/apps/files_reminders/lib/BackgroundJob/
|
||||
nextcloud/apps/files_reminders/lib/BackgroundJob/CleanUpReminders.php
|
||||
nextcloud/apps/files_reminders/lib/BackgroundJob/ScheduledNotifications.php
|
||||
nextcloud/apps/files_reminders/lib/Command/
|
||||
nextcloud/apps/files_reminders/lib/Command/ListCommand.php
|
||||
nextcloud/apps/files_reminders/lib/Controller/
|
||||
nextcloud/apps/files_reminders/lib/Controller/ApiController.php
|
||||
nextcloud/apps/files_reminders/lib/Db/
|
||||
nextcloud/apps/files_reminders/lib/Db/Reminder.php
|
||||
nextcloud/apps/files_reminders/lib/Db/ReminderMapper.php
|
||||
nextcloud/apps/files_reminders/lib/Exception/
|
||||
nextcloud/apps/files_reminders/lib/Exception/NodeNotFoundException.php
|
||||
nextcloud/apps/files_reminders/lib/Exception/UserNotFoundException.php
|
||||
nextcloud/apps/files_reminders/lib/Listener/
|
||||
nextcloud/apps/files_reminders/lib/Listener/LoadAdditionalScriptsListener.php
|
||||
nextcloud/apps/files_reminders/lib/Listener/NodeDeletedListener.php
|
||||
nextcloud/apps/files_reminders/lib/Listener/UserDeletedListener.php
|
||||
nextcloud/apps/files_reminders/lib/Migration/
|
||||
nextcloud/apps/files_reminders/lib/Migration/Version10000Date20230725162149.php
|
||||
nextcloud/apps/files_reminders/lib/Model/
|
||||
nextcloud/apps/files_reminders/lib/Model/RichReminder.php
|
||||
nextcloud/apps/files_reminders/lib/Notification/
|
||||
nextcloud/apps/files_reminders/lib/Notification/Notifier.php
|
||||
nextcloud/apps/files_reminders/lib/Service/
|
||||
nextcloud/apps/files_reminders/lib/Service/ReminderService.php
|
||||
nextcloud/apps/files_rightclick/
|
||||
nextcloud/apps/files_rightclick/CHANGELOG.md
|
||||
nextcloud/apps/files_rightclick/COPYING
|
||||
|
@ -14800,6 +14978,7 @@ nextcloud/apps/files_versions/lib/Versions/BackendNotFoundException.php
|
|||
nextcloud/apps/files_versions/lib/Versions/IDeletableVersionBackend.php
|
||||
nextcloud/apps/files_versions/lib/Versions/INameableVersion.php
|
||||
nextcloud/apps/files_versions/lib/Versions/INameableVersionBackend.php
|
||||
nextcloud/apps/files_versions/lib/Versions/INeedSyncVersionBackend.php
|
||||
nextcloud/apps/files_versions/lib/Versions/IVersion.php
|
||||
nextcloud/apps/files_versions/lib/Versions/IVersionBackend.php
|
||||
nextcloud/apps/files_versions/lib/Versions/IVersionManager.php
|
||||
|
@ -15045,6 +15224,8 @@ nextcloud/apps/firstrunwizard/lib/Notification/BackgroundJob.php
|
|||
nextcloud/apps/firstrunwizard/lib/Notification/Notifier.php
|
||||
nextcloud/apps/firstrunwizard/lib/Settings/
|
||||
nextcloud/apps/firstrunwizard/lib/Settings/Personal.php
|
||||
nextcloud/apps/firstrunwizard/package-lock.json
|
||||
nextcloud/apps/firstrunwizard/package.json
|
||||
nextcloud/apps/firstrunwizard/templates/
|
||||
nextcloud/apps/firstrunwizard/templates/page.apps.php
|
||||
nextcloud/apps/firstrunwizard/templates/page.clients.php
|
||||
|
@ -15250,7 +15431,10 @@ nextcloud/apps/logreader/lib/Command/Watch.php
|
|||
nextcloud/apps/logreader/lib/Controller/
|
||||
nextcloud/apps/logreader/lib/Controller/LogController.php
|
||||
nextcloud/apps/logreader/lib/Controller/PageController.php
|
||||
nextcloud/apps/logreader/lib/Listener/
|
||||
nextcloud/apps/logreader/lib/Listener/LogListener.php
|
||||
nextcloud/apps/logreader/lib/Log/
|
||||
nextcloud/apps/logreader/lib/Log/Console.php
|
||||
nextcloud/apps/logreader/lib/Log/Formatter.php
|
||||
nextcloud/apps/logreader/lib/Log/LogIterator.php
|
||||
nextcloud/apps/logreader/lib/Log/LogIteratorFactory.php
|
||||
|
@ -15258,6 +15442,8 @@ nextcloud/apps/logreader/lib/Log/SearchFilter.php
|
|||
nextcloud/apps/logreader/lib/Settings/
|
||||
nextcloud/apps/logreader/lib/Settings/Admin.php
|
||||
nextcloud/apps/logreader/lib/Settings/Section.php
|
||||
nextcloud/apps/logreader/package-lock.json
|
||||
nextcloud/apps/logreader/package.json
|
||||
nextcloud/apps/logreader/postcss.config.js
|
||||
nextcloud/apps/logreader/screenshots/
|
||||
nextcloud/apps/logreader/screenshots/reader.png
|
||||
|
@ -15815,6 +16001,8 @@ nextcloud/apps/notifications/lib/Settings/Admin.php
|
|||
nextcloud/apps/notifications/lib/Settings/AdminSection.php
|
||||
nextcloud/apps/notifications/lib/Settings/Personal.php
|
||||
nextcloud/apps/notifications/lib/Settings/PersonalSection.php
|
||||
nextcloud/apps/notifications/package-lock.json
|
||||
nextcloud/apps/notifications/package.json
|
||||
nextcloud/apps/notifications/templates/
|
||||
nextcloud/apps/notifications/templates/settings/
|
||||
nextcloud/apps/notifications/templates/settings/admin.php
|
||||
|
@ -16252,6 +16440,8 @@ nextcloud/apps/password_policy/lists/list-6.php
|
|||
nextcloud/apps/password_policy/lists/list-7.php
|
||||
nextcloud/apps/password_policy/lists/list-8.php
|
||||
nextcloud/apps/password_policy/lists/list-9.php
|
||||
nextcloud/apps/password_policy/package-lock.json
|
||||
nextcloud/apps/password_policy/package.json
|
||||
nextcloud/apps/password_policy/templates/
|
||||
nextcloud/apps/password_policy/templates/settings.php
|
||||
nextcloud/apps/password_policy/webpack.config.js
|
||||
|
@ -16583,6 +16773,8 @@ nextcloud/apps/photos/lib/Service/
|
|||
nextcloud/apps/photos/lib/Service/MediaPlaceManager.php
|
||||
nextcloud/apps/photos/lib/Service/ReverseGeoCoderService.php
|
||||
nextcloud/apps/photos/lib/Service/UserConfigService.php
|
||||
nextcloud/apps/photos/package-lock.json
|
||||
nextcloud/apps/photos/package.json
|
||||
nextcloud/apps/photos/postcss.config.js
|
||||
nextcloud/apps/photos/screenshots/
|
||||
nextcloud/apps/photos/screenshots/screenshot1.png
|
||||
|
@ -16770,6 +16962,8 @@ nextcloud/apps/privacy/lib/Settings/PrivacySection.php
|
|||
nextcloud/apps/privacy/lib/Settings/UserDataManifestoSettings.php
|
||||
nextcloud/apps/privacy/lib/Settings/WhereIsYourDataSettings.php
|
||||
nextcloud/apps/privacy/lib/Settings/WhoHasAccessSettings.php
|
||||
nextcloud/apps/privacy/package-lock.json
|
||||
nextcloud/apps/privacy/package.json
|
||||
nextcloud/apps/privacy/templates/
|
||||
nextcloud/apps/privacy/templates/mission.php
|
||||
nextcloud/apps/privacy/templates/user-data-manifesto.php
|
||||
|
@ -16820,6 +17014,8 @@ nextcloud/apps/provisioning_api/l10n/es_EC.js
|
|||
nextcloud/apps/provisioning_api/l10n/es_EC.json
|
||||
nextcloud/apps/provisioning_api/l10n/eu.js
|
||||
nextcloud/apps/provisioning_api/l10n/eu.json
|
||||
nextcloud/apps/provisioning_api/l10n/fa.js
|
||||
nextcloud/apps/provisioning_api/l10n/fa.json
|
||||
nextcloud/apps/provisioning_api/l10n/fr.js
|
||||
nextcloud/apps/provisioning_api/l10n/fr.json
|
||||
nextcloud/apps/provisioning_api/l10n/gl.js
|
||||
|
@ -16895,9 +17091,6 @@ nextcloud/apps/recommendations/appinfo/signature.json
|
|||
nextcloud/apps/recommendations/composer.json
|
||||
nextcloud/apps/recommendations/composer.lock
|
||||
nextcloud/apps/recommendations/js/
|
||||
nextcloud/apps/recommendations/js/files_recommendation-dashboard.js
|
||||
nextcloud/apps/recommendations/js/files_recommendation-dashboard.js.LICENSE.txt
|
||||
nextcloud/apps/recommendations/js/files_recommendation-dashboard.js.map
|
||||
nextcloud/apps/recommendations/js/files_recommendation-main.js
|
||||
nextcloud/apps/recommendations/js/files_recommendation-main.js.LICENSE.txt
|
||||
nextcloud/apps/recommendations/js/files_recommendation-main.js.map
|
||||
|
@ -17025,6 +17218,8 @@ nextcloud/apps/recommendations/lib/Service/RecentlyEditedFilesSource.php
|
|||
nextcloud/apps/recommendations/lib/Service/RecentlySharedFilesSource.php
|
||||
nextcloud/apps/recommendations/lib/Service/RecommendationService.php
|
||||
nextcloud/apps/recommendations/lib/Service/RecommendedFile.php
|
||||
nextcloud/apps/recommendations/package-lock.json
|
||||
nextcloud/apps/recommendations/package.json
|
||||
nextcloud/apps/recommendations/webpack.config.js
|
||||
nextcloud/apps/related_resources/
|
||||
nextcloud/apps/related_resources/.nextcloudignore
|
||||
|
@ -17314,6 +17509,8 @@ nextcloud/apps/related_resources/lib/Tools/Traits/
|
|||
nextcloud/apps/related_resources/lib/Tools/Traits/TArrayTools.php
|
||||
nextcloud/apps/related_resources/lib/Tools/Traits/TDeserialize.php
|
||||
nextcloud/apps/related_resources/lib/Tools/Traits/TStringTools.php
|
||||
nextcloud/apps/related_resources/package-lock.json
|
||||
nextcloud/apps/related_resources/package.json
|
||||
nextcloud/apps/related_resources/vendor/
|
||||
nextcloud/apps/related_resources/vendor/autoload.php
|
||||
nextcloud/apps/related_resources/vendor/composer/
|
||||
|
@ -17455,6 +17652,8 @@ nextcloud/apps/serverinfo/l10n/ko.js
|
|||
nextcloud/apps/serverinfo/l10n/ko.json
|
||||
nextcloud/apps/serverinfo/l10n/lb.js
|
||||
nextcloud/apps/serverinfo/l10n/lb.json
|
||||
nextcloud/apps/serverinfo/l10n/lo.js
|
||||
nextcloud/apps/serverinfo/l10n/lo.json
|
||||
nextcloud/apps/serverinfo/l10n/lt_LT.js
|
||||
nextcloud/apps/serverinfo/l10n/lt_LT.json
|
||||
nextcloud/apps/serverinfo/l10n/lv.js
|
||||
|
@ -17576,6 +17775,7 @@ nextcloud/apps/settings/data/
|
|||
nextcloud/apps/settings/data/Reasons to use Nextcloud.pdf
|
||||
nextcloud/apps/settings/img/
|
||||
nextcloud/apps/settings/img/admin.svg
|
||||
nextcloud/apps/settings/img/ai.svg
|
||||
nextcloud/apps/settings/img/apps.svg
|
||||
nextcloud/apps/settings/img/change.svg
|
||||
nextcloud/apps/settings/img/help.svg
|
||||
|
@ -17763,6 +17963,7 @@ nextcloud/apps/settings/lib/AppInfo/Application.php
|
|||
nextcloud/apps/settings/lib/BackgroundJobs/
|
||||
nextcloud/apps/settings/lib/BackgroundJobs/VerifyUserData.php
|
||||
nextcloud/apps/settings/lib/Controller/
|
||||
nextcloud/apps/settings/lib/Controller/AISettingsController.php
|
||||
nextcloud/apps/settings/lib/Controller/AdminSettingsController.php
|
||||
nextcloud/apps/settings/lib/Controller/AppSettingsController.php
|
||||
nextcloud/apps/settings/lib/Controller/AuthSettingsController.php
|
||||
|
@ -17796,6 +17997,7 @@ nextcloud/apps/settings/lib/Search/SectionSearch.php
|
|||
nextcloud/apps/settings/lib/Sections/
|
||||
nextcloud/apps/settings/lib/Sections/Admin/
|
||||
nextcloud/apps/settings/lib/Sections/Admin/Additional.php
|
||||
nextcloud/apps/settings/lib/Sections/Admin/ArtificialIntelligence.php
|
||||
nextcloud/apps/settings/lib/Sections/Admin/Delegation.php
|
||||
nextcloud/apps/settings/lib/Sections/Admin/Groupware.php
|
||||
nextcloud/apps/settings/lib/Sections/Admin/Overview.php
|
||||
|
@ -17814,6 +18016,7 @@ nextcloud/apps/settings/lib/Service/NotFoundException.php
|
|||
nextcloud/apps/settings/lib/Service/ServiceException.php
|
||||
nextcloud/apps/settings/lib/Settings/
|
||||
nextcloud/apps/settings/lib/Settings/Admin/
|
||||
nextcloud/apps/settings/lib/Settings/Admin/ArtificialIntelligence.php
|
||||
nextcloud/apps/settings/lib/Settings/Admin/Delegation.php
|
||||
nextcloud/apps/settings/lib/Settings/Admin/Mail.php
|
||||
nextcloud/apps/settings/lib/Settings/Admin/Overview.php
|
||||
|
@ -17833,6 +18036,7 @@ nextcloud/apps/settings/lib/SetupChecks/
|
|||
nextcloud/apps/settings/lib/SetupChecks/CheckUserCertificates.php
|
||||
nextcloud/apps/settings/lib/SetupChecks/LdapInvalidUuids.php
|
||||
nextcloud/apps/settings/lib/SetupChecks/LegacySSEKeyFormat.php
|
||||
nextcloud/apps/settings/lib/SetupChecks/NeedsSystemAddressBookSync.php
|
||||
nextcloud/apps/settings/lib/SetupChecks/PhpDefaultCharset.php
|
||||
nextcloud/apps/settings/lib/SetupChecks/PhpOutputBuffering.php
|
||||
nextcloud/apps/settings/lib/SetupChecks/SupportedDatabase.php
|
||||
|
@ -17850,6 +18054,7 @@ nextcloud/apps/settings/templates/settings-vue.php
|
|||
nextcloud/apps/settings/templates/settings/additional.php
|
||||
nextcloud/apps/settings/templates/settings/admin/
|
||||
nextcloud/apps/settings/templates/settings/admin/additional-mail.php
|
||||
nextcloud/apps/settings/templates/settings/admin/ai.php
|
||||
nextcloud/apps/settings/templates/settings/admin/delegation.php
|
||||
nextcloud/apps/settings/templates/settings/admin/overview.php
|
||||
nextcloud/apps/settings/templates/settings/admin/security.php
|
||||
|
@ -18208,6 +18413,8 @@ nextcloud/apps/support/lib/Settings/Admin.php
|
|||
nextcloud/apps/support/lib/Settings/Section.php
|
||||
nextcloud/apps/support/lib/Subscription/
|
||||
nextcloud/apps/support/lib/Subscription/SubscriptionAdapter.php
|
||||
nextcloud/apps/support/package-lock.json
|
||||
nextcloud/apps/support/package.json
|
||||
nextcloud/apps/support/resources/
|
||||
nextcloud/apps/support/resources/Why the Nextcloud Subscription.pdf
|
||||
nextcloud/apps/support/templates/
|
||||
|
@ -18286,6 +18493,8 @@ nextcloud/apps/survey_client/l10n/et_EE.js
|
|||
nextcloud/apps/survey_client/l10n/et_EE.json
|
||||
nextcloud/apps/survey_client/l10n/eu.js
|
||||
nextcloud/apps/survey_client/l10n/eu.json
|
||||
nextcloud/apps/survey_client/l10n/fa.js
|
||||
nextcloud/apps/survey_client/l10n/fa.json
|
||||
nextcloud/apps/survey_client/l10n/fi.js
|
||||
nextcloud/apps/survey_client/l10n/fi.json
|
||||
nextcloud/apps/survey_client/l10n/fr.js
|
||||
|
@ -18571,6 +18780,8 @@ nextcloud/apps/suspicious_login/lib/Task/
|
|||
nextcloud/apps/suspicious_login/lib/Task/TrainTask.php
|
||||
nextcloud/apps/suspicious_login/lib/Util/
|
||||
nextcloud/apps/suspicious_login/lib/Util/AddressClassifier.php
|
||||
nextcloud/apps/suspicious_login/package-lock.json
|
||||
nextcloud/apps/suspicious_login/package.json
|
||||
nextcloud/apps/suspicious_login/screenshots/
|
||||
nextcloud/apps/suspicious_login/screenshots/admin_settings.png
|
||||
nextcloud/apps/suspicious_login/screenshots/notification_android.png
|
||||
|
@ -20564,6 +20775,7 @@ nextcloud/apps/text/css/
|
|||
nextcloud/apps/text/css/print.scss
|
||||
nextcloud/apps/text/css/prosemirror.scss
|
||||
nextcloud/apps/text/css/style.scss
|
||||
nextcloud/apps/text/css/variables.scss
|
||||
nextcloud/apps/text/img/
|
||||
nextcloud/apps/text/img/app-dark.svg
|
||||
nextcloud/apps/text/img/app.png
|
||||
|
@ -20576,6 +20788,7 @@ nextcloud/apps/text/img/screenshots/screenshot2.png
|
|||
nextcloud/apps/text/img/screenshots/screenshot3.gif
|
||||
nextcloud/apps/text/index.html
|
||||
nextcloud/apps/text/js/
|
||||
nextcloud/apps/text/js/_ed1b-_d17e.js
|
||||
nextcloud/apps/text/js/editor-collab.js
|
||||
nextcloud/apps/text/js/editor-collab.js.map
|
||||
nextcloud/apps/text/js/editor-guest.js
|
||||
|
@ -21375,8 +21588,6 @@ nextcloud/apps/text/js/vendors.js.map
|
|||
nextcloud/apps/text/l10n/
|
||||
nextcloud/apps/text/l10n/af.js
|
||||
nextcloud/apps/text/l10n/af.json
|
||||
nextcloud/apps/text/l10n/an.js
|
||||
nextcloud/apps/text/l10n/an.json
|
||||
nextcloud/apps/text/l10n/ar.js
|
||||
nextcloud/apps/text/l10n/ar.json
|
||||
nextcloud/apps/text/l10n/ast.js
|
||||
|
@ -21481,12 +21692,12 @@ nextcloud/apps/text/l10n/ka_GE.js
|
|||
nextcloud/apps/text/l10n/ka_GE.json
|
||||
nextcloud/apps/text/l10n/kab.js
|
||||
nextcloud/apps/text/l10n/kab.json
|
||||
nextcloud/apps/text/l10n/km.js
|
||||
nextcloud/apps/text/l10n/km.json
|
||||
nextcloud/apps/text/l10n/ko.js
|
||||
nextcloud/apps/text/l10n/ko.json
|
||||
nextcloud/apps/text/l10n/lb.js
|
||||
nextcloud/apps/text/l10n/lb.json
|
||||
nextcloud/apps/text/l10n/lo.js
|
||||
nextcloud/apps/text/l10n/lo.json
|
||||
nextcloud/apps/text/l10n/lt_LT.js
|
||||
nextcloud/apps/text/l10n/lt_LT.json
|
||||
nextcloud/apps/text/l10n/lv.js
|
||||
|
@ -21495,8 +21706,6 @@ nextcloud/apps/text/l10n/mk.js
|
|||
nextcloud/apps/text/l10n/mk.json
|
||||
nextcloud/apps/text/l10n/mn.js
|
||||
nextcloud/apps/text/l10n/mn.json
|
||||
nextcloud/apps/text/l10n/ms_MY.js
|
||||
nextcloud/apps/text/l10n/ms_MY.json
|
||||
nextcloud/apps/text/l10n/nb.js
|
||||
nextcloud/apps/text/l10n/nb.json
|
||||
nextcloud/apps/text/l10n/nl.js
|
||||
|
@ -21531,8 +21740,6 @@ nextcloud/apps/text/l10n/sr@latin.js
|
|||
nextcloud/apps/text/l10n/sr@latin.json
|
||||
nextcloud/apps/text/l10n/sv.js
|
||||
nextcloud/apps/text/l10n/sv.json
|
||||
nextcloud/apps/text/l10n/ta.js
|
||||
nextcloud/apps/text/l10n/ta.json
|
||||
nextcloud/apps/text/l10n/th.js
|
||||
nextcloud/apps/text/l10n/th.json
|
||||
nextcloud/apps/text/l10n/tr.js
|
||||
|
@ -21583,6 +21790,7 @@ nextcloud/apps/text/lib/Exception/UploadException.php
|
|||
nextcloud/apps/text/lib/Exception/VersionMismatchException.php
|
||||
nextcloud/apps/text/lib/Listeners/
|
||||
nextcloud/apps/text/lib/Listeners/AddMissingIndicesListener.php
|
||||
nextcloud/apps/text/lib/Listeners/BeforeAssistantNotificationListener.php
|
||||
nextcloud/apps/text/lib/Listeners/BeforeNodeDeletedListener.php
|
||||
nextcloud/apps/text/lib/Listeners/BeforeNodeRenamedListener.php
|
||||
nextcloud/apps/text/lib/Listeners/FilesLoadAdditionalScriptsListener.php
|
||||
|
@ -21612,6 +21820,8 @@ nextcloud/apps/text/lib/Service/NotificationService.php
|
|||
nextcloud/apps/text/lib/Service/SessionService.php
|
||||
nextcloud/apps/text/lib/Service/WorkspaceService.php
|
||||
nextcloud/apps/text/lib/TextFile.php
|
||||
nextcloud/apps/text/package-lock.json
|
||||
nextcloud/apps/text/package.json
|
||||
nextcloud/apps/text/templates/
|
||||
nextcloud/apps/text/templates/main.php
|
||||
nextcloud/apps/theming/
|
||||
|
@ -22283,6 +22493,8 @@ nextcloud/apps/twofactor_totp/lib/Service/ITotp.php
|
|||
nextcloud/apps/twofactor_totp/lib/Service/Totp.php
|
||||
nextcloud/apps/twofactor_totp/lib/Settings/
|
||||
nextcloud/apps/twofactor_totp/lib/Settings/Personal.php
|
||||
nextcloud/apps/twofactor_totp/package-lock.json
|
||||
nextcloud/apps/twofactor_totp/package.json
|
||||
nextcloud/apps/twofactor_totp/screenshots/
|
||||
nextcloud/apps/twofactor_totp/screenshots/enter_challenge.png
|
||||
nextcloud/apps/twofactor_totp/screenshots/settings.png
|
||||
|
@ -23302,6 +23514,8 @@ nextcloud/apps/viewer/lib/Event/
|
|||
nextcloud/apps/viewer/lib/Event/LoadViewer.php
|
||||
nextcloud/apps/viewer/lib/Listener/
|
||||
nextcloud/apps/viewer/lib/Listener/LoadViewerScript.php
|
||||
nextcloud/apps/viewer/package-lock.json
|
||||
nextcloud/apps/viewer/package.json
|
||||
nextcloud/apps/viewer/test.txt
|
||||
nextcloud/apps/viewer/tsconfig.json
|
||||
nextcloud/apps/viewer/webpack.config.ts
|
||||
|
@ -23383,6 +23597,8 @@ nextcloud/apps/weather_status/l10n/et_EE.js
|
|||
nextcloud/apps/weather_status/l10n/et_EE.json
|
||||
nextcloud/apps/weather_status/l10n/eu.js
|
||||
nextcloud/apps/weather_status/l10n/eu.json
|
||||
nextcloud/apps/weather_status/l10n/fa.js
|
||||
nextcloud/apps/weather_status/l10n/fa.json
|
||||
nextcloud/apps/weather_status/l10n/fi.js
|
||||
nextcloud/apps/weather_status/l10n/fi.json
|
||||
nextcloud/apps/weather_status/l10n/fr.js
|
||||
|
@ -23654,6 +23870,8 @@ nextcloud/apps/workflowengine/lib/Settings/Personal.php
|
|||
nextcloud/apps/workflowengine/lib/Settings/Section.php
|
||||
nextcloud/apps/workflowengine/templates/
|
||||
nextcloud/apps/workflowengine/templates/settings.php
|
||||
nextcloud/composer.json
|
||||
nextcloud/composer.lock
|
||||
@mode 0750
|
||||
@owner www
|
||||
@group www
|
||||
|
@ -23768,10 +23986,11 @@ nextcloud/core/Command/Preview/Generate.php
|
|||
nextcloud/core/Command/Preview/Repair.php
|
||||
nextcloud/core/Command/Preview/ResetRenderedTexts.php
|
||||
nextcloud/core/Command/Security/
|
||||
nextcloud/core/Command/Security/BruteforceAttempts.php
|
||||
nextcloud/core/Command/Security/BruteforceResetAttempts.php
|
||||
nextcloud/core/Command/Security/ImportCertificate.php
|
||||
nextcloud/core/Command/Security/ListCertificates.php
|
||||
nextcloud/core/Command/Security/RemoveCertificate.php
|
||||
nextcloud/core/Command/Security/ResetBruteforceAttempts.php
|
||||
nextcloud/core/Command/Status.php
|
||||
nextcloud/core/Command/SystemTag/
|
||||
nextcloud/core/Command/SystemTag/Add.php
|
||||
|
@ -23825,6 +24044,7 @@ nextcloud/core/Controller/ReferenceApiController.php
|
|||
nextcloud/core/Controller/ReferenceController.php
|
||||
nextcloud/core/Controller/SearchController.php
|
||||
nextcloud/core/Controller/SetupController.php
|
||||
nextcloud/core/Controller/TextProcessingApiController.php
|
||||
nextcloud/core/Controller/TranslationApiController.php
|
||||
nextcloud/core/Controller/TwoFactorChallengeController.php
|
||||
nextcloud/core/Controller/UnifiedSearchController.php
|
||||
|
@ -23910,6 +24130,9 @@ nextcloud/core/Migrations/Version25000Date20221007010957.php
|
|||
nextcloud/core/Migrations/Version27000Date20220613163520.php
|
||||
nextcloud/core/Migrations/Version27000Date20230309104325.php
|
||||
nextcloud/core/Migrations/Version27000Date20230309104802.php
|
||||
nextcloud/core/Migrations/Version28000Date20230616104802.php
|
||||
nextcloud/core/Migrations/Version28000Date20230728104802.php
|
||||
nextcloud/core/Migrations/Version28000Date20230803221055.php
|
||||
nextcloud/core/Notification/
|
||||
nextcloud/core/Notification/CoreNotifier.php
|
||||
nextcloud/core/Service/
|
||||
|
@ -24494,6 +24717,7 @@ nextcloud/core/doc/user/_images/change-name.png
|
|||
nextcloud/core/doc/user/_images/chat-message-menu.png
|
||||
nextcloud/core/doc/user/_images/chat-room-settings.png
|
||||
nextcloud/core/doc/user/_images/chat-with-one-user.png
|
||||
nextcloud/core/doc/user/_images/circle.png
|
||||
nextcloud/core/doc/user/_images/command-help.png
|
||||
nextcloud/core/doc/user/_images/contact_bottombar.png
|
||||
nextcloud/core/doc/user/_images/contact_manageaddressbook.png
|
||||
|
@ -24560,6 +24784,7 @@ nextcloud/core/doc/user/_images/mail-composer-indicator.png
|
|||
nextcloud/core/doc/user/_images/mail-minimize-composer.png
|
||||
nextcloud/core/doc/user/_images/mail.png
|
||||
nextcloud/core/doc/user/_images/mail_move-message-to-junk-folder.png
|
||||
nextcloud/core/doc/user/_images/mail_trash_retention_settings.png
|
||||
nextcloud/core/doc/user/_images/matterbridge-settings.png
|
||||
nextcloud/core/doc/user/_images/multi_sharing.png
|
||||
nextcloud/core/doc/user/_images/new-mail-account.png
|
||||
|
@ -25254,6 +25479,7 @@ nextcloud/core/vendor/zxcvbn/dist/
|
|||
nextcloud/core/vendor/zxcvbn/dist/zxcvbn.js
|
||||
nextcloud/cron.php
|
||||
nextcloud/dist/
|
||||
nextcloud/dist/6799-6799.js
|
||||
nextcloud/dist/comments-comments-app.js
|
||||
nextcloud/dist/comments-comments-app.js.LICENSE.txt
|
||||
nextcloud/dist/comments-comments-app.js.map
|
||||
|
@ -25327,6 +25553,9 @@ nextcloud/dist/files-reference-files.js.map
|
|||
nextcloud/dist/files-sidebar.js
|
||||
nextcloud/dist/files-sidebar.js.LICENSE.txt
|
||||
nextcloud/dist/files-sidebar.js.map
|
||||
nextcloud/dist/files_reminders-main.js
|
||||
nextcloud/dist/files_reminders-main.js.LICENSE.txt
|
||||
nextcloud/dist/files_reminders-main.js.map
|
||||
nextcloud/dist/files_sharing-additionalScripts.js
|
||||
nextcloud/dist/files_sharing-additionalScripts.js.LICENSE.txt
|
||||
nextcloud/dist/files_sharing-additionalScripts.js.map
|
||||
|
@ -25364,6 +25593,9 @@ nextcloud/dist/settings-legacy-admin.js.map
|
|||
nextcloud/dist/settings-users-8351.js
|
||||
nextcloud/dist/settings-users-8351.js.LICENSE.txt
|
||||
nextcloud/dist/settings-users-8351.js.map
|
||||
nextcloud/dist/settings-vue-settings-admin-ai.js
|
||||
nextcloud/dist/settings-vue-settings-admin-ai.js.LICENSE.txt
|
||||
nextcloud/dist/settings-vue-settings-admin-ai.js.map
|
||||
nextcloud/dist/settings-vue-settings-admin-basic-settings.js
|
||||
nextcloud/dist/settings-vue-settings-admin-basic-settings.js.LICENSE.txt
|
||||
nextcloud/dist/settings-vue-settings-admin-basic-settings.js.map
|
||||
|
@ -25412,9 +25644,6 @@ nextcloud/dist/updatenotification-updatenotification.js.map
|
|||
nextcloud/dist/user-status-modal-8299.js
|
||||
nextcloud/dist/user-status-modal-8299.js.LICENSE.txt
|
||||
nextcloud/dist/user-status-modal-8299.js.map
|
||||
nextcloud/dist/user_status-dashboard.js
|
||||
nextcloud/dist/user_status-dashboard.js.LICENSE.txt
|
||||
nextcloud/dist/user_status-dashboard.js.map
|
||||
nextcloud/dist/user_status-menu.js
|
||||
nextcloud/dist/user_status-menu.js.LICENSE.txt
|
||||
nextcloud/dist/user_status-menu.js.map
|
||||
|
@ -26178,6 +26407,7 @@ nextcloud/lib/private/Http/Client/
|
|||
nextcloud/lib/private/Http/Client/Client.php
|
||||
nextcloud/lib/private/Http/Client/ClientService.php
|
||||
nextcloud/lib/private/Http/Client/DnsPinMiddleware.php
|
||||
nextcloud/lib/private/Http/Client/GuzzlePromiseAdapter.php
|
||||
nextcloud/lib/private/Http/Client/NegativeDnsCache.php
|
||||
nextcloud/lib/private/Http/Client/Response.php
|
||||
nextcloud/lib/private/Http/CookieHelper.php
|
||||
|
@ -26358,6 +26588,7 @@ nextcloud/lib/private/Repair/
|
|||
nextcloud/lib/private/Repair.php
|
||||
nextcloud/lib/private/Repair/AddBruteForceCleanupJob.php
|
||||
nextcloud/lib/private/Repair/AddCleanupUpdaterBackupsJob.php
|
||||
nextcloud/lib/private/Repair/AddRemoveOldTasksBackgroundJob.php
|
||||
nextcloud/lib/private/Repair/CleanTags.php
|
||||
nextcloud/lib/private/Repair/CleanUpAbandonedApps.php
|
||||
nextcloud/lib/private/Repair/ClearFrontendCaches.php
|
||||
|
@ -26433,6 +26664,10 @@ nextcloud/lib/private/Search/SearchComposer.php
|
|||
nextcloud/lib/private/Search/SearchQuery.php
|
||||
nextcloud/lib/private/Security/
|
||||
nextcloud/lib/private/Security/Bruteforce/
|
||||
nextcloud/lib/private/Security/Bruteforce/Backend/
|
||||
nextcloud/lib/private/Security/Bruteforce/Backend/DatabaseBackend.php
|
||||
nextcloud/lib/private/Security/Bruteforce/Backend/IBackend.php
|
||||
nextcloud/lib/private/Security/Bruteforce/Backend/MemoryCacheBackend.php
|
||||
nextcloud/lib/private/Security/Bruteforce/Capabilities.php
|
||||
nextcloud/lib/private/Security/Bruteforce/CleanupJob.php
|
||||
nextcloud/lib/private/Security/Bruteforce/Throttler.php
|
||||
|
@ -26513,6 +26748,7 @@ nextcloud/lib/private/Share20/ProviderFactory.php
|
|||
nextcloud/lib/private/Share20/PublicShareTemplateFactory.php
|
||||
nextcloud/lib/private/Share20/Share.php
|
||||
nextcloud/lib/private/Share20/ShareAttributes.php
|
||||
nextcloud/lib/private/Share20/ShareDisableChecker.php
|
||||
nextcloud/lib/private/Share20/ShareHelper.php
|
||||
nextcloud/lib/private/Share20/UserRemovedListener.php
|
||||
nextcloud/lib/private/SpeechToText/
|
||||
|
@ -26553,6 +26789,13 @@ nextcloud/lib/private/Template/ResourceLocator.php
|
|||
nextcloud/lib/private/Template/ResourceNotFoundException.php
|
||||
nextcloud/lib/private/Template/TemplateFileLocator.php
|
||||
nextcloud/lib/private/TemplateLayout.php
|
||||
nextcloud/lib/private/TextProcessing/
|
||||
nextcloud/lib/private/TextProcessing/Db/
|
||||
nextcloud/lib/private/TextProcessing/Db/Task.php
|
||||
nextcloud/lib/private/TextProcessing/Db/TaskMapper.php
|
||||
nextcloud/lib/private/TextProcessing/Manager.php
|
||||
nextcloud/lib/private/TextProcessing/RemoveOldTasksBackgroundJob.php
|
||||
nextcloud/lib/private/TextProcessing/TaskBackgroundJob.php
|
||||
nextcloud/lib/private/Translation/
|
||||
nextcloud/lib/private/Translation/TranslationManager.php
|
||||
nextcloud/lib/private/URLGenerator.php
|
||||
|
@ -26815,6 +27058,9 @@ nextcloud/lib/public/Comments/ICommentsManagerFactory.php
|
|||
nextcloud/lib/public/Comments/IllegalIDChangeException.php
|
||||
nextcloud/lib/public/Comments/MessageTooLongException.php
|
||||
nextcloud/lib/public/Comments/NotFoundException.php
|
||||
nextcloud/lib/public/Common/
|
||||
nextcloud/lib/public/Common/Exception/
|
||||
nextcloud/lib/public/Common/Exception/NotFoundException.php
|
||||
nextcloud/lib/public/Config/
|
||||
nextcloud/lib/public/Config/BeforePreferenceDeletedEvent.php
|
||||
nextcloud/lib/public/Config/BeforePreferenceSetEvent.php
|
||||
|
@ -26850,15 +27096,18 @@ nextcloud/lib/public/DB/QueryBuilder/IQueryFunction.php
|
|||
nextcloud/lib/public/DB/Types.php
|
||||
nextcloud/lib/public/Dashboard/
|
||||
nextcloud/lib/public/Dashboard/IAPIWidget.php
|
||||
nextcloud/lib/public/Dashboard/IAPIWidgetV2.php
|
||||
nextcloud/lib/public/Dashboard/IButtonWidget.php
|
||||
nextcloud/lib/public/Dashboard/IConditionalWidget.php
|
||||
nextcloud/lib/public/Dashboard/IIconWidget.php
|
||||
nextcloud/lib/public/Dashboard/IManager.php
|
||||
nextcloud/lib/public/Dashboard/IOptionWidget.php
|
||||
nextcloud/lib/public/Dashboard/IReloadableWidget.php
|
||||
nextcloud/lib/public/Dashboard/IWidget.php
|
||||
nextcloud/lib/public/Dashboard/Model/
|
||||
nextcloud/lib/public/Dashboard/Model/WidgetButton.php
|
||||
nextcloud/lib/public/Dashboard/Model/WidgetItem.php
|
||||
nextcloud/lib/public/Dashboard/Model/WidgetItems.php
|
||||
nextcloud/lib/public/Dashboard/Model/WidgetOptions.php
|
||||
nextcloud/lib/public/Dashboard/RegisterWidgetEvent.php
|
||||
nextcloud/lib/public/DataCollector/
|
||||
|
@ -26936,6 +27185,7 @@ nextcloud/lib/public/Files/Config/IMountProvider.php
|
|||
nextcloud/lib/public/Files/Config/IMountProviderCollection.php
|
||||
nextcloud/lib/public/Files/Config/IRootMountProvider.php
|
||||
nextcloud/lib/public/Files/Config/IUserMountCache.php
|
||||
nextcloud/lib/public/Files/ConnectionLostException.php
|
||||
nextcloud/lib/public/Files/DavUtil.php
|
||||
nextcloud/lib/public/Files/EmptyFileNameException.php
|
||||
nextcloud/lib/public/Files/EntityTooLargeException.php
|
||||
|
@ -27102,6 +27352,7 @@ nextcloud/lib/public/Http/
|
|||
nextcloud/lib/public/Http/Client/
|
||||
nextcloud/lib/public/Http/Client/IClient.php
|
||||
nextcloud/lib/public/Http/Client/IClientService.php
|
||||
nextcloud/lib/public/Http/Client/IPromise.php
|
||||
nextcloud/lib/public/Http/Client/IResponse.php
|
||||
nextcloud/lib/public/Http/Client/LocalServerException.php
|
||||
nextcloud/lib/public/Http/WellKnown/
|
||||
|
@ -27331,6 +27582,19 @@ nextcloud/lib/public/Talk/IConversation.php
|
|||
nextcloud/lib/public/Talk/IConversationOptions.php
|
||||
nextcloud/lib/public/Talk/ITalkBackend.php
|
||||
nextcloud/lib/public/Template.php
|
||||
nextcloud/lib/public/TextProcessing/
|
||||
nextcloud/lib/public/TextProcessing/Events/
|
||||
nextcloud/lib/public/TextProcessing/Events/AbstractTextProcessingEvent.php
|
||||
nextcloud/lib/public/TextProcessing/Events/TaskFailedEvent.php
|
||||
nextcloud/lib/public/TextProcessing/Events/TaskSuccessfulEvent.php
|
||||
nextcloud/lib/public/TextProcessing/FreePromptTaskType.php
|
||||
nextcloud/lib/public/TextProcessing/HeadlineTaskType.php
|
||||
nextcloud/lib/public/TextProcessing/IManager.php
|
||||
nextcloud/lib/public/TextProcessing/IProvider.php
|
||||
nextcloud/lib/public/TextProcessing/ITaskType.php
|
||||
nextcloud/lib/public/TextProcessing/SummaryTaskType.php
|
||||
nextcloud/lib/public/TextProcessing/Task.php
|
||||
nextcloud/lib/public/TextProcessing/TopicsTaskType.php
|
||||
nextcloud/lib/public/Translation/
|
||||
nextcloud/lib/public/Translation/CouldNotTranslateException.php
|
||||
nextcloud/lib/public/Translation/IDetectLanguageProvider.php
|
||||
|
@ -27416,6 +27680,8 @@ nextcloud/ocs-provider/index.php
|
|||
nextcloud/ocs/providers.php
|
||||
nextcloud/ocs/v1.php
|
||||
nextcloud/ocs/v2.php
|
||||
nextcloud/package-lock.json
|
||||
nextcloud/package.json
|
||||
nextcloud/public.php
|
||||
nextcloud/remote.php
|
||||
nextcloud/resources/
|
||||
|
|
|
@ -2,7 +2,7 @@ COMMENT = CLI for interacting with Mastodon/fediverse instances
|
|||
|
||||
MODPY_EGG_VERSION = 0.3.8.1
|
||||
DISTNAME = tootstream-${MODPY_EGG_VERSION}
|
||||
REVISION = 3
|
||||
REVISION = 4
|
||||
|
||||
CATEGORIES = www
|
||||
|
||||
|
@ -20,7 +20,7 @@ MODPY_PI = Yes
|
|||
RUN_DEPENDS = www/py-mastodon.py${MODPY_FLAVOR} \
|
||||
devel/py-click${MODPY_FLAVOR} \
|
||||
devel/py-dateutil${MODPY_FLAVOR} \
|
||||
textproc/py-colored${MODPY_FLAVOR} \
|
||||
textproc/py-colored${MODPY_FLAVOR}>=2.0 \
|
||||
textproc/py-emoji${MODPY_FLAVOR} \
|
||||
textproc/py-humanize${MODPY_FLAVOR}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
COMMENT= wiki and bug tracking system for software projects
|
||||
|
||||
MODPY_EGG_VERSION=1.5.4
|
||||
#PORTROACH= limitw:1,even
|
||||
MODPY_EGG_VERSION=1.6
|
||||
PORTROACH= limitw:1,even
|
||||
DISTNAME= Trac-${MODPY_EGG_VERSION:S/post/.post/}
|
||||
PKGNAME= trac-${MODPY_EGG_VERSION:S/post/pl/}
|
||||
CATEGORIES= www devel
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (Trac-1.5.4.tar.gz) = WfxFO09nAPfnmRfxmQqiBjTTz4XbLTiIERQzcluXlug=
|
||||
SIZE (Trac-1.5.4.tar.gz) = 6161372
|
||||
SHA256 (Trac-1.6.tar.gz) = Ydc8YfZw1o/8NGgp0ksvHSBQqlYapxy5ji+0OZLCcwQ=
|
||||
SIZE (Trac-1.6.tar.gz) = 6383061
|
||||
|
|
|
@ -194,6 +194,8 @@ lib/python${MODPY_VERSION}/site-packages/trac/htdocs/js/jquery.js
|
|||
lib/python${MODPY_VERSION}/site-packages/trac/htdocs/js/keyboard_nav.js
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/htdocs/js/log_graph.js
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/htdocs/js/messages/
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/htdocs/js/messages/ar.js
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/htdocs/js/messages/bs.js
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/htdocs/js/messages/ca.js
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/htdocs/js/messages/cs.js
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/htdocs/js/messages/da.js
|
||||
|
@ -224,6 +226,7 @@ lib/python${MODPY_VERSION}/site-packages/trac/htdocs/js/messages/pt_BR.js
|
|||
lib/python${MODPY_VERSION}/site-packages/trac/htdocs/js/messages/ro.js
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/htdocs/js/messages/ru.js
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/htdocs/js/messages/sl.js
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/htdocs/js/messages/sq.js
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/htdocs/js/messages/sv.js
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/htdocs/js/messages/tr.js
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/htdocs/js/messages/uk.js
|
||||
|
@ -255,6 +258,14 @@ lib/python${MODPY_VERSION}/site-packages/trac/htdocs/vgradient.png
|
|||
lib/python${MODPY_VERSION}/site-packages/trac/htdocs/wiki.png
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/loader.py
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/ar/
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/ar/LC_MESSAGES/
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/ar/LC_MESSAGES/messages.mo
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/ar/LC_MESSAGES/tracini.mo
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/bs/
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/bs/LC_MESSAGES/
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/bs/LC_MESSAGES/messages.mo
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/bs/LC_MESSAGES/tracini.mo
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/ca/
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/ca/LC_MESSAGES/
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/ca/LC_MESSAGES/messages.mo
|
||||
|
@ -375,6 +386,10 @@ lib/python${MODPY_VERSION}/site-packages/trac/locale/sl/
|
|||
lib/python${MODPY_VERSION}/site-packages/trac/locale/sl/LC_MESSAGES/
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/sl/LC_MESSAGES/messages.mo
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/sl/LC_MESSAGES/tracini.mo
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/sq/
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/sq/LC_MESSAGES/
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/sq/LC_MESSAGES/messages.mo
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/sq/LC_MESSAGES/tracini.mo
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/sv/
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/sv/LC_MESSAGES/
|
||||
lib/python${MODPY_VERSION}/site-packages/trac/locale/sv/LC_MESSAGES/messages.mo
|
||||
|
|
|
@ -7,7 +7,7 @@ DPB_PROPERTIES= parallel parallel2
|
|||
|
||||
COMMENT= Chromium browser sans integration with Google
|
||||
|
||||
V= 117.0.5938.88
|
||||
V= 117.0.5938.92
|
||||
UGV= ${V}-1
|
||||
|
||||
DISTNAME= ungoogled-chromium-${V}
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
SHA256 (chromium-117.0.5938.88-testdata.tar.xz) = xSVpl2R7ywWkuCnZnp78+n4bxGtEqf7OtnqRhW7VQIU=
|
||||
SHA256 (chromium-117.0.5938.88.tar.xz) = RpHYADnkFV0aPEZ27mih5SbdrWGjz1n2XVlqGi1WyQY=
|
||||
SHA256 (chromium-117.0.5938.92-testdata.tar.xz) = tOUypaa00tFwNXrSz+lRAqOz7mm1NaRt+a7TpkxwBEQ=
|
||||
SHA256 (chromium-117.0.5938.92.tar.xz) = ZcpJGSeQJVfK/DhMh5tWfDcosG/I6gxGxF4vDOVDNCw=
|
||||
SHA256 (libudev-openbsd-20221108-c3330efd.tar.gz) = BBKUTWeCkarFwKZQ+eg9DfekIMr5xi2G4Lce0C43pnc=
|
||||
SHA256 (test_fonts-336e775eec536b2d785cc80eff6ac39051931286.tar.gz) = osopYtr0gqj5QxY1QeHHO6SyaU+rzSUQmB8ttO2kk8g=
|
||||
SHA256 (ungoogled-chromium-117.0.5938.88-1.tar.gz) = l9Z/R4NwJTc1XN/KrWcCRBMQJHjsWkMbLVG0VOi66jM=
|
||||
SIZE (chromium-117.0.5938.88-testdata.tar.xz) = 269473360
|
||||
SIZE (chromium-117.0.5938.88.tar.xz) = 3131921384
|
||||
SHA256 (ungoogled-chromium-117.0.5938.92-1.tar.gz) = 4t7yEmi6N55cujcJI5+c5Xt6pPxOVHCTclKShHk9ScI=
|
||||
SIZE (chromium-117.0.5938.92-testdata.tar.xz) = 269661528
|
||||
SIZE (chromium-117.0.5938.92.tar.xz) = 3139036620
|
||||
SIZE (libudev-openbsd-20221108-c3330efd.tar.gz) = 32757
|
||||
SIZE (test_fonts-336e775eec536b2d785cc80eff6ac39051931286.tar.gz) = 32624734
|
||||
SIZE (ungoogled-chromium-117.0.5938.88-1.tar.gz) = 651903
|
||||
SIZE (ungoogled-chromium-117.0.5938.92-1.tar.gz) = 651900
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
COMMENT = CLI program to download videos from YouTube and other sites
|
||||
|
||||
VERSION = 2023.07.06
|
||||
VERSION = 2023.09.24
|
||||
MODPY_EGG_VERSION = ${VERSION:S/.0/./g}
|
||||
|
||||
DISTNAME = yt-dlp-${VERSION}
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (yt-dlp-2023.07.06.tar.gz) = bSEVuEtsEYZ/ks9MI3BbU2v6C6nVOLGIX1LaZ1b4yYA=
|
||||
SIZE (yt-dlp-2023.07.06.tar.gz) = 5362006
|
||||
SHA256 (yt-dlp-2023.09.24.tar.gz) = aJqqtEh2Op77M55gg0bUKqPU93Yoj8H08iMUKsI6Wr8=
|
||||
SIZE (yt-dlp-2023.09.24.tar.gz) = 5494731
|
||||
|
|
|
@ -70,12 +70,15 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/compat/${MODPY_PYCACHE}imghdr.${
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/compat/${MODPY_PYCACHE}imghdr.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/compat/${MODPY_PYCACHE}shutil.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/compat/${MODPY_PYCACHE}shutil.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/compat/${MODPY_PYCACHE}types.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/compat/${MODPY_PYCACHE}types.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/compat/_deprecated.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/compat/_legacy.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/compat/compat_utils.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/compat/functools.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/compat/imghdr.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/compat/shutil.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/compat/types.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/compat/urllib/
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/compat/urllib/__init__.py
|
||||
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/yt_dlp/compat/urllib/${MODPY_PYCACHE}/
|
||||
|
@ -216,8 +219,8 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}anchor
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}anchorfm.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}angel.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}angel.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}ant1newsgr.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}ant1newsgr.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}antenna.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}antenna.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}anvato.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}anvato.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}aol.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -244,8 +247,6 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}arnes.
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}arnes.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}arte.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}arte.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}asiancrush.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}asiancrush.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}atresplayer.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}atresplayer.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}atscaleconf.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -268,6 +269,8 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}awaan.
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}awaan.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}aws.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}aws.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}axs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}axs.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}azmedien.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}azmedien.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}baidu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -352,6 +355,8 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}breitb
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}breitbart.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}brightcove.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}brightcove.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}brilliantpala.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}brilliantpala.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}bundesliga.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}bundesliga.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}businessinsider.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -382,12 +387,16 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}camtas
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}camtasia.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}camwithher.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}camwithher.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}canal1.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}canal1.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}canalalpha.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}canalalpha.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}canalc2.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}canalc2.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}canalplus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}canalplus.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}caracoltv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}caracoltv.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}carambatv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}carambatv.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}cartoonnetwork.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -434,6 +443,8 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}cinema
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}cinemax.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}cinetecamilano.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}cinetecamilano.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}cineverse.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}cineverse.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}ciscolive.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}ciscolive.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}ciscowebex.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -632,6 +643,8 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}engadg
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}engadget.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}epicon.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}epicon.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}eplus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}eplus.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}epoch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}epoch.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}eporner.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -1056,6 +1069,8 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}lynda.
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}lynda.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}m6.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}m6.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}magellantv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}magellantv.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}magentamusik360.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}magentamusik360.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}mailru.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -1162,6 +1177,8 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}mofose
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}mofosex.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}mojvideo.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}mojvideo.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}monstercat.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}monstercat.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}morningstar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}morningstar.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}motherless.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -1186,6 +1203,8 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}muench
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}muenchentv.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}murrtube.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}murrtube.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}museai.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}museai.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}musescore.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}musescore.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}musicdex.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -1262,6 +1281,8 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}nick.$
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}nick.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}niconico.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}niconico.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}niconicochannelplus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}niconicochannelplus.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}ninecninemedia.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}ninecninemedia.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}ninegag.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -1414,6 +1435,8 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}photob
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}photobucket.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}piapro.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}piapro.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}piaulizaportal.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}piaulizaportal.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}picarto.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}picarto.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}piksel.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -1470,6 +1493,8 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}popcor
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}popcorntv.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}porn91.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}porn91.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}pornbox.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}pornbox.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}porncom.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}porncom.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}pornez.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -1622,6 +1647,8 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}ruutu.
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}ruutu.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}ruv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}ruv.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}s4c.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}s4c.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}safari.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}safari.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}saitosan.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -1760,8 +1787,6 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}storyf
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}storyfire.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}streamable.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}streamable.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}streamanity.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}streamanity.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}streamcloud.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}streamcloud.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}streamcz.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -1800,6 +1825,8 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}tass.$
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}tass.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}tbs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}tbs.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}tbsjp.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}tbsjp.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}tdslifeway.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}tdslifeway.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}teachable.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -2174,6 +2201,8 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}wikime
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}wikimedia.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}willow.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}willow.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}wimbledon.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}wimbledon.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}wimtv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}wimtv.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/${MODPY_PYCACHE}wistia.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
|
@ -2308,7 +2337,7 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/americastestkitchen.py
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/amp.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/anchorfm.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/angel.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/ant1newsgr.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/antenna.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/anvato.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/aol.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/apa.py
|
||||
|
@ -2322,7 +2351,6 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/ard.py
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/arkena.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/arnes.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/arte.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/asiancrush.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/atresplayer.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/atscaleconf.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/atttechchannel.py
|
||||
|
@ -2334,6 +2362,7 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/audiomack.py
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/audius.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/awaan.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/aws.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/axs.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/azmedien.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/baidu.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/banbye.py
|
||||
|
@ -2376,6 +2405,7 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/bravotv.py
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/breakcom.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/breitbart.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/brightcove.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/brilliantpala.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/bundesliga.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/businessinsider.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/buzzfeed.py
|
||||
|
@ -2391,9 +2421,11 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/cammodels.py
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/camsoda.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/camtasia.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/camwithher.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/canal1.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/canalalpha.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/canalc2.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/canalplus.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/caracoltv.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/carambatv.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/cartoonnetwork.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/cbc.py
|
||||
|
@ -2417,6 +2449,7 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/chirbit.py
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/cinchcast.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/cinemax.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/cinetecamilano.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/cineverse.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/ciscolive.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/ciscowebex.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/cjsw.py
|
||||
|
@ -2516,6 +2549,7 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/elpais.py
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/embedly.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/engadget.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/epicon.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/eplus.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/epoch.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/eporner.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/eroprofile.py
|
||||
|
@ -2728,6 +2762,7 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/lrt.py
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/lumni.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/lynda.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/m6.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/magellantv.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/magentamusik360.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/mailru.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/mainstreaming.py
|
||||
|
@ -2781,6 +2816,7 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/mocha.py
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/moevideo.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/mofosex.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/mojvideo.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/monstercat.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/morningstar.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/motherless.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/motorsport.py
|
||||
|
@ -2793,6 +2829,7 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/msn.py
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/mtv.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/muenchentv.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/murrtube.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/museai.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/musescore.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/musicdex.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/mwave.py
|
||||
|
@ -2831,6 +2868,7 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/nhk.py
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/nhl.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/nick.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/niconico.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/niconicochannelplus.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/ninecninemedia.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/ninegag.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/ninenow.py
|
||||
|
@ -2907,6 +2945,7 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/philharmoniedeparis.py
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/phoenix.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/photobucket.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/piapro.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/piaulizaportal.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/picarto.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/piksel.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/pinkbike.py
|
||||
|
@ -2935,6 +2974,7 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/polskieradio.py
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/popcorntimes.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/popcorntv.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/porn91.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/pornbox.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/porncom.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/pornez.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/pornflip.py
|
||||
|
@ -3011,6 +3051,7 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/rutube.py
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/rutv.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/ruutu.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/ruv.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/s4c.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/safari.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/saitosan.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/samplefocus.py
|
||||
|
@ -3080,7 +3121,6 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/steam.py
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/stitcher.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/storyfire.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/streamable.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/streamanity.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/streamcloud.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/streamcz.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/streamff.py
|
||||
|
@ -3100,6 +3140,7 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/sztvhu.py
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/tagesschau.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/tass.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/tbs.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/tbsjp.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/tdslifeway.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/teachable.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/teachertube.py
|
||||
|
@ -3287,6 +3328,7 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/whowatch.py
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/whyp.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/wikimedia.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/willow.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/wimbledon.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/wimtv.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/wistia.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/wordpress.py
|
||||
|
@ -3339,6 +3381,23 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/zoom.py
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/extractor/zype.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/jsinterp.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/minicurses.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/networking/
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/networking/__init__.py
|
||||
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/yt_dlp/networking/${MODPY_PYCACHE}/
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/networking/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/networking/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/networking/${MODPY_PYCACHE}_helper.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/networking/${MODPY_PYCACHE}_helper.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/networking/${MODPY_PYCACHE}_urllib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/networking/${MODPY_PYCACHE}_urllib.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/networking/${MODPY_PYCACHE}common.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/networking/${MODPY_PYCACHE}common.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/networking/${MODPY_PYCACHE}exceptions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/networking/${MODPY_PYCACHE}exceptions.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/networking/_helper.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/networking/_urllib.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/networking/common.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/networking/exceptions.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/options.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/plugins.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/postprocessor/
|
||||
|
@ -3389,11 +3448,14 @@ lib/python${MODPY_VERSION}/site-packages/yt_dlp/utils/${MODPY_PYCACHE}_legacy.${
|
|||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/utils/${MODPY_PYCACHE}_legacy.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/utils/${MODPY_PYCACHE}_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/utils/${MODPY_PYCACHE}_utils.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/utils/${MODPY_PYCACHE}networking.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/utils/${MODPY_PYCACHE}networking.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/utils/${MODPY_PYCACHE}traversal.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/utils/${MODPY_PYCACHE}traversal.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/utils/_deprecated.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/utils/_legacy.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/utils/_utils.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/utils/networking.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/utils/traversal.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/version.py
|
||||
lib/python${MODPY_VERSION}/site-packages/yt_dlp/webvtt.py
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
COMMENT= customize advanced GNOME 3 options
|
||||
|
||||
GNOME_PROJECT= gnome-tweaks
|
||||
GNOME_VERSION= 42.beta
|
||||
PKGNAME= ${GNOME_PROJECT}-${GNOME_VERSION:S/.//}
|
||||
REVISION= 2
|
||||
GNOME_VERSION= 42.0
|
||||
|
||||
CATEGORIES= sysutils
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (gnome/gnome-tweaks-42.beta.tar.xz) = g/RMwdyK3HcM2tcXtAPLmmzDwN5Q445vHmeLQ0Aa2Gg=
|
||||
SIZE (gnome/gnome-tweaks-42.beta.tar.xz) = 250480
|
||||
SHA256 (gnome/gnome-tweaks-42.0.tar.xz) = RhgRFoWKa9KcVPJ2leDwUKUv8QylkG6CI/SEkQj4uPA=
|
||||
SIZE (gnome/gnome-tweaks-42.0.tar.xz) = 252860
|
||||
|
|
|
@ -5,15 +5,25 @@ lib/python${MODPY_VERSION}/site-packages/gtweak/
|
|||
lib/python${MODPY_VERSION}/site-packages/gtweak/__init__.py
|
||||
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}/
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}app.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}app.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}defs.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}defs.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}gsettings.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}gsettings.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}gshellwrapper.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}gshellwrapper.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}gtksettings.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}gtksettings.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}tweakmodel.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}tweakmodel.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}tweakview.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}tweakview.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}widgets.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/${MODPY_PYCACHE}widgets.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/app.py
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/defs.py
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/gsettings.py
|
||||
|
@ -24,18 +34,31 @@ lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/
|
|||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/__init__.py
|
||||
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}/
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_appearance.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_appearance.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_desktop.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_desktop.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_font.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_font.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_general.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_general.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_keymouse.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_keymouse.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_startup.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_startup.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_test.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_test.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_title_bar.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_title_bar.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_top_bar.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_top_bar.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_windows.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_windows.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_xkb.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_group_xkb.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_wacom.${MODPY_PYC_MAGIC_TAG}opt-2.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/${MODPY_PYCACHE}tweak_wacom.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/tweak_group_appearance.py
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/tweak_group_desktop.py
|
||||
lib/python${MODPY_VERSION}/site-packages/gtweak/tweaks/tweak_group_font.py
|
||||
|
@ -59,6 +82,7 @@ share/gnome-tweaks/shell.css
|
|||
share/gnome-tweaks/shell.ui
|
||||
share/icons/hicolor/scalable/apps/org.gnome.tweaks.svg
|
||||
share/icons/hicolor/symbolic/apps/org.gnome.tweaks-symbolic.svg
|
||||
share/locale/ab/LC_MESSAGES/gnome-tweaks.mo
|
||||
share/locale/af/LC_MESSAGES/gnome-tweaks.mo
|
||||
share/locale/ar/LC_MESSAGES/gnome-tweaks.mo
|
||||
share/locale/as/LC_MESSAGES/gnome-tweaks.mo
|
||||
|
@ -85,9 +109,11 @@ share/locale/he/LC_MESSAGES/gnome-tweaks.mo
|
|||
share/locale/hr/LC_MESSAGES/gnome-tweaks.mo
|
||||
share/locale/hu/LC_MESSAGES/gnome-tweaks.mo
|
||||
share/locale/id/LC_MESSAGES/gnome-tweaks.mo
|
||||
share/locale/ie/LC_MESSAGES/gnome-tweaks.mo
|
||||
share/locale/is/LC_MESSAGES/gnome-tweaks.mo
|
||||
share/locale/it/LC_MESSAGES/gnome-tweaks.mo
|
||||
share/locale/ja/LC_MESSAGES/gnome-tweaks.mo
|
||||
share/locale/ka/LC_MESSAGES/gnome-tweaks.mo
|
||||
share/locale/kk/LC_MESSAGES/gnome-tweaks.mo
|
||||
share/locale/ko/LC_MESSAGES/gnome-tweaks.mo
|
||||
share/locale/ky/LC_MESSAGES/gnome-tweaks.mo
|
||||
|
@ -121,6 +147,7 @@ share/locale/vi/LC_MESSAGES/gnome-tweaks.mo
|
|||
share/locale/zh_CN/LC_MESSAGES/gnome-tweaks.mo
|
||||
share/locale/zh_HK/LC_MESSAGES/gnome-tweaks.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/gnome-tweaks.mo
|
||||
share/metainfo/
|
||||
share/metainfo/org.gnome.tweaks.appdata.xml
|
||||
@tag gtk-update-icon-cache %D/share/icons/hicolor
|
||||
@tag update-desktop-database
|
||||
|
|
|
@ -15,15 +15,18 @@ COMMENT = Chromium-based web engine for Qt5
|
|||
# Many parts are copied from www/chromium port, so keep in sync
|
||||
DISTNAME = qtwebengine-everywhere-opensource-src-${QT5_WEBENGINE_VERSION}
|
||||
QT5NAME = QtWebEngine
|
||||
REVISION = 4
|
||||
REVISION = 5
|
||||
|
||||
CATEGORIES = www
|
||||
|
||||
SHARED_LIBS += Qt5WebEngine 2.0 # 5.15
|
||||
SHARED_LIBS += Qt5WebEngineCore 2.0 # 5.15
|
||||
SHARED_LIBS += Qt5WebEngineWidgets 2.0 # 5.15
|
||||
SHARED_LIBS += Qt5Pdf 1.0 # 5.15
|
||||
SHARED_LIBS += Qt5PdfWidgets 1.0 # 5.15
|
||||
|
||||
# XXX libQt5Pdf.so.1.0: undefined symbol FPDF_InitLibrary
|
||||
# libQt5Pdf needs to link explicitly against libQt5WebEngineCore?
|
||||
#SHARED_LIBS += Qt5Pdf 1.0 # 5.15
|
||||
#SHARED_LIBS += Qt5PdfWidgets 1.0 # 5.15
|
||||
|
||||
WANTLIB += ${COMPILER_LIBCXX} GL Qt5Core Qt5Designer Qt5Gui Qt5Network
|
||||
WANTLIB += Qt5Positioning Qt5PrintSupport Qt5Qml Qt5QmlModels
|
||||
|
|
|
@ -68,7 +68,7 @@ Index: src/buildtools/configure.json
|
|||
- && (!config.linux || features.pkg-config)
|
||||
- && (!config.linux || features.webengine-host-pkg-config)
|
||||
- && (!config.win32 || features.webengine-winversion)",
|
||||
+ "condition": "(config.unix || config.win32 || config.macos || config.ios)",
|
||||
+ "condition": "(config.win32 || config.macos || config.ios)",
|
||||
"output": [ "privateFeature" ]
|
||||
},
|
||||
"build-qtwebengine-core": {
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
Index: src/plugins/plugins.pro
|
||||
--- src/plugins/plugins.pro.orig
|
||||
+++ src/plugins/plugins.pro
|
||||
@@ -1,3 +1,2 @@
|
||||
TEMPLATE = subdirs
|
||||
qtHaveModule(webenginewidgets): qtHaveModule(designer): SUBDIRS += qwebengineview
|
||||
-qtHaveModule(pdf): qtConfig(imageformatplugin): SUBDIRS += imageformats
|
|
@ -1,54 +1,4 @@
|
|||
include/X11/qt5/QtPdf/
|
||||
include/X11/qt5/QtPdf/${VERSION}/
|
||||
include/X11/qt5/QtPdf/${VERSION}/QtPdf/
|
||||
include/X11/qt5/QtPdf/${VERSION}/QtPdf/private/
|
||||
include/X11/qt5/QtPdf/${VERSION}/QtPdf/private/qpdfdestination_p.h
|
||||
include/X11/qt5/QtPdf/${VERSION}/QtPdf/private/qpdfdocument_p.h
|
||||
include/X11/qt5/QtPdf/${VERSION}/QtPdf/private/qpdflinkmodel_p.h
|
||||
include/X11/qt5/QtPdf/${VERSION}/QtPdf/private/qpdflinkmodel_p_p.h
|
||||
include/X11/qt5/QtPdf/${VERSION}/QtPdf/private/qpdfsearchmodel_p.h
|
||||
include/X11/qt5/QtPdf/${VERSION}/QtPdf/private/qpdfsearchresult_p.h
|
||||
include/X11/qt5/QtPdf/${VERSION}/QtPdf/private/qpdfselection_p.h
|
||||
include/X11/qt5/QtPdf/${VERSION}/QtPdf/private/qtpdf-config_p.h
|
||||
include/X11/qt5/QtPdf/QPdfBookmarkModel
|
||||
include/X11/qt5/QtPdf/QPdfDestination
|
||||
include/X11/qt5/QtPdf/QPdfDocument
|
||||
include/X11/qt5/QtPdf/QPdfDocumentRenderOptions
|
||||
include/X11/qt5/QtPdf/QPdfPageNavigation
|
||||
include/X11/qt5/QtPdf/QPdfPageRenderer
|
||||
include/X11/qt5/QtPdf/QPdfSearchModel
|
||||
include/X11/qt5/QtPdf/QPdfSearchResult
|
||||
include/X11/qt5/QtPdf/QPdfSelection
|
||||
include/X11/qt5/QtPdf/QtPdf
|
||||
include/X11/qt5/QtPdf/QtPdfDepends
|
||||
include/X11/qt5/QtPdf/QtPdfVersion
|
||||
include/X11/qt5/QtPdf/qpdfbookmarkmodel.h
|
||||
include/X11/qt5/QtPdf/qpdfdestination.h
|
||||
include/X11/qt5/QtPdf/qpdfdocument.h
|
||||
include/X11/qt5/QtPdf/qpdfdocumentrenderoptions.h
|
||||
include/X11/qt5/QtPdf/qpdfnamespace.h
|
||||
include/X11/qt5/QtPdf/qpdfpagenavigation.h
|
||||
include/X11/qt5/QtPdf/qpdfpagerenderer.h
|
||||
include/X11/qt5/QtPdf/qpdfsearchmodel.h
|
||||
include/X11/qt5/QtPdf/qpdfsearchresult.h
|
||||
include/X11/qt5/QtPdf/qpdfselection.h
|
||||
include/X11/qt5/QtPdf/qtpdf-config.h
|
||||
include/X11/qt5/QtPdf/qtpdfglobal.h
|
||||
include/X11/qt5/QtPdf/qtpdfversion.h
|
||||
include/X11/qt5/QtPdfWidgets/
|
||||
include/X11/qt5/QtPdfWidgets/${VERSION}/
|
||||
include/X11/qt5/QtPdfWidgets/${VERSION}/QtPdfWidgets/
|
||||
include/X11/qt5/QtPdfWidgets/${VERSION}/QtPdfWidgets/private/
|
||||
include/X11/qt5/QtPdfWidgets/${VERSION}/QtPdfWidgets/private/qpdfview_p.h
|
||||
include/X11/qt5/QtPdfWidgets/${VERSION}/QtPdfWidgets/private/qtpdfwidgets-config_p.h
|
||||
include/X11/qt5/QtPdfWidgets/QPdfView
|
||||
include/X11/qt5/QtPdfWidgets/QtPdfWidgets
|
||||
include/X11/qt5/QtPdfWidgets/QtPdfWidgetsDepends
|
||||
include/X11/qt5/QtPdfWidgets/QtPdfWidgetsVersion
|
||||
include/X11/qt5/QtPdfWidgets/qpdfview.h
|
||||
include/X11/qt5/QtPdfWidgets/qtpdfwidgets-config.h
|
||||
include/X11/qt5/QtPdfWidgets/qtpdfwidgetsglobal.h
|
||||
include/X11/qt5/QtPdfWidgets/qtpdfwidgetsversion.h
|
||||
include/X11/qt5/
|
||||
include/X11/qt5/QtWebEngine/
|
||||
include/X11/qt5/QtWebEngine/${VERSION}/
|
||||
include/X11/qt5/QtWebEngine/${VERSION}/QtWebEngine/
|
||||
|
@ -172,26 +122,19 @@ include/X11/qt5/QtWebEngineWidgets/qwebenginescript.h
|
|||
include/X11/qt5/QtWebEngineWidgets/qwebenginescriptcollection.h
|
||||
include/X11/qt5/QtWebEngineWidgets/qwebenginesettings.h
|
||||
include/X11/qt5/QtWebEngineWidgets/qwebengineview.h
|
||||
@lib lib/libQt5Pdf.so.${LIBQt5Pdf_VERSION}
|
||||
@lib lib/libQt5PdfWidgets.so.${LIBQt5PdfWidgets_VERSION}
|
||||
@lib lib/libQt5WebEngine.so.${LIBQt5WebEngine_VERSION}
|
||||
@lib lib/libQt5WebEngineCore.so.${LIBQt5WebEngineCore_VERSION}
|
||||
@lib lib/libQt5WebEngineWidgets.so.${LIBQt5WebEngineWidgets_VERSION}
|
||||
lib/pkgconfig/Qt5Pdf.pc
|
||||
lib/pkgconfig/Qt5PdfWidgets.pc
|
||||
lib/pkgconfig/Qt5WebEngine.pc
|
||||
lib/pkgconfig/Qt5WebEngineCore.pc
|
||||
lib/pkgconfig/Qt5WebEngineWidgets.pc
|
||||
lib/qt5/
|
||||
lib/qt5/Qt5WebEngineCore.la
|
||||
lib/qt5/bin/
|
||||
@bin lib/qt5/bin/qwebengine_convert_dict
|
||||
lib/qt5/cmake/
|
||||
lib/qt5/cmake/Qt5Designer/
|
||||
lib/qt5/cmake/Qt5Designer/Qt5Designer_QWebEngineViewPlugin.cmake
|
||||
lib/qt5/cmake/Qt5Gui/Qt5Gui_QPdfPlugin.cmake
|
||||
lib/qt5/cmake/Qt5Pdf/
|
||||
lib/qt5/cmake/Qt5Pdf/Qt5PdfConfig.cmake
|
||||
lib/qt5/cmake/Qt5Pdf/Qt5PdfConfigVersion.cmake
|
||||
lib/qt5/cmake/Qt5PdfWidgets/
|
||||
lib/qt5/cmake/Qt5PdfWidgets/Qt5PdfWidgetsConfig.cmake
|
||||
lib/qt5/cmake/Qt5PdfWidgets/Qt5PdfWidgetsConfigVersion.cmake
|
||||
lib/qt5/cmake/Qt5WebEngine/
|
||||
lib/qt5/cmake/Qt5WebEngine/Qt5WebEngineConfig.cmake
|
||||
lib/qt5/cmake/Qt5WebEngine/Qt5WebEngineConfigVersion.cmake
|
||||
|
@ -201,12 +144,6 @@ lib/qt5/cmake/Qt5WebEngineCore/Qt5WebEngineCoreConfigVersion.cmake
|
|||
lib/qt5/cmake/Qt5WebEngineWidgets/
|
||||
lib/qt5/cmake/Qt5WebEngineWidgets/Qt5WebEngineWidgetsConfig.cmake
|
||||
lib/qt5/cmake/Qt5WebEngineWidgets/Qt5WebEngineWidgetsConfigVersion.cmake
|
||||
lib/qt5/libQt5Pdf.la
|
||||
lib/qt5/libQt5Pdf.prl
|
||||
@lib lib/qt5/libQt5Pdf.so.${LIBQt5Pdf_VERSION}
|
||||
lib/qt5/libQt5PdfWidgets.la
|
||||
lib/qt5/libQt5PdfWidgets.prl
|
||||
@lib lib/qt5/libQt5PdfWidgets.so.${LIBQt5PdfWidgets_VERSION}
|
||||
lib/qt5/libQt5WebEngine.la
|
||||
lib/qt5/libQt5WebEngine.prl
|
||||
@lib lib/qt5/libQt5WebEngine.so.${LIBQt5WebEngine_VERSION}
|
||||
|
@ -218,10 +155,8 @@ lib/qt5/libQt5WebEngineWidgets.prl
|
|||
@lib lib/qt5/libQt5WebEngineWidgets.so.${LIBQt5WebEngineWidgets_VERSION}
|
||||
lib/qt5/libexec/
|
||||
@bin lib/qt5/libexec/QtWebEngineProcess
|
||||
lib/qt5/mkspecs/modules/qt_lib_pdf.pri
|
||||
lib/qt5/mkspecs/modules/qt_lib_pdf_private.pri
|
||||
lib/qt5/mkspecs/modules/qt_lib_pdfwidgets.pri
|
||||
lib/qt5/mkspecs/modules/qt_lib_pdfwidgets_private.pri
|
||||
lib/qt5/mkspecs/
|
||||
lib/qt5/mkspecs/modules/
|
||||
lib/qt5/mkspecs/modules/qt_lib_webengine.pri
|
||||
lib/qt5/mkspecs/modules/qt_lib_webengine_private.pri
|
||||
lib/qt5/mkspecs/modules/qt_lib_webenginecore.pri
|
||||
|
@ -229,21 +164,14 @@ lib/qt5/mkspecs/modules/qt_lib_webenginecore_private.pri
|
|||
lib/qt5/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri
|
||||
lib/qt5/mkspecs/modules/qt_lib_webenginewidgets.pri
|
||||
lib/qt5/mkspecs/modules/qt_lib_webenginewidgets_private.pri
|
||||
lib/qt5/pkgconfig/Qt5Pdf.pc
|
||||
lib/qt5/pkgconfig/Qt5PdfWidgets.pc
|
||||
lib/qt5/pkgconfig/
|
||||
lib/qt5/pkgconfig/Qt5WebEngine.pc
|
||||
lib/qt5/pkgconfig/Qt5WebEngineCore.pc
|
||||
lib/qt5/pkgconfig/Qt5WebEngineWidgets.pc
|
||||
lib/qt5/plugins/
|
||||
lib/qt5/plugins/designer/
|
||||
@so lib/qt5/plugins/designer/libqwebengineview.so
|
||||
@so lib/qt5/plugins/imageformats/libqpdf.so
|
||||
lib/qt5/qml/QtQuick/Pdf/
|
||||
@so lib/qt5/qml/QtQuick/Pdf/libpdfplugin.so
|
||||
lib/qt5/qml/QtQuick/Pdf/plugins.qmltypes
|
||||
lib/qt5/qml/QtQuick/Pdf/qml/
|
||||
lib/qt5/qml/QtQuick/Pdf/qml/PdfMultiPageView.qml
|
||||
lib/qt5/qml/QtQuick/Pdf/qml/PdfPageView.qml
|
||||
lib/qt5/qml/QtQuick/Pdf/qml/PdfScrollablePageView.qml
|
||||
lib/qt5/qml/QtQuick/Pdf/qmldir
|
||||
lib/qt5/qml/
|
||||
lib/qt5/qml/QtWebEngine/
|
||||
lib/qt5/qml/QtWebEngine/Controls1Delegates/
|
||||
lib/qt5/qml/QtWebEngine/Controls1Delegates/AlertDialog.qml
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
COMMENT= Xfce4 notification daemon
|
||||
|
||||
XFCE_VERSION= 0.9.1
|
||||
XFCE_VERSION= 0.9.2
|
||||
XFCE_GOODIE= xfce4-notifyd
|
||||
|
||||
# GPLv2
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (xfce4/xfce4-notifyd-0.9.1.tar.bz2) = 7L4BdRW2xcOy8ogkUdNRoLZzXYAxMDnG3eIH3ZZTT+o=
|
||||
SIZE (xfce4/xfce4-notifyd-0.9.1.tar.bz2) = 728342
|
||||
SHA256 (xfce4/xfce4-notifyd-0.9.2.tar.bz2) = R1kPDB9ctFZS1j4Xy0ICvuKyE2QyrEI5Wkvt0RDRh4k=
|
||||
SIZE (xfce4/xfce4-notifyd-0.9.2.tar.bz2) = 728345
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue