pkgsrc/devel
adam 7d390bf9a0 git: updated to 2.32.0
Git 2.32 Release Notes
======================

Backward compatibility notes
----------------------------

 * ".gitattributes", ".gitignore", and ".mailmap" files that are
   symbolic links are ignored.

 * "git apply --3way" used to first attempt a straight application,
   and only fell back to the 3-way merge algorithm when the stright
   application failed.  Starting with this version, the command will
   first try the 3-way merge algorithm and only when it fails (either
   resulting with conflict or the base versions of blobs are missing),
   falls back to the usual patch application.


Updates since v2.31
-------------------

UI, Workflows & Features

 * It does not make sense to make ".gitattributes", ".gitignore" and
   ".mailmap" symlinks, as they are supposed to be usable from the
   object store (think: bare repositories where HEAD:.mailmap etc. are
   used).  When these files are symbolic links, we used to read the
   contents of the files pointed by them by mistake, which has been
   corrected.

 * "git stash show" learned to optionally show untracked part of the
   stash.

 * "git log --format='...'" learned "%(describe)" placeholder.

 * "git repack" so far has been only capable of repacking everything
   under the sun into a single pack (or split by size).  A cleverer
   strategy to reduce the cost of repacking a repository has been
   introduced.

 * The http codepath learned to let the credential layer to cache the
   password used to unlock a certificate that has successfully been
   used.

 * "git commit --fixup=<commit>", which was to tweak the changes made
   to the contents while keeping the original log message intact,
   learned "--fixup=(amend|reword):<commit>", that can be used to
   tweak both the message and the contents, and only the message,
   respectively.

 * "git send-email" learned to honor the core.hooksPath configuration.

 * "git format-patch -v<n>" learned to allow a reroll count that is
   not an integer.

 * "git commit" learned "--trailer <key>[=<value>]" option; together
   with the interpret-trailers command, this will make it easier to
   support custom trailers.

 * "git clone --reject-shallow" option fails the clone as soon as we
   notice that we are cloning from a shallow repository.

 * A configuration variable has been added to force tips of certain
   refs to be given a reachability bitmap.

 * "gitweb" learned "e-mail privacy" feature to redact strings that
   look like e-mail addresses on various pages.

 * "git apply --3way" has always been "to fall back to 3-way merge
   only when straight application fails". Swap the order of falling
   back so that 3-way is always attempted first (only when the option
   is given, of course) and then straight patch application is used as
   a fallback when it fails.

 * "git apply" now takes "--3way" and "--cached" at the same time, and
   work and record results only in the index.

 * The command line completion (in contrib/) has learned that
   CHERRY_PICK_HEAD is a possible pseudo-ref.

 * Userdiff patterns for "Scheme" has been added.

 * "git log" learned "--diff-merges=<style>" option, with an
   associated configuration variable log.diffMerges.

 * "git log --format=..." placeholders learned %ah/%ch placeholders to
   request the --date=human output.

 * Replace GIT_CONFIG_NOSYSTEM mechanism to decline from reading the
   system-wide configuration file with GIT_CONFIG_SYSTEM that lets
   users specify from which file to read the system-wide configuration
   (setting it to an empty file would essentially be the same as
   setting NOSYSTEM), and introduce GIT_CONFIG_GLOBAL to override the
   per-user configuration in $HOME/.gitconfig.

 * "git add" and "git rm" learned not to touch those paths that are
   outside of sparse checkout.

 * "git rev-list" learns the "--filter=object:type=<type>" option,
   which can be used to exclude objects of the given kind from the
   packfile generated by pack-objects.

 * The command line completion (in contrib/) for "git stash" has been
   updated.

 * "git subtree" updates.

 * It is now documented that "format-patch" skips merges.

 * Options to "git pack-objects" that take numeric values like
   --window and --depth should not accept negative values; the input
   validation has been tightened.

 * The way the command line specified by the trailer.<token>.command
   configuration variable receives the end-user supplied value was
   both error prone and misleading.  An alternative to achieve the
   same goal in a safer and more intuitive way has been added, as
   the trailer.<token>.cmd configuration variable, to replace it.

 * "git add -i --dry-run" does not dry-run, which was surprising.  The
   combination of options has taught to error out.

 * "git push" learns to discover common ancestor with the receiving
   end over protocol v2.  This will hopefully make "git push" as
   efficient as "git fetch" in avoiding objects from getting
   transferred unnecessarily.

 * "git mailinfo" (hence "git am") learned the "--quoted-cr" option to
   control how lines ending with CRLF wrapped in base64 or qp are
   handled.


Performance, Internal Implementation, Development Support etc.

 * Rename detection rework continues.

 * GIT_TEST_FAIL_PREREQS is a mechanism to skip test pieces with
   prerequisites to catch broken tests that depend on the side effects
   of optional pieces, but did not work at all when negative
   prerequisites were involved.
   (merge 27d578d904 jk/fail-prereq-testfix later to maint).

 * "git diff-index" codepath has been taught to trust fsmonitor status
   to reduce number of lstat() calls.
   (merge 7e5aa13d2c nk/diff-index-fsmonitor later to maint).

 * Reorganize Makefile to allow building git.o and other essential
   objects without extra stuff needed only for testing.

 * Preparatory API changes for parallel checkout.

 * A simple IPC interface gets introduced to build services like
   fsmonitor on top.

 * Fsck API clean-up.

 * SECURITY.md that is facing individual contributors and end users
   has been introduced.  Also a procedure to follow when preparing
   embargoed releases has been spelled out.
   (merge 09420b7648 js/security-md later to maint).

 * Optimize "rev-list --use-bitmap-index --objects" corner case that
   uses negative tags as the stopping points.

 * CMake update for vsbuild.

 * An on-disk reverse-index to map the in-pack location of an object
   back to its object name across multiple packfiles is introduced.

 * Generate [ec]tags under $(QUIET_GEN).

 * Clean-up codepaths that implements "git send-email --validate"
   option and improves the message from it.

 * The last remnant of gettext-poison has been removed.

 * The test framework has been taught to optionally turn the default
   merge strategy to "ort" throughout the system where we use
   three-way merges internally, like cherry-pick, rebase etc.,
   primarily to enhance its test coverage (the strategy has been
   available as an explicit "-s ort" choice).

 * A bit of code clean-up and a lot of test clean-up around userdiff
   area.

 * Handling of "promisor packs" that allows certain objects to be
   missing and lazily retrievable has been optimized (a bit).

 * When packet_write() fails, we gave an extra error message
   unnecessarily, which has been corrected.

 * The checkout machinery has been taught to perform the actual
   write-out of the files in parallel when able.

 * Show errno in the trace output in the error codepath that calls
   read_raw_ref method.

 * Effort to make the command line completion (in contrib/) safe with
   "set -u" continues.

 * Tweak a few tests for "log --format=..." that show timestamps in
   various formats.

 * The reflog expiry machinery has been taught to emit trace events.

 * Over-the-wire protocol learns a new request type to ask for object
   sizes given a list of object names.


Fixes since v2.31
-----------------

 * The fsmonitor interface read from its input without making sure
   there is something to read from.  This bug is new in 2.31
   timeframe.

 * The data structure used by fsmonitor interface was not properly
   duplicated during an in-core merge, leading to use-after-free etc.

 * "git bisect" reimplemented more in C during 2.30 timeframe did not
   take an annotated tag as a good/bad endpoint well.  This regression
   has been corrected.

 * Fix macros that can silently inject unintended null-statements.

 * CALLOC_ARRAY() macro replaces many uses of xcalloc().

 * Update insn in Makefile comments to run fuzz-all target.

 * Fix a corner case bug in "git mv" on case insensitive systems,
   which was introduced in 2.29 timeframe.

 * We had a code to diagnose and die cleanly when a required
   clean/smudge filter is missing, but an assert before that
   unnecessarily fired, hiding the end-user facing die() message.
   (merge 6fab35f748 mt/cleanly-die-upon-missing-required-filter later to maint).

 * Update C code that sets a few configuration variables when a remote
   is configured so that it spells configuration variable names in the
   canonical camelCase.
   (merge 0f1da600e6 ab/remote-write-config-in-camel-case later to maint).

 * A new configuration variable has been introduced to allow choosing
   which version of the generation number gets used in the
   commit-graph file.
   (merge 702110aac6 ds/commit-graph-generation-config later to maint).

 * Perf test update to work better in secondary worktrees.
   (merge 36e834abc1 jk/perf-in-worktrees later to maint).

 * Updates to memory allocation code around the use of pcre2 library.
   (merge c1760352e0 ab/grep-pcre2-allocfix later to maint).

 * "git -c core.bare=false clone --bare ..." would have segfaulted,
   which has been corrected.
   (merge 75555676ad bc/clone-bare-with-conflicting-config later to maint).

 * When "git checkout" removes a path that does not exist in the
   commit it is checking out, it wasn't careful enough not to follow
   symbolic links, which has been corrected.
   (merge fab78a0c3d mt/checkout-remove-nofollow later to maint).

 * A few option description strings started with capital letters,
   which were corrected.
   (merge 5ee90326dc cc/downcase-opt-help later to maint).

 * Plug or annotate remaining leaks that trigger while running the
   very basic set of tests.
   (merge 68ffe095a2 ah/plugleaks later to maint).

 * The hashwrite() API uses a buffering mechanism to avoid calling
   write(2) too frequently. This logic has been refactored to be
   easier to understand.
   (merge ddaf1f62e3 ds/clarify-hashwrite later to maint).

 * "git cherry-pick/revert" with or without "--[no-]edit" did not spawn
   the editor as expected (e.g. "revert --no-edit" after a conflict
   still asked to edit the message), which has been corrected.
   (merge 39edfd5cbc en/sequencer-edit-upon-conflict-fix later to maint).

 * "git daemon" has been tightened against systems that take backslash
   as directory separator.
   (merge 9a7f1ce8b7 rs/daemon-sanitize-dir-sep later to maint).

 * A NULL-dereference bug has been corrected in an error codepath in
   "git for-each-ref", "git branch --list" etc.
   (merge c685450880 jk/ref-filter-segfault-fix later to maint).

 * Streamline the codepath to fix the UTF-8 encoding issues in the
   argv[] and the prefix on macOS.
   (merge c7d0e61016 tb/precompose-prefix-simplify later to maint).

 * The command-line completion script (in contrib/) had a couple of
   references that would have given a warning under the "-u" (nounset)
   option.
   (merge c5c0548d79 vs/completion-with-set-u later to maint).

 * When "git pack-objects" makes a literal copy of a part of existing
   packfile using the reachability bitmaps, its update to the progress
   meter was broken.
   (merge 8e118e8490 jk/pack-objects-bitmap-progress-fix later to maint).

 * The dependencies for config-list.h and command-list.h were broken
   when the former was split out of the latter, which has been
   corrected.
   (merge 56550ea718 sg/bugreport-fixes later to maint).

 * "git push --quiet --set-upstream" was not quiet when setting the
   upstream branch configuration, which has been corrected.
   (merge f3cce896a8 ow/push-quiet-set-upstream later to maint).

 * The prefetch task in "git maintenance" assumed that "git fetch"
   from any remote would fetch all its local branches, which would
   fetch too much if the user is interested in only a subset of
   branches there.
   (merge 32f67888d8 ds/maintenance-prefetch-fix later to maint).

 * Clarify that pathnames recorded in Git trees are most often (but
   not necessarily) encoded in UTF-8.
   (merge 9364bf465d ab/pathname-encoding-doc later to maint).

 * "git --config-env var=val cmd" weren't accepted (only
   --config-env=var=val was).
   (merge c331551ccf ps/config-env-option-with-separate-value later to maint).

 * When the reachability bitmap is in effect, the "do not lose
   recently created objects and those that are reachable from them"
   safety to protect us from races were disabled by mistake, which has
   been corrected.
   (merge 2ba582ba4c jk/prune-with-bitmap-fix later to maint).

 * Cygwin pathname handling fix.
   (merge bccc37fdc7 ad/cygwin-no-backslashes-in-paths later to maint).

 * "git rebase --[no-]reschedule-failed-exec" did not work well with
   its configuration variable, which has been corrected.
   (merge e5b32bffd1 ab/rebase-no-reschedule-failed-exec later to maint).

 * Portability fix for command line completion script (in contrib/).
   (merge f2acf763e2 si/zsh-complete-comment-fix later to maint).

 * "git repack -A -d" in a partial clone unnecessarily loosened
   objects in promisor pack.

 * "git bisect skip" when custom words are used for new/old did not
   work, which has been corrected.

 * A few variants of informational message "Already up-to-date" has
   been rephrased.
   (merge ad9322da03 js/merge-already-up-to-date-message-reword later to maint).

 * "git submodule update --quiet" did not propagate the quiet option
   down to underlying "git fetch", which has been corrected.
   (merge 62af4bdd42 nc/submodule-update-quiet later to maint).

 * Document that our test can use "local" keyword.
   (merge a84fd3bcc6 jc/test-allows-local later to maint).

 * The word-diff mode has been taught to work better with a word
   regexp that can match an empty string.
   (merge 0324e8fc6b pw/word-diff-zero-width-matches later to maint).

 * "git p4" learned to find branch points more efficiently.
   (merge 6b79818bfb jk/p4-locate-branch-point-optim later to maint).

 * When "git update-ref -d" removes a ref that is packed, it left
   empty directories under $GIT_DIR/refs/ for
   (merge 5f03e5126d wc/packed-ref-removal-cleanup later to maint).

 * "git clean" and "git ls-files -i" had confusion around working on
   or showing ignored paths inside an ignored directory, which has
   been corrected.
   (merge b548f0f156 en/dir-traversal later to maint).

 * The handling of "%(push)" formatting element of "for-each-ref" and
   friends was broken when the same codepath started handling
   "%(push:<what>)", which has been corrected.
   (merge 1e1c4c5eac zh/ref-filter-push-remote-fix later to maint).

 * The bash prompt script (in contrib/) did not work under "set -u".
   (merge 5c0cbdb107 en/prompt-under-set-u later to maint).

 * The "chainlint" feature in the test framework is a handy way to
   catch common mistakes in writing new tests, but tends to get
   expensive.  An knob to selectively disable it has been introduced
   to help running tests that the developer has not modified.
   (merge 2d86a96220 jk/test-chainlint-softer later to maint).

 * The "rev-parse" command did not diagnose the lack of argument to
   "--path-format" option, which was introduced in v2.31 era, which
   has been corrected.
   (merge 99fc555188 wm/rev-parse-path-format-wo-arg later to maint).

 * Other code cleanup, docfix, build fix, etc.
   (merge f451960708 dl/cat-file-doc-cleanup later to maint).
   (merge 12604a8d0c sv/t9801-test-path-is-file-cleanup later to maint).
   (merge ea7e63921c jr/doc-ignore-typofix later to maint).
   (merge 23c781f173 ps/update-ref-trans-hook-doc later to maint).
   (merge 42efa1231a jk/filter-branch-sha256 later to maint).
   (merge 4c8e3dca6e tb/push-simple-uses-branch-merge-config later to maint).
   (merge 6534d436a2 bs/asciidoctor-installation-hints later to maint).
   (merge 47957485b3 ab/read-tree later to maint).
   (merge 2be927f3d1 ab/diff-no-index-tests later to maint).
   (merge 76593c09bb ab/detox-gettext-tests later to maint).
   (merge 28e29ee38b jc/doc-format-patch-clarify later to maint).
   (merge fc12b6fdde fm/user-manual-use-preface later to maint).
   (merge dba94e3a85 cc/test-helper-bloom-usage-fix later to maint).
   (merge 61a7660516 hn/reftable-tables-doc-update later to maint).
   (merge 81ed96a9b2 jt/fetch-pack-request-fix later to maint).
   (merge 151b6c2dd7 jc/doc-do-not-capitalize-clarification later to maint).
   (merge 9160068ac6 js/access-nul-emulation-on-windows later to maint).
   (merge 7a14acdbe6 po/diff-patch-doc later to maint).
   (merge f91371b948 pw/patience-diff-clean-up later to maint).
   (merge 3a7f0908b6 mt/clean-clean later to maint).
   (merge d4e2d15a8b ab/streaming-simplify later to maint).
   (merge 0e59f7ad67 ah/merge-ort-i18n later to maint).
   (merge e6f68f62e0 ls/typofix later to maint).
2021-06-13 18:36:31 +00:00
..
abseil abseil: updated to 20210324.1 2021-04-30 10:32:17 +00:00
accerciser accerciser: fix build after change to make itstool a TOOL. 2021-05-10 12:47:54 +00:00
acme
acr acr: update to 1.9.4. 2021-01-25 07:58:51 +00:00
acunia-jam
adacurses adacurses: update PLIST 2021-04-05 08:32:09 +00:00
adocman *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
aegis *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
afl
afl++
ald
alex *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
allegro
allegro5 allegro5: update to 5.2.7 2021-04-19 10:14:56 +00:00
amtk
anjuta *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ant-contrib ant-contrib: Update to 1.0b3 2021-03-12 17:49:11 +00:00
apache-ant apache-ant: update to 1.10.10. 2021-04-20 16:15:39 +00:00
apache-ant15
apache-ant19
apache-ivy
apache-maven
apel
apenwarr-redo
appdata-tools revbump for textproc/icu 2021-04-21 11:40:12 +00:00
appstream-glib appstream-glib: needs msgfmt, xgettext for translations 2021-05-21 15:41:00 +00:00
apr
apr-util revbump for textproc/icu 2021-04-21 11:40:12 +00:00
arcanist Switch to use lang/php/json.mk. 2021-03-07 13:21:56 +00:00
arena
argp
argtable
as31 as31: remove dead master site 2021-04-21 08:41:05 +00:00
asio
aslc86k
asm2html
asmfmt Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
astyle
at-spi revbump for textproc/icu 2021-04-21 11:40:12 +00:00
at-spi2-atk at-spi2-atk: set PYTHON_FOR_BUILD_ONLY 2021-04-12 13:08:18 +00:00
at-spi2-core at-spi2-core: set PYTHON_FOR_BUILD_ONLY 2021-04-12 13:07:44 +00:00
atf
atk atk: Set PYTHON_FOR_BUILD_ONLY 2021-04-12 11:07:06 +00:00
atkmm atkmm: mention 1.6 API in DESCR and COMMENT 2021-05-31 20:01:04 +00:00
atkmm2.36 devel/atkmm2.36: import atkmm2.36-2.36.1 2021-05-31 22:28:38 +00:00
autoconf *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
autoconf-archive
autoconf213 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
autogen *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
automake *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
automake14 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
automoc4
autosetup
avl
avltree avltree: remove dead master site 2021-04-21 08:39:56 +00:00
bam
bats
bcc
bfg
bglibs *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
bin86
binaryen binaryen: update to 101. 2021-04-17 20:04:24 +00:00
binutils *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
bison *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
blame
blib
blosc blosc: updated to 1.21.0 2021-03-07 13:45:18 +00:00
bmake
bmkdep
boa-constructor
boehm-gc
boost-build boost: updated to 1.76.0 2021-04-21 12:09:49 +00:00
boost-docs
boost-headers boost: updated to 1.76.0 2021-04-21 12:09:49 +00:00
boost-jam boost-jam: fix RELRO build 2021-04-22 21:41:52 +00:00
boost-libs boost: bump GCC requirement 2021-05-27 17:02:24 +00:00
boost-mpi boost: updated to 1.76.0 2021-04-21 12:09:49 +00:00
bpython bpython: updated to 0.21 2021-03-20 15:14:48 +00:00
breezy
buddy
bugzilla *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
bugzilla3 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
bullet
byacc byacc: update to 20210328. 2021-04-02 18:59:31 +00:00
bzr
bzr-explorer
bzr-gtk
bzr-svn
bzrtools
c++gsl
calltree-perl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
capnproto capnproto: needs openssl 2021-05-14 14:50:11 +00:00
capstone
catch
catch2
cbindgen cbindgen: Update to 0.19.0 2021-04-26 14:34:41 +00:00
cbrowser
ccache *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
cdecl cdecl: remove dead master sites 2021-04-21 08:38:49 +00:00
cdk cdk: Update to 5.0.20210109 2021-02-10 09:48:57 +00:00
cervisia revbump for textproc/icu 2021-04-21 11:40:12 +00:00
cfitsio revbump for boost-libs 2021-04-21 13:24:06 +00:00
cflow
cflow-mode
cfr
cgdb
cgen
check Update HOMEPAGE, and take MAINTAINER. 2021-05-29 19:39:00 +00:00
chmlib
chrpath
clib
clion-bin
clisp-pcre
clisp-syscalls
clisp-wildcard
clisp-zlib
cloc *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
cmake cmake: updated to 3.20.3 2021-05-29 06:14:40 +00:00
cmake-fedora
cmake-gui cmake: updated to 3.20.2 2021-04-30 06:45:13 +00:00
cmake-mode
cmocka
cmockery2
cmph
cobol-mode
coccinelle Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
coconut revbump for textproc/icu 2021-04-21 11:40:12 +00:00
codeville
cogito *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
colordiff *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
commit-patch *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
compiz-bcop revbump for textproc/icu 2021-04-21 11:40:12 +00:00
compizconfig-backend-gconf revbump for textproc/icu 2021-04-21 11:40:12 +00:00
concurrencykit
confuse
cook *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
cppcheck revbump for textproc/icu 2021-04-21 11:40:12 +00:00
cppunit cppunit: Disable -Werror 2021-03-19 10:52:23 +00:00
cpputest
cproto
cpu_features
cpuflags
cqual *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
cre2
creduce *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
cscope
cssc
ctemplate *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
cunit
cut
cutter revbump for textproc/icu 2021-04-21 11:40:12 +00:00
cvs-fast-export
cvs2cl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
cvs2html *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
cvs2svn
cvsclone
cvsd *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
cvsdiff2patch
cvsgraph cvsgraph: update to 1.7.1. 2021-01-25 08:48:07 +00:00
cvslock cvslock: remove dead master site 2021-04-21 08:37:59 +00:00
cvsps cvsps: update HOMEPAGE and MASTER_SITES 2021-02-09 06:22:45 +00:00
cvsps3
cvsup-bin
cvsup-gui-bin
cvsutils *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
cvsync cvsync: remove dead master site 2021-04-21 08:37:05 +00:00
cxref Move "INSTALL" to "INSTALL.txt" so the "install" targets run as expected 2021-05-08 09:24:52 +00:00
darcs *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
darts
dconf *: Use the tools framework for gdbus-codegen 2021-05-02 11:06:12 +00:00
dconf-editor Update dconf-editor to 3.38.3 2021-04-15 19:55:06 +00:00
ddd *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
debugcon_printf
deepstate alpha (obviously) does not have -m32 2021-05-30 12:36:02 +00:00
deepstate-afl
deepstate-honggfuzz
deepstate-libfuzzer
deforaos-asm
deforaos-coder
deforaos-configure
deforaos-cpp
deforaos-libsystem
dejagnu
delta *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
dev86
devhelp *: Use the tools framework for itstool 2021-05-02 10:24:47 +00:00
device-driver-doc-de
devIL
dia2code revbump for textproc/icu 2021-04-21 11:40:12 +00:00
diffbreaker diffbreaker: needds libcurses 2021-05-14 14:47:55 +00:00
diffuse
diffutils
distcc
distcc-pump
distccmon-gnome revbump for textproc/icu 2021-04-21 11:40:12 +00:00
distccmon-gtk
dlcompat
dmake
dmalloc
doc++
dolphin-plugins revbump for textproc/icu 2021-04-21 11:40:12 +00:00
dotconf
doxygen *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
doxymacs revbump for textproc/icu 2021-04-21 11:40:12 +00:00
dumpet revbump for textproc/icu 2021-04-21 11:40:12 +00:00
easygit *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ecb
eclipse
ecore revbump for boost-libs 2021-04-21 13:24:06 +00:00
edcommon revbump for textproc/icu 2021-04-21 11:40:12 +00:00
editline editline: fix conflict with devel/readline 2021-05-07 07:13:28 +00:00
editorconfig-core editorconfig-core: updated to 0.12.4 2021-03-20 18:52:45 +00:00
eet
egypt *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
eina
eio revbump for boost-libs 2021-04-21 13:24:06 +00:00
electric-fence
elf
elfcat
elfsh
elftoolchain
elib
emacs-ilisp
emacs20-elib
empty
epydoc
erlang-base64url
erlang-cache_tab
erlang-ezlib
erlang-fs
erlang-mqtree erlang-mqtree: Update to 1.0.13 2021-05-20 19:46:24 +00:00
errcheck Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
error
ETL
etrace *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
exctags
exempi revbump for boost-libs 2021-04-21 13:24:06 +00:00
ExmanIDE
extra-cmake-modules extra-cmake-modules: update to 5.81.0. 2021-04-26 15:25:34 +00:00
fann
fastdep
fhist
fifechan
fifengine revbump for boost-libs 2021-04-21 13:24:06 +00:00
flatbuffers
flatzebra
flex
flexdock
flim (devel/flim) sting-to-int is obsolete function since emacs-26 2021-05-11 02:05:07 +00:00
florist
fortran-utils
fossil revbump for textproc/icu 2021-04-21 11:40:12 +00:00
frama-c revbump for textproc/icu 2021-04-21 11:40:12 +00:00
frink *: remove dead master site 2021-04-21 08:36:10 +00:00
fromcvs
ftnchek
g-wrap
gccmakedep
GConf *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
GConf-ui revbump for textproc/icu 2021-04-21 11:40:12 +00:00
gconfmm *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
gcvs *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
gdb *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
gdb7 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
gdbus-codegen gdbus-codegen: Update devel/gdbus-codegen to 2.68.2 2021-05-11 18:41:28 +00:00
gdl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
geany *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
gearmand revbump for boost-libs 2021-04-21 13:24:06 +00:00
generate
gengetopt
gentle
gettext
gettext-asprintf
gettext-lib
gettext-m4
gettext-tools gettext-tools: Work around optimization bug for GCC/alpha. Bump revision. 2021-05-07 13:01:58 +00:00
gflags
gflib
giblib
gindent
git git: updated to 2.32.0 2021-06-13 18:36:31 +00:00
git-base git: updated to 2.32.0 2021-06-13 18:36:31 +00:00
git-contrib
git-cvs
git-docs git: updated to 2.32.0 2021-06-13 18:36:31 +00:00
git-filter-repo
git-gitk
git-lfs Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
git-remote-hg
git-svn
gitolite *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
glade *: Use the tools framework for itstool 2021-05-02 10:24:47 +00:00
glib
glib2 glib2: Fix PLIST for 2.68.2 2021-05-11 17:03:24 +00:00
glib2-tools
glibmm glibmm: mention API version in COMMENT and DESCR 2021-05-31 19:57:03 +00:00
glibmm2.68 glibmm2.68: add new package 2021-05-31 22:26:08 +00:00
global *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
gmake *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
gmp
gmtk revbump for textproc/icu 2021-04-21 11:40:12 +00:00
gnatpython
gnome-common
gnustep-base revbump for boost-libs 2021-04-21 13:24:06 +00:00
gnustep-examples revbump for textproc/icu 2021-04-21 11:40:12 +00:00
gnustep-make gnustep-makee: installs bash scripts, needs bash at runtime 2021-05-14 14:46:40 +00:00
gnustep-objc
gnustep-objc-lf2
go-amber Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-argv Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-assert Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-blackfriday Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-bytebufferpool Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-cast Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-check Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-cmp Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-colorable Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-colortext Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-colour Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-compress Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-consul-api Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-cpuid Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-debounce Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-ed25519 Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-emoji Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-errors Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-flags-svent Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-fnmatch Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-fs Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-fsnotify Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-gitmap Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-glog Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-gls Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-gocode Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-godef Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-godirwalk Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-godotenv Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-golang-lru Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-gopkgs Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-goptlib Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-goreturns Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-gospel Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-gox Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-hashstructure Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-homedir Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-humanize Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-immutable-radix Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-ini Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-iochan Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-isatty Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-jwalterweatherman Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-jwt-go Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-kr-pretty Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-levenshtein Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-locker Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-logrus Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-mod Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-nbreader Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-osext Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-pflag Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-pkgconfig Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-properties Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-protobuf Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-pty Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-purell Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-quicktest Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-radix Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-repr Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-review Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-sanitized_anchor_name Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-shellwords Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-shuffle Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-siphash Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-spew Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-sync Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-sys Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-termbox Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-testify Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-textseg Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-thrift Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-tmc Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-tools Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-try Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-walker Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-wordwrap Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-xerrors Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
go-yaml Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
gob2
gobject-introspection gobject-introspection: updated to 1.68.0 2021-03-22 07:05:31 +00:00
golangci-lint Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
golint Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
google-glog google-glog: Update to 0.4.0 2021-02-20 20:46:13 +00:00
googletest
gopls Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
Gorm revbump for textproc/icu 2021-04-21 11:40:12 +00:00
got got: Fix typo in COMMENT 2021-02-01 12:47:25 +00:00
gperf
gperftools *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
gprbuild-aux
gps *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
gputils
gradle gradle: Update to 6.8.3 2021-03-12 22:50:42 +00:00
grantlee
grantlee-qt5 revbump for textproc/icu 2021-04-21 11:40:12 +00:00
gsoap
gst-plugins0.10-pango
gst-plugins1-pango
gtexinfo *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
gtl
guile-bytestructures
guile-gcrypt
guile-git
guile-gnome revbump for textproc/icu 2021-04-21 11:40:12 +00:00
guile-lib
guile-slib
guile-www
guile22-slib
gyp gyp: Remove unused patches 2021-02-17 12:31:33 +00:00
happy *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
haskell-mode
hdevtools *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hdf
hdf5 hdf5: updated to 1.10.7 2021-06-07 11:52:48 +00:00
hdf5-c++ hdf5: updated to 1.10.7 2021-06-07 11:52:48 +00:00
heirloom-getopt
heirloom-libcommon
heirloom-what
hlint Import hlint-3.3.1 2021-05-05 10:23:03 +00:00
hoe devel/hoe: update to 3.23.0 2021-05-30 09:09:29 +00:00
honggfuzz
hptools
hs-ansi-terminal *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-asn1-encoding *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-asn1-parse *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-asn1-types *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-assoc *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-async *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-auto-update Import auto-update-0.1.6 2021-05-05 12:13:42 +00:00
hs-base-compat *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-base-compat-batteries *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-base-orphans *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-base-unicode-symbols *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-basement *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-bitarray *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-blaze-builder *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-bytestring-builder *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-call-stack *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-cereal *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-cmdargs *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-code-page *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-colour *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-conduit *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-conduit-extra *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-control-monad-free *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-cpphs *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-data-default *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-data-default-class *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-data-default-instances-base *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-data-default-instances-containers *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-data-default-instances-dlist *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-data-default-instances-old-locale *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-data-fix *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-deepseq-generics *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-dlist *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-echo *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-either *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-errors *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-extensible-exceptions *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-fail *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-fgl *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-file-embed *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-fingertree *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-fmlist Import fmlist-0.9.4 2021-05-05 11:40:31 +00:00
hs-foundation Fix several linker warnings 2021-05-05 16:38:40 +00:00
hs-fsnotify *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-generic-deriving *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-ghc-lib-parser-ex Add missing PLIST 2021-05-05 10:13:14 +00:00
hs-ghc-mtl *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-ghc-paths *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-hashable *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-hashtables *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-haskell-lexer *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-haskell-src-exts *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-hint *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-hslua-module-system *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-indexed-traversable *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-ipynb *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-libffi *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-lifted-base *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-ListLike Import ListLike-4.7.4 2021-05-05 11:43:46 +00:00
hs-lukko *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-memory *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-mmap Import mmap-0.5.9 2021-05-05 11:31:11 +00:00
hs-mmorph *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-monad-control *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-MonadRandom *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-mono-traversable *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-old-locale *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-Only *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-optparse-applicative *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-parser-combinators *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-pretty-show *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-pretty-simple *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-primitive *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-psqueues Import psqueues-0.2.7.2 2021-05-05 15:06:16 +00:00
hs-QuickCheck *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-random *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-refact Add missing PLIST 2021-05-05 10:13:14 +00:00
hs-reflection *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-resourcet *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-safe *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-setlocale *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-split *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-splitmix *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-StateVar *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-storable-record Import storable-record-0.0.5 2021-05-05 11:56:00 +00:00
hs-storable-tuple Import storable-tuple-0.0.3.3 2021-05-05 11:58:24 +00:00
hs-streaming-commons *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-strict *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-syb *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-tabular Add missing dependency on hs-csv and hs-html 2021-05-04 14:37:33 +00:00
hs-tagged *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-tasty *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-tasty-hunit *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-terminal-size *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-tf-random *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-th-abstraction *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-th-compat *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-th-lift *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-these *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-timeit *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-transformers-base *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-transformers-compat *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-uglymemo *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-unbounded-delays *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-uniplate *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-unix-compat *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-unliftio-core *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-unordered-containers *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-utf8-string *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-utility-ht *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-uuid-types *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-vault *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-vector *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-vector-algorithms *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-vector-binary-instances *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-vector-th-unbox *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-void *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
hs-wizards Add missing dependency on hs-control-monad-free 2021-05-04 14:57:58 +00:00
hs-word8 Import word8-0.1.3 2021-05-05 15:48:49 +00:00
ht
hugs-HUnit
hugs-unix
hyperscan revbump for textproc/icu 2021-04-21 11:40:12 +00:00
idiff
idutils
imake
include-what-you-use revbump for textproc/icu 2021-04-21 11:40:12 +00:00
iniparser
intel2gas
intellij-ce-bin
intellij-ue-bin
isect
ivykis
jam Relinquish MAINTAINER. 2021-02-05 08:08:59 +00:00
java-jna java-jna: use ANT_ARGS consistently (follow-on build fix) 2021-02-02 01:18:24 +00:00
java-subversion *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
javacc
javadeps
jd-gui
jdebp-redo
jemalloc *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
jenkins
jenkins-lts
jflex
jq
js2-mode
js_of_ocaml Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
jsonnet
kafka
kapptemplate revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kbookmarks revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kbuild *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
kcachegrind *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
kcmutils revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kconfig revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kcoreaddons revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kcrash revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kde-dev-scripts *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
kde-dev-utils revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kdeclarative revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kdesdk-kioslaves *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
kdesdk-strigi-analyzers revbump for boost-libs 2021-04-21 13:24:06 +00:00
kdesdk-thumbnailers revbump for boost-libs 2021-04-21 13:24:06 +00:00
kdevelop4 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
kdevplatform *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
kdiff3 revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kdoctools *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ki18n revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kidletime revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kio revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kio-extras *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
kitemmodels revbump for textproc/icu 2021-04-21 11:40:12 +00:00
knotifications revbump for textproc/icu 2021-04-21 11:40:12 +00:00
knotifyconfig revbump for textproc/icu 2021-04-21 11:40:12 +00:00
ko-po-check
kompare revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kpackage revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kparts revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kpeople revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kpty revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kross revbump for textproc/icu 2021-04-21 11:40:12 +00:00
krunner revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kservice revbump for textproc/icu 2021-04-21 11:40:12 +00:00
ktexteditor *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
kwayland revbump for textproc/icu 2021-04-21 11:40:12 +00:00
kyua revbump for textproc/icu 2021-04-21 11:40:12 +00:00
lcc
lcdis
lcov *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ldapsdk *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ldpc
leahneukirchen-redo
lemon sqlite3: updated to 3.35.5 2021-04-20 06:30:07 +00:00
lettuce
libantlr3c
libappindicator revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libarena
libargparse
libast
libatomic Set BUILDLINK_{LDADD,LDFLAGS}, which is required at least for 2021-05-07 11:34:48 +00:00
libatomic-links
libatomic_ops
libbegemot
libbinio
libblkid
libbonobo *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libbonoboui revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libbsd
libcbor
libcerf
libcfg+
libcompizconfig *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libconfig
libctl
libcutl revbump for boost-libs 2021-04-21 13:24:06 +00:00
libdaemon
libdatrie libdatrie 0.2.13 Released 2021-01-29 18:33:09 +00:00
libdazzle libdazzle: strip out -Werror on SunOS 2021-05-17 14:51:44 +00:00
libdbusmenu-glib *: bump for vala 0.52 2021-04-14 07:28:16 +00:00
libdbusmenu-gtk *: bump for vala 0.52 2021-04-14 07:28:16 +00:00
libdbusmenu-gtk-doc
libdbusmenu-gtk3 *: bump for vala 0.52 2021-04-14 07:28:16 +00:00
libdbusmenu-jsonloader *: bump for vala 0.52 2021-04-14 07:28:16 +00:00
libdbusmenu-qt
libdbusmenu-qt5 revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libdbusmenu-tools *: bump for vala 0.52 2021-04-14 07:28:16 +00:00
libdevq
libdivsufsort libdivsufsort: Don't waste time building examples 2021-01-20 11:39:32 +00:00
libdnsres
libdockapp
libdshconfig
libdstr
libdwarf
libebml libebml: fix build with gcc 11 2021-05-12 04:03:49 +00:00
libelf
libepoll-shim add ONLY_FOR_PLATFORM - only works on FreeBSD, NetBSD, OpenBSD, DragonFlyBSD 2021-05-03 17:20:24 +00:00
libestr
libetm
libev
libevent
libewf
libexecinfo
libextractor revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libf2c
libffcall
libffi *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libfirm
libFoundation
libFoundation-examples
libfreefare libfreefare: needs openssl 2021-05-14 14:44:27 +00:00
libftdi
libftdi1 revbump for boost-libs 2021-04-21 13:24:06 +00:00
libgcroots
libgee *: bump for vala 0.52 2021-04-14 07:28:16 +00:00
libgee0.6
libgetopt
libgit2 revbump for boost-libs 2021-04-21 13:24:06 +00:00
libglade revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libglademm *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libgnome revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libgnomemm revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libgnomeui *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libgnomeuimm revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libgnt revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libgphoto2 revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libgsf revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libgweather revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libhandy *: bump for vala 0.52 2021-04-14 07:28:16 +00:00
libhandy1 *: bump for vala 0.52 2021-04-14 07:28:16 +00:00
libhfs
libhid revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libiberty
libidn *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libidn2 libidn2: update to 2.3.1. 2021-05-20 08:22:37 +00:00
libindicator
libinotify
libite
libixp
libjit
libjudy
libkgapi *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libkomparediff2 revbump for textproc/icu 2021-04-21 11:40:12 +00:00
liblangtag revbump for textproc/icu 2021-04-21 11:40:12 +00:00
liblnk
libltdl
libmaa
libmatchbox
libmemcache
libmemcached
libmemmgr
libmimedir
libmm
libmowgli
libmtp
libnet libnet: Remove default DEPMETHOD of build. 2021-01-30 08:23:18 +00:00
libnet10 libnet1*: remove bogus conflict with libnet 2021-05-28 14:21:26 +00:00
libnet11 libnet1*: remove bogus conflict with libnet 2021-05-28 14:21:26 +00:00
libnfc
libnjb
libntlm
liboil
liboop
libosip
libowfat
libpeas libpeas: make python dependencies explicit 2021-04-12 13:31:13 +00:00
libpgm *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libphutil
libportlib
libproplist libproplist: remove dead master site 2021-04-21 08:35:04 +00:00
librdkafka
librelp revbump for boost-libs 2021-04-21 13:24:06 +00:00
librfuncs
librlog
librxspencer
libsafec
libsexy revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libsexymm revbump for textproc/icu 2021-04-21 11:40:12 +00:00
libsigc++ *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libsigc++1
libsigc++3 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libsigsegv libsigsegv: update to 2.13. 2021-01-25 10:01:14 +00:00
libslang
libslang2
libsmi
libstash
libstatgrab *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libstree
libstroke
libstubborn Add libstubborn version 0.1 2021-01-24 19:09:21 +00:00
libtai
libtar
libtecla
libthai
libthrift *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libthrift_c_glib *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libtool *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libtool-base *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libtool-fortran *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libtool-info
libts
libunit (devel/libunit) update distinfo to follow www/unit update 2021-03-04 14:57:41 +00:00
libusb
libusb-compat
libusb1 libusb1: bump gcc requirement to 4.9 2021-05-27 16:55:22 +00:00
libuuid
libuv libuv: updated to 1.41.0 2021-02-14 15:00:59 +00:00
libuxre
libview
libvolume_id
libwhisker2 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
libwnck
libwnck3 libwnck3: set PYTHON_FOR_BUILD_ONLY 2021-04-12 13:00:56 +00:00
libxenserver revbump for boost-libs 2021-04-21 13:24:06 +00:00
libxtend devel/libxtend: import libxtend-0.1.2.4 2021-06-11 00:40:59 +00:00
libyang
libzen
libzookeeper
linenoise
lld
lldb lldb: create PLIST.Linux 2021-05-15 08:22:06 +00:00
lmdbg
locktests
log4cplus
log4cxx
log4shib
lokalize revbump for textproc/icu 2021-04-21 11:40:12 +00:00
ltsa
lua-alt-getopt
lua-ansicolors
lua-argparse
lua-basexx
lua-binaryheap
lua-bit32
lua-BitOp
lua-busted
lua-cliargs
lua-compat53 lua-compat53: update to 0.10 2021-06-07 11:38:58 +00:00
lua-cov
lua-coxpcall
lua-cqueues
lua-epnf
lua-event
lua-fifo
lua-filesystem
lua-fun
lua-gi
lua-inspect
lua-linenoise
lua-ljsyscall
lua-loadkit
lua-lpeg
lua-lpeg-patterns
lua-lrexlib
lua-lrexlib-onig
lua-lrexlib-pcre
lua-lrexlib-posix
lua-luassert
lua-luv lua-luv: update to 1.41.0 2021-05-13 10:23:10 +00:00
lua-mediator
lua-mimetypes
lua-mode
lua-moses
lua-penlight lua-penlight: update to 1.10.0 2021-05-13 10:19:09 +00:00
lua-posix
lua-repl
lua-rings
lua-rocks lua-rocks: update to 3.7.0 2021-05-02 07:48:22 +00:00
lua-safer add devel/lua-safer 2021-01-27 11:52:21 +00:00
lua-say
lua-sdl2
lua-std-_debug
lua-std-normalize lua-std-normalize: update to 2.0.3 2021-06-07 11:49:23 +00:00
lua-stdlib
lua-system
lua-term
lua-thrift *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
lua-vstruct
lutok
lwp
lxqt-build-tools *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
m4
m17n-lib revbump for textproc/icu 2021-04-21 11:40:12 +00:00
mad-flute revbump for boost-libs 2021-04-21 13:24:06 +00:00
magit
makedepend
makedepf90
maketool
man-pages
mantis *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
mate-common
matio
mcpp
mdds revbump for boost-libs 2021-04-21 13:24:06 +00:00
mdds1.2 revbump for boost-libs 2021-04-21 13:24:06 +00:00
meld *: Use the tools framework for itstool 2021-05-02 10:24:47 +00:00
mell
memcached *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
menhir Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
mercurial
meson meson: updated to 0.58.1 2021-06-07 18:58:55 +00:00
metslib devel/metslib: trim DESCR 2021-04-28 08:28:54 +00:00
mk-configure Version 0.37.0, by Aleksey Cheusov, Thu, 8 Apr 2021 09:07:48 +0300 2021-04-08 18:57:48 +00:00
mkcmd
mm-common mm-common: update to 1.0.3. 2021-05-31 20:28:11 +00:00
MoarVM (devel/MoarVM) Updated 2021.04 to 2021.05 2021-05-29 07:10:17 +00:00
mob Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
monotone *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
monotone-server
monotone-viz revbump for textproc/icu 2021-04-21 11:40:12 +00:00
mph
msgpack msgpack: updated to 3.3.0 2021-02-14 18:56:11 +00:00
mustach
myrepos *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
nana nana: remove dead master site 2021-04-21 08:33:50 +00:00
nancy Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
nasm *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
nbpatch nbpatch: Needs C99. Fixes PR#56033. 2021-06-04 16:06:11 +00:00
ncc
ncurses *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ncursesw
netbeans-ide *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
netbsd-iscsi-lib
netcdf revbump for boost-libs 2021-04-21 13:24:06 +00:00
netcdf-cxx revbump for boost-libs 2021-04-21 13:24:06 +00:00
netcdf-fortran revbump for boost-libs 2021-04-21 13:24:06 +00:00
newfile newfile: remove incorrect CONFLICTS 2021-05-21 16:40:02 +00:00
ninja-build
ninka *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
noweb noweb: remove dead master site 2021-04-21 08:29:00 +00:00
npapi-sdk
npth
nqc
nsis nsis: needs zlib 2021-05-14 14:43:00 +00:00
nspr nspr: update to 4.31. 2021-05-27 06:39:35 +00:00
nspr-reference
nss nss: update to 3.66. 2021-06-04 09:58:03 +00:00
ObjectiveLib revbump for textproc/icu 2021-04-21 11:40:12 +00:00
objfw
ocaml-angstrom Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-astring Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-async Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-async_extra Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-async_kernel Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-async_rpc_kernel Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-async_unix Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-base Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-base64 Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-base_bigstring Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-base_quickcheck Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-batteries Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-bigarray-compat Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-bigstringaf Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-bin_prot Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-biniou Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-bos Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-checkseum Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-cmdliner Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-compiler-libs Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-configurator Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-core Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-core_kernel Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-cppo Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-csexp Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-cstruct Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-deriving-ocsigen Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-digestif Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-duff Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-dune Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-dune-configurator Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-encore Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-eqaf Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-extlib Updated devel/ocaml-extlib to version 1.7.8. 2021-03-08 20:36:53 +00:00
ocaml-fieldslib Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-findlib Updated devel/ocaml-findlib to version 1.9.1. 2021-03-18 08:30:43 +00:00
ocaml-fmt Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-fpath (devel/ocaml-fpath) +.include devel/ocaml-result/buildlink3.mk 2021-03-28 12:30:19 +00:00
ocaml-git Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-hex Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-jane-street-headers Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-jbuilder Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-js-build-tools Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-jst-config Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ke Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-logs Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-lru Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-lwt Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-lwt_camlp4 Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-lwt_glib Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-lwt_log Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-lwt_ppx Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-lwt_react Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-lwt_ssl Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-migrate-parsetree Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-mmap Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-oasis Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ocplib-endian Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-optcomp Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-optint Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-parsexp Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_assert Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_base Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_bench Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_bin_prot Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_cold Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_compare Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_custom_printf Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_derivers Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_deriving Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_enumerate Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_expect Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_fail Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_fields_conv Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_hash Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_here Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_inline_test Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_jane Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_let Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_module_timer Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_optcomp Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_optional Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_pipebang Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_sexp_conv Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_sexp_message Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_sexp_value Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_stable Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_tools Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_tools_versioned Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_typerep_conv Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppx_variants_conv Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppxfind Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-ppxlib Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-psq Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-re *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ocaml-react Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-reactiveData Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-resource-pooling Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-result Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-rresult Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-seq Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-sexplib Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-sexplib0 Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-spawn Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-splittable_random Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-stdio Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-stdlib-shims Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-stringext Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-type_conv Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-typerep Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-variantslib Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocaml-yojson Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocamlbuild Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocamlgraph revbump for textproc/icu 2021-04-21 11:40:12 +00:00
ocamlify Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ocamlmod Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
ode
ogre ogre: Update to 1.12.11 2021-03-01 12:12:14 +00:00
okteta revbump for boost-libs 2021-04-21 13:24:06 +00:00
omake Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
open-vcdiff
opengrok revbump for textproc/icu 2021-04-21 11:40:12 +00:00
openocd openocd: fix build on Linux 2021-05-06 21:15:38 +00:00
openrcs
orc orc: set PYTHON_FOR_BUILD_ONLY 2021-04-12 11:22:42 +00:00
ossp-uuid *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-accessors *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-accessors-fast *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Acme-Damn *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Acme-PlayCode *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Algorithm-Annotate *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Algorithm-C3 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Algorithm-CheckDigits *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Algorithm-Dependency *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Algorithm-Diff *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Algorithm-HowSimilar *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Algorithm-Merge *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Algorithm-Permute *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-aliased *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Alien-Base-ModuleBuild *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Alien-Build *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Alien-Packages *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Alien-SDL *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-AnnoCPAN-Perldoc *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Any-Moose *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-AnyEvent *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-AnyEvent-AIO *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-AnyEvent-IRC *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-AnyEvent-RabbitMQ *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-AnyEvent-XMPP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-App-Cache *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-App-CLI Update to 0.52 2021-06-12 23:10:47 +00:00
p5-App-Cmd Update to 0.333 2021-06-12 23:28:25 +00:00
p5-App-cpanminus *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-App-cpanoutdated *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-App-FatPacker *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-App-perlbrew Update to 0.92 2021-06-12 23:55:04 +00:00
p5-App-Prove-Plugin-ProgressBar *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-App-Prove-Plugin-ProgressBar-Each *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-AppConfig *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-AppConfig-Std *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Array-Compare Update to 3.0.8 2021-06-13 00:11:52 +00:00
p5-Array-Diff *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Array-RefElem *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-asa *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Async-Interrupt *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-AtExit *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Attribute-Lexical *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-autobox *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-autobox-Core *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Autodia *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-autovivification *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-AutoXS-Header *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-B-Compiling *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-B-COW *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-B-Debug *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-B-Hooks-EndOfScope *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-B-Hooks-OP-Annotation *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-B-Hooks-OP-Check *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-B-Hooks-OP-Check-EntersubForCV *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-B-Hooks-OP-Check-StashChange *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-B-Hooks-OP-PPAddr *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-B-Hooks-Parser *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-B-Keywords Update to 1.22 2021-06-13 00:15:54 +00:00
p5-B-Utils *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-BackPAN-Index *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-bareword-filehandles *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Bit-Vector *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-boolean *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-BSD-Resource *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Cache *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Cache-Cache *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Cache-FastMmap Update to 1.56 2021-06-13 08:22:13 +00:00
p5-Cache-LRU *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Cache-Memcached *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Cache-Memcached-Fast *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Cache-Simple-TimedExpiry *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Canary-Stability *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-capitalization *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Capture-Tiny *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Carp *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Carp-Always *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Carp-Assert *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Carp-Assert-More *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Carp-Clan *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Carp-REPL *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Carton *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Check-ISA *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-CHI *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-circular-require *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-CLASS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Accessor *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Accessor-Chained *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Accessor-Grouped *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Accessor-Lite *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Accessor-Named *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Adapter *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Autouse *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Base *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-C3 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-C3-Adopt-NEXT *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-C3-Componentised *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-C3-XS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Container *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Data-Accessor *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Data-Inheritable *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-ErrorHandler *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Factory *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Factory-Util *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Field *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Fields *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Gomor *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Inner *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-InsideOut *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Inspector *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-ISA *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Load *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Load-XS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Loader *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-MakeMethods *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Method-Modifiers *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-MethodMaker *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Mix *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-ObjectTemplate *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-OOorNO *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Refresh *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-ReturnValue *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Singleton *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Std *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Throwable *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Tiny *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Trigger *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Unload *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-Virtual *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-WhiteHole *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-XML *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-XPath *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Class-XSAccessor *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-CLI-Osprey p5-CLI-Osprey: add missing build, test and run dependencies. 2021-06-07 14:10:01 +00:00
p5-Clone *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Clone-Choose *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Clone-Fast *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Clone-PP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-common-sense *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Compiler-Lexer *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Compress-PPMd *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-Any *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-Any-Merge *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-Auto *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-AutoConf *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-File *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-Find *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-General *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-GitLike *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-Grammar *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-INI *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-INI-Reader-Ordered *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-IniFiles *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-MVP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-MVP-Reader-INI *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-Onion *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-Properties *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-Std *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-Tiny *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Const-Fast *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-constant-def *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Context-Preserve *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Contextual-Return *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Convert-Binary-C *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Coro *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-CPAN-Changes *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-CPAN-Checksums *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-CPAN-Common-Index *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-CPAN-DistnameInfo *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-CPAN-FindDependencies *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-CPAN-Inject *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-CPAN-Meta-Check *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-CPAN-Mini *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-CPAN-ParseDistribution *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-CPAN-Perl-Releases *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-CPAN-Reporter *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-CPAN-Uploader *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-CPANPLUS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-curry *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Curses *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Curses-UI *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Curses-UI-POE *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Cwd-Guard *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Alias *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Binary *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Buffer *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Compare *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Denter *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Dump *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Dump-Streamer *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Dumper *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Dumper-Concise *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Dumper-Names *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-GUID *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Hierarchy *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-IEEE754 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Integer *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-MessagePack *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Munge *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-ObjectDriver *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-OptList *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Page *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Page-Pageset *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Pageset *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Peek *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Perl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Printer *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Random *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Record *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Section *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Section-Simple *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Serializer *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-ShowTable *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Stag *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Structure-Util *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Taxi *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-TemporaryBag *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Uniqid *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-UUID *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-UUID-Base64URLSafe *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Validate-IP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Data-Visitor *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Date-Business *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Date-Calc *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Date-Calc-XS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Date-Manip *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Date-Simple *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Debug-Client *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Debug-ShowStuff *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Declare-Constraints-Simple *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Autoflush *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-CallChecker *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Caller *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Caller-IgnoreNamespaces *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-CallParser *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-CheckBin *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-CheckCompiler *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-CheckLib *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-CheckOS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Confess *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Cover *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Cycle *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Declare *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Dumpvar *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-ebug *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-EvalContext *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Events *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Events-Objects *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-FindPerl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-FindRef *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Gladiator *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-GlobalDestruction *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Hide *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Leak *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Leak-Object *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-LexAlias *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-NYTProf *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-OverloadInfo *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-OverrideGlobalRequire *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-PartialDump *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-PatchPerl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Pragma *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Profile *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Refactor *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Refcount *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-REPL *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Size *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-SmallProf *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-StackTrace *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-StackTrace-AsHTML *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-StackTrace-WithLexicals *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Symdump *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-Trace *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Devel-TraceUse *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Dir-Self *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Dist-CheckConflicts *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Dist-Zilla *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Dist-Zooky *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-DynaLoader-Functions *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-enum *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Env-Path *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Error *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-EV *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Eval-Closure *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Eval-LineNumbers *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Event *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Event-ExecFlow *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Event-RPC *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-ex-lib *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Exception-Class *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Exception-Handler *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Expect *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Expect-Simple *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Exporter-Declare *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Exporter-Lite *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Exporter-Tiny *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-ExtUtils-AutoInstall *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-ExtUtils-CChecker *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-ExtUtils-Config *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-ExtUtils-CppGuess *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-ExtUtils-Depends *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-ExtUtils-F77 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-ExtUtils-Helpers *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-ExtUtils-InstallPaths *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-ExtUtils-LibBuilder *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-ExtUtils-MakeMaker-CPANfile *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-ExtUtils-ModuleMaker *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-ExtUtils-ModuleMaker-TT *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-ExtUtils-PkgConfig *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-ExtUtils-XSBuilder *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-ExtUtils-XSpp *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Fennec-Lite *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-FFI-CheckLib *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-BaseDir *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Binary *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-BOM *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-ChangeNotify *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-chdir *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-ConfigDir *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-DesktopEntry *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-DirCompare *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-DirSync *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Find-Object *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Find-Rule *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Find-Rule-Age *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Find-Rule-Perl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Find-Rule-Permissions *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Find-Rule-PPI *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Find-Rule-VCS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Flat *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Flock *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-FlockDir *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-HomeDir *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-LibMagic *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Listing *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-MimeInfo *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Modified *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Next *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-NFSLock *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Path-Expand *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Path-Tiny *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-PathConvert *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Policy *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-pushd *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Save-Home *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Share *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-ShareDir *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-ShareDir-Install *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-ShareDir-ProjectDistDir *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Slurp *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Slurp-Tiny *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Slurper *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Tempdir *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Touch *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Type *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Util *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Valet *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-File-Which Update to 1.27 2021-06-12 13:51:18 +00:00
p5-FileHandle-Fmode *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-FileHandle-Unget *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Filesys-Notify-Simple *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Find-Lib *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-FindBin-libs *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-forks *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Format-Human-Bytes *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-FreezeThaw *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Function-Parameters *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Future *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Getopt-ArgvFile *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Getopt-Euclid *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Getopt-Long-Descriptive *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Getopt-Mixed *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Getopt-Simple *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Getopt-Tabular *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-gettext *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Git-CPAN-Patch *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Git-Repository *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Git-Repository-Plugin-AUTOLOAD *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Git-Version-Compare *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Git-Wrapper *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-GitLab-API-v3 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-GitLab-API-v4 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Glib-Object-Introspection *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-glib2 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Gnome2 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Gnome2-GConf *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Graph *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Graph-ReadWrite *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Gravatar-URL *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Gtk2-GladeXML *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Guard *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Hash-Case *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Hash-FieldHash *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Hash-Flatten *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Hash-Merge *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Hash-Merge-Simple *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Hash-MoreUtils *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Hash-MultiValue *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Hash-Util-FieldHash-Compat *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Heap *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Hook-LexWrap *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IMDB-Film *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Import-Into *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Importer *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-inc *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-inc-latest *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-indirect *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Inline *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Inline-C *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-InlineX-C2XS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Internals *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-AIO *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-All *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Async *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Capture *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-CaptureOutput *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Digest *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Event *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Handle-Util *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-HTML *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-InSitu *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Interactive *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-LockedFile *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Multiplex *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Null *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Pager *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Pipeline *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Pipely *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Prompt *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Prompter *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-String *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-stringy *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Stty *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Tee *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-TieCombine *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Tty *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IO-Util *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IPC-Cache *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IPC-DirQueue *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IPC-PubSub *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IPC-Run *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IPC-Run3 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IPC-Shareable *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IPC-SharedCache *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IPC-ShareLite *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IPC-Signal *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-IPC-System-Simple *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-LEOCHARRE-CLI2 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-LEOCHARRE-Debug *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-LEOCHARRE-Dir *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Lexical-Persistence *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Lexical-SealRequireHints *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-lib-abs *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-List-AllUtils *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-List-MoreUtils *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-List-MoreUtils-XS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-List-Pairwise *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-List-SomeUtils *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-List-SomeUtils-XS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-List-UtilsBy *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-local-lib *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Locale-Msgfmt *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Locale-PO *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Agent *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Any *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Any-Adapter-Callback *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Any-Adapter-Dispatch *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Any-Adapter-Log4perl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Any-Adapter-Screen *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Any-Adapter-TAP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Dispatch *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Dispatch-Array *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Dispatch-Config *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Dispatch-DBI *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Dispatch-FileRotate *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Dispatch-Perl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Dispatchouli *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Handler *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Log4perl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-LogLite *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Message *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Message-Simple *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Report *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Report-Optional *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Log-Trace *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Mac-Carbon *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Mac-SystemDirectory *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Make *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Memoize-ExpireLRU *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Memoize-Memcached *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Menlo *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Menlo-Legacy *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Meta-Builder *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MetaCPAN-API *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MetaCPAN-Client *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Method-Signatures *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Method-Signatures-Simple *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Metrics-Any *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Mixin-ExtraFields *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Mixin-ExtraFields-Param *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Mixin-Linewise *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Mo *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Mock-Quick *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Modern-Perl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Build *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Build-Tiny *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Build-WithXSpp *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Build-XSUtil *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Compile *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-CPANfile *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-CPANTS-Analyse *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Dependency *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-ExtractUse *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Find *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-FromPerlVer *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Implementation *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Install *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Install-AuthorRequires *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Install-AuthorTests *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Install-GithubMeta *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Install-ManifestSkip *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Install-PadrePlugin *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Install-ReadmeFromPod *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Install-Repository *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Install-RTx *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Install-Substitute *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Install-XSUtil *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Manifest *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Manifest-Skip *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Pluggable *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Refresh *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Runtime *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Runtime-Conflicts *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-ScanDeps *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Starter *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Starter-PBP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Util *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Versions *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Module-Versions-Report *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Mojo-IOLoop-ForkCall *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Moo *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Moos *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Moose *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Moose-Autobox *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Moose-Policy *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Aliases *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-App *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-App-Cmd Update to 0.34 2021-06-13 08:16:50 +00:00
p5-MooseX-ArrayRef *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Attribute-Chained *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-AttributeHelpers *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Attributes-Curried *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-ClassAttribute *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-CompileTime-Traits *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-ConfigFromFile *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Daemonize *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Declare *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Emulate-Class-Accessor-Fast *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-FollowPBP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Getopt Update to 0.75 2021-06-13 12:21:57 +00:00
p5-MooseX-Has-Options *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-InsideOut *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-LazyRequire *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-MarkAsMethods *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Meta-TypeConstraint-ForceCoercion *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Method-Signatures *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-MethodAttributes *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-MultiInitArg *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-NonMoose *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Object-Pluggable *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-OneArgNew *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Param *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Params-Validate *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-POE *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Role-Parameterized *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Role-Tempdir *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Role-WithOverloading *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-SemiAffordanceAccessor *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-SetOnce *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-SimpleConfig *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Singleton *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-StrictConstructor *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Traits *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Traits-Pluggable *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Types *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Types-Common *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Types-JSON *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Types-LoadableClass *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Types-LogAny *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Types-Path-Class *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Types-Perl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Types-Stringlike *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Types-Structured *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooseX-Types-URI Update to 0.09 2021-06-13 12:30:52 +00:00
p5-MooX-ClassAttribute *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooX-Cmd *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooX-ConfigFromFile *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooX-File-ConfigDir *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooX-HandlesVia *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooX-late *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooX-Locale-Passthrough *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooX-Log-Any *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooX-Options *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooX-Roles-Pluggable *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooX-StrictConstructor *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooX-Types-MooseLike *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooX-Types-MooseLike-Numeric *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MooX-TypeTiny *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Mouse *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MouseX-Getopt *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MouseX-NativeTraits *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MouseX-Types *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MouseX-Types-Path-Class *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-MRO-Compat *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-multidimensional *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-namespace-autoclean *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-namespace-clean *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-CIDR *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-LDAP-Batch *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-LDAP-Class *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-LDAP-Server-Test *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-LDAP-SID *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Net-Netmask *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Object-Accessor *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Object-Declare *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Object-Event *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Object-InsideOut *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Object-Pluggable *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Object-Realize-Later *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Object-Signature *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-OLE-Storage_Lite *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-OOTools *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Ouch *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Package-Constants *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Package-DeprecationManager *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Package-Generator *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Package-Stash *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Package-Stash-XS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Package-Variant *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PadWalker *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-pango *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PAR *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PAR-Dist *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Parallel-ForkManager *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Parallel-Prefork *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Params-Classify *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Params-Coerce *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Params-Util *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Params-Validate *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Params-ValidationCompiler *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Parse-CPAN-Packages *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Parse-ErrorString-Perl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Parse-ExuberantCTags *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Parse-Method-Signatures *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Parse-PMFile *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Parse-RecDescent *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Parse-Yapp *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PatchReader *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Path-Class *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Path-Class-File-Stat *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Path-Dispatcher *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Path-Dispatcher-Declarative *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Path-FindDev *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Path-IsDev *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Path-Iter *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PathTools *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Pegex *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Perl-APIReference *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Perl-Critic *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-perl-headers *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Perl-MinimumVersion *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Perl-PrereqScanner *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Perl-PrereqScanner-NotQuiteLite *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Perl-Tidy *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Perl-Version *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Perl4-CoreLibs *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Perl6-Export *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Perl6-Export-Attrs *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Perl6-Junction *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Perl6-Slurp *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PerlIO-eol *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PerlIO-gzip *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PerlIO-utf8_strict *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PerlIO-via-Bzip2 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PerlIO-via-dynamic *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PerlIO-via-symlink *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PerlIO-via-Timeout *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PerlX-Maybe *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PHP-Serialization *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-pip *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PkgConfig *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-POE *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-POE-Component-Cron *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-POE-Component-Pluggable *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-POE-Component-Schedule *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-POE-Component-Syndicator *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-POE-Test-Loops *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-POEx-Types *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PPI *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PPI-PowerToys *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PPI-XS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PPIx-Regexp *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PPIx-Utilities *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-prefork *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Probe-Perl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Proc-Background *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Proc-Daemon *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Proc-InvokeEditor *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Proc-PID-File *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Proc-Pidfile *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Proc-ProcessTable *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Proc-Queue *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Proc-Simple *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Proc-Wait3 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Proc-WaitStat *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-PV *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Python-Serialise-Marshal *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Readonly *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Readonly-XS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Ref-Util *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Ref-Util-XS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Regexp-Assemble *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Regexp-MatchContext *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Regexp-Parser *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Regexp-Shellish *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Regexp-Trie *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Reply *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Return-MultiLevel *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Return-Value *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-rlib *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Role-Basic *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Role-HasMessage *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Role-Identifiable *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Role-Tiny *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Rose-Object *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-RT-Authen-ExternalAuth *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-RT-Extension-ArticleTemplates *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Safe-Hole *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Safe-Isa *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Scalar-Defer *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Scalar-List-Utils *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Scalar-Util-Refcount *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Schedule-RateLimiter *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Scope-Guard *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Scope-Upper *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-SDL *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Search-Elasticsearch *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Set-Array *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Set-IntSpan *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Set-Object *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Set-Scalar *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Shell-Config-Generate *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Shell-Guess *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Shell-Perl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-ShipIt *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Signal-Mask *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-signatures *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Smart-Comments *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Software-License *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Sort-Key *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Sort-Maker *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Sort-Naturally *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Sort-Versions *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Specio *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Spiffy *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Spoon *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Stream-Buffered *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-strictures *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-String-Escape *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-String-Format *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-String-PerlIdentifier *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-String-Print *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-String-Util *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Struct-Dumb *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Sub-Exporter *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Sub-Exporter-ForMethods *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Sub-Exporter-GlobExporter *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Sub-Exporter-Progressive *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Sub-HandlesVia *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Sub-Identify *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Sub-Info *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Sub-Install *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Sub-Installer *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Sub-Name *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Sub-Override *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Sub-Quote *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Sub-Uplevel *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-subversion *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-SUPER *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-SVN-Class *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-SVN-Dump *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-SVN-Mirror *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-SVN-Notify *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-SVN-Simple *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Symbol-Global-Name *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-syntax *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Syntax-Keyword-Junction *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Sys-Syscall *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-System-Command *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Taint-Util *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-TAP-Formatter-HTML *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-TAP-Harness-Archive *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Task-Weaken *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tee *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Template-Plugin-Handy *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Template-Plugin-HashMerge *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Template-Plugin-ListMoreUtils *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Template-Plugin-ListUtil *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Template-Plugin-VMethods *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-Animation *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-Encoding *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-ProgressBar *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-ProgressBar-Quiet *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-ProgressBar-Simple *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-Prompt *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-ReadKey *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-ReadLine-Gnu *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-ReadLine-Perl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-ReadLine-TTYtter *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-ReadPassword *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-Screen *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-Shell *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-ShellUI *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-Size *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-Size-Any *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-Size-Perl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-Table *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Term-UI *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Aggregate *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Alien-CPP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-API *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Approx *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Assertions *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Base *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-BDD-Cucumber *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Bits *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-CheckDeps *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-CheckManifest *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Class *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-ClassAPI *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-CleanNamespaces *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Cmd *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Command-Simple *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Compile *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Continuous *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-CPAN-Meta *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-CPAN-Meta-JSON *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-CPAN-Meta-YAML *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Deep *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-DependentModules *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Differences *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Dir *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-DistManifest *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Distribution *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-EOL *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Exception *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Exit *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Expect *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-FailWarnings *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Fatal *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-File *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-File-Contents *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-File-ShareDir *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Fixture-DBIC-Schema *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-HexDifferences *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-HexString *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-HTTP-LocalServer *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Identity *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-InDistDir *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Inline *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Inter *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Kwalitee *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-LeakTrace *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-LectroTest *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Lib *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-LoadAllModules *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Log4perl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-LongString *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Manifest *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Memory-Cycle *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Metrics-Any *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-MinimumVersion *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Mock-LWP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-MockModule *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-MockObject *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Modern *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-More-Behaviour *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-More-UTF8 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Most *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Needs *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-NiceDump *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-NoTabs *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-NoWarnings *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Object *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Output *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Perl-Critic *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Pod *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Pod-Coverage *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Pod-Spelling-CommonMistakes *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-POE-Client-TCP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-POE-Server-TCP *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Refcount *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Reporter *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Requires *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Requires-Git *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Roo *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Script *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Script-Run *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-SharedFork *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Spec *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Spelling *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Stream *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Strict *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-SubCalls *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Taint *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-TempDir *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-TempDir-Tiny *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-TinyMocker *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Toolbox *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Trap *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Unit *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-UseAllModules *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-utf8 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Version *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Warn *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Warnings *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Weaken *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-Without-Module *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-WWW-Selenium *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-YAML-Meta *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test-YAML-Valid *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test2-Plugin-NoWarnings *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test2-Suite *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Test2-Tools-Explain *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-TheSchwartz *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-thrift *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Throwable *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tie-Array-AsHash *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tie-Array-Sorted *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tie-Cache *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tie-Cache-LRU *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tie-Cache-LRU-Expires *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tie-CPHash *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tie-Cycle *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tie-Function *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tie-IxHash *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tie-LLHash *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tie-RefHash-Weak *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tie-RegexpHash *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tie-Simple *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tie-ToObject *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tree-DAG_Node *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tree-R *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tree-Simple *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Tree-Simple-VisitorFactory *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Try-Tiny *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-TryCatch *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Type-Tiny *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Type-Tiny-XS *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Types-Serialiser *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-UNIVERSAL-can *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-UNIVERSAL-isa *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-UNIVERSAL-moniker *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-UNIVERSAL-require *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-UUID-Tiny *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Variable-Magic *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Want *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-WeakRef *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Wx-Perl-DataWalker *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-XString *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-XXX *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p8-platform
palmpower
pango pango: remove gmake dependency 2021-04-12 12:16:23 +00:00
pangomm pangomm: mention 1.4 API in DESCR and COMMENT 2021-05-31 20:04:34 +00:00
pangomm2.48 devel/pangomm2.48: import pangomm2.48-2.48.1 2021-05-31 22:29:20 +00:00
pangox-compat
papaya *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
pardiff
patch
patchelf patchelf: update to 0.12. 2021-01-25 10:39:22 +00:00
patchutils *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
pcc-libs
pccts pccts: Honor LDFLAGS and CFLAGS. 2021-05-31 12:05:52 +00:00
pcl-cvs
pcre pcre: grammar 2021-04-12 15:27:58 +00:00
pcre++
pcre-ocaml Recursive revbump associated with update of lang/ocaml 2021-03-08 08:12:45 +00:00
pcre2 pcre2: update to 10.37. 2021-05-31 11:13:04 +00:00
pdcurses
pear-Console_CommandLine
pedisassem
phabricator use versioned py-pygemnts 2021-04-06 14:36:48 +00:00
php-base58 php-base58: Import php-base58-1.0.2 as devel/php-base58 2021-03-11 13:18:46 +00:00
php-composer php-composer: Update to 2.0.14 2021-05-24 06:41:51 +00:00
php-ffi devel/php-ffi: add package version 7.4.16 2021-03-08 00:07:09 +00:00
php-gearman revbump for boost-libs 2021-04-21 13:24:06 +00:00
php-gettext
php-gmp
php-igbinary
php-libawl
php-memcache devel/php-memcache: commit forgot files 2021-03-13 14:29:47 +00:00
php-memcache2 devel/php-memcache2: add php-memcache 2.2.7 as php-memcache2 2021-03-07 15:36:43 +00:00
php-memcache4 devel/php-memcache4: add php-memcache4 version 4.0.5.2 2021-03-07 15:38:40 +00:00
php-memcached
php-mode
php-msgpack php-msgpack: Import php-msgpack-2.1.2 as devel/php-msgpack 2021-03-12 15:02:38 +00:00
php-opcache
php-pcntl
php-posix
php-psr
php-pthreads devel/php-pthreads: fix build problem 2021-03-07 08:11:02 +00:00
php-raphf
php-raphf2
php-shmop
php-sysvmsg
php-sysvsem
php-sysvshm
php-xcache
php-xdebug devel/php-xdebug: update to 3.0.4 2021-06-04 14:13:37 +00:00
phpstorm-bin
physfs
picasm
picopb
picotrace
picp
picprg
pilrc
pipestatus
pkg-config *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
pkgconf devel/pkgconf: also symlink pkg-config man page 2021-04-29 11:00:15 +00:00
plasma-wayland-protocols revbump for textproc/icu 2021-04-21 11:40:12 +00:00
ply
pmccabe
poco poco: honor CFLAGS and LDFLAGS 2021-04-08 08:21:58 +00:00
pointfree *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
polly
popt
poxml revbump for textproc/icu 2021-04-21 11:40:12 +00:00
prcs *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ProjectCenter revbump for textproc/icu 2021-04-21 11:40:12 +00:00
protobuf protobuf py-protobuf: updated to 3.17.3 2021-06-09 04:57:10 +00:00
protobuf-c
pstreams *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
pth
pthread-sem
purpose revbump for textproc/icu 2021-04-21 11:40:12 +00:00
pvs pvs: remove dead master site 2021-04-21 08:27:24 +00:00
pwlib
py-absl-py
py-adb
py-ailment py-angr: update to version 9.0.7833 2021-06-02 23:27:10 +00:00
py-aiocontextvars
py-aiofiles py-aiofiles: updated to 0.7.0 2021-05-17 07:59:52 +00:00
py-aiounittest
py-angr (devel/py-angr) Fix build by adding LDFLAGS+= rpath link to pyvex/lib 2021-06-06 01:36:13 +00:00
py-anytree
py-apipkg
py-appdirs
py-approvaltests Update to 0.8.0. From the changelog: 2021-05-24 10:16:13 +00:00
py-archinfo py-angr: update to version 9.0.7833 2021-06-02 23:27:10 +00:00
py-argcomplete py-argcomplete: updated to 1.12.3 2021-05-19 09:54:00 +00:00
py-argh
py-argparse
py-args
py-astor
py-astroid py-astroid: updated to 2.5.7 2021-06-01 05:14:56 +00:00
py-async-timeout
py-async_generator
py-at-spi
py-at-spi2
py-atomicwrites
py-atpublic py-atpublic: updated to 2.3 2021-04-16 05:40:25 +00:00
py-attrs
py-automat
py-autopep8 py-autopep8: updated to 1.5.7 2021-05-12 09:33:29 +00:00
py-babel py-babel: updated to 2.9.1 2021-04-29 07:43:02 +00:00
py-backcall
py-backports
py-backports.functools_lru_cache py-backports.functools_lru_cache: updated to 1.6.4 2021-04-16 05:53:37 +00:00
py-backports.os
py-backports.shutil_get_terminal_size
py-backports_abc
py-bcolz
py-behave
py-binaryornot
py-bintrees py-bintrees: updated to 2.2.0 2021-03-09 06:00:47 +00:00
py-bitarray py-bitarray: updated to 2.1.1 2021-06-13 17:29:37 +00:00
py-bitstring
py-blessings
py-blinker
py-boltons py-boltons: updated to 21.0.0 2021-05-31 13:39:34 +00:00
py-boost boost: updated to 1.76.0 2021-04-21 12:09:49 +00:00
py-bugzilla
py-buildbot py-buildbot: requires py-sqlite3. 2021-01-29 18:06:42 +00:00
py-buildbot-badges Add py-buildbot-badges 2.6.0 2021-01-28 21:23:30 +00:00
py-buildbot-console-view
py-buildbot-grid-view
py-buildbot-pkg
py-buildbot-waterfall-view
py-buildbot-worker
py-buildbot-www
py-bump2version
py-cachecontrol
py-cached-property
py-cachelib py-cachelib: updated to 0.1.1 2021-06-09 20:22:13 +00:00
py-cachetools py-cachetools: updated to 4.2.2 2021-05-07 18:18:11 +00:00
py-canonicaljson
py-capstone
py-case
py-cffi py-cffi: updated to 1.14.5 2021-02-16 20:41:09 +00:00
py-chai
py-characteristic
py-checker
py-cheetah
py-cheetah3
py-cle py-angr: update to version 9.0.7833 2021-06-02 23:27:10 +00:00
py-click
py-click-didyoumean py-click-didyoumean: added version 0.0.3 2021-05-07 05:12:21 +00:00
py-click-log
py-click-plugins devel/py-click-plugins: import py38-click-plugins-1.1.1 2021-04-06 09:59:00 +00:00
py-click-repl py-click-repl: py-prompt_toolkit has moved 2021-06-10 07:21:42 +00:00
py-click-threading py-click-threading: updated to 0.5.0 2021-05-31 09:52:27 +00:00
py-clickclick
py-codespell py-codespell: this requires at least python 3.5 nowadays 2021-01-26 20:40:57 +00:00
py-codestyle py-codestyle: updated to 2.7.0 2021-03-15 07:20:35 +00:00
py-cogapp
py-compizconfig revbump for textproc/icu 2021-04-21 11:40:12 +00:00
py-configargparse py-configargparse: updated to 1.4.1 2021-05-11 04:57:59 +00:00
py-configobj
py-configparser
py-constantly
py-constants
py-construct py-construct: updated to 2.10.67 2021-05-27 11:56:24 +00:00
py-contextlib2
py-contextvars
py-cookiecutter py-cookiecutter: updated to 1.7.3 2021-05-27 12:02:34 +00:00
py-cooldict
py-coverage py-coverage: updated to 5.5 2021-05-18 15:26:46 +00:00
py-cparser
py-CppHeaderParser
py-cpplint py-cpplint: updated to 1.5.5 2021-05-24 09:25:13 +00:00
py-cppy py-cppy: added version 1.1.0 2021-05-05 09:28:49 +00:00
py-crayons py-crayons: updated to 0.4.0 2021-03-21 20:10:15 +00:00
py-curses
py-cursespanel
py-curtsies py-curtsies: updated to 0.3.5 2021-03-20 15:12:22 +00:00
py-cwcwidth py-cwcwidth: added version 0.1.4 2021-03-20 15:10:41 +00:00
py-cyordereddict
py-cython py-cython: updated to 0.29.23 2021-04-14 19:25:15 +00:00
py-cytoolz py-cytoolz: updated to 0.11.0 2021-02-07 19:27:27 +00:00
py-d2to1
py-daemon py-daemon: fix BUILD_DEPENDS 2021-06-02 11:42:17 +00:00
py-daemonize
py-darcsver
py-dash
py-dataclasses py-dataclasses: added version 0.8 2021-05-25 10:08:12 +00:00
py-ddt py-ddt: updated to 1.4.2 2021-03-20 09:30:40 +00:00
py-decorator
py-deepstate
py-Deprecated
py-deprecation
py-dialog
py-dialog2
py-dict2xml
py-distorm3 py-distorm3: updated to 3.5.2 2021-03-20 07:00:47 +00:00
py-distro
py-doc8
py-docopt
py-docstyle
py-doctor
py-dogpile-cache
py-dotenv
py-dulwich py-dulwich: updated to 0.20.23 2021-05-31 12:33:28 +00:00
py-editorconfig-core py-editorconfig-core: updated to 0.12.3 2021-03-20 18:55:52 +00:00
py-entrypoints
py-enum34
py-exam
py-execnet py-execnet: updated to 1.9.0 2021-06-13 17:28:40 +00:00
py-expressions
py-extension-helpers
py-extras
py-extratools
py-factory_boy py-factory_boy: updated to 3.2.0 2021-02-05 20:36:39 +00:00
py-fakefs
py-faker py-faker: updated to 8.1.4 2021-05-14 06:56:14 +00:00
py-falcon
py-fann2
py-fasteners (devel/py-fasteners) Build fix for py36 2021-02-15 14:18:35 +00:00
py-fastimport py-fastimport: updated to 0.9.13 2021-06-09 14:21:11 +00:00
py-filebytes
py-filechunkio
py-filelock
py-fixtures
py-flake8 py-flake8: updated to 3.9.2 2021-05-10 05:57:50 +00:00
py-flake8-docstrings py-flake8-docstrings: updated to 1.6.0 2021-03-19 07:35:04 +00:00
py-flake8-import-order
py-flake8-polyfill
py-flakes py-flakes: updated to 2.3.1 2021-04-05 11:17:09 +00:00
py-flaky
py-flexmock
py-flit
py-flit_core
py-flufl.i18n
py-flufl.lock
py-flufl.testing
py-freezegun
py-frozendict
py-func_timeout
py-funcparserlib
py-funcsigs
py-functools32
py-future
py-futures
py-fuzzywuzzy
py-game
py-gcovr
py-generate
py-gflags
py-gitdb py-gitdb: updated to 4.0.7 2021-04-02 08:44:46 +00:00
py-gitinspector py-gitinspector: build fix for python>=3.8 2021-02-25 02:03:47 +00:00
py-gitinspector-devel
py-gitpython py-gitpython: updated to 3.1.17 2021-05-14 06:54:23 +00:00
py-gobject py-gobject: Set Python incompatibility from 3.8 2021-05-15 12:10:22 +00:00
py-gobject-shared
py-gobject3
py-gobject3-common
py-google-api-core py-google-api-core: updated to 1.26.3 2021-04-05 11:52:56 +00:00
py-google-apputils
py-google-i18n-address
py-googleapis-common-protos py-googleapis-common-protos: updated to 1.53.0 2021-03-05 19:29:58 +00:00
py-grako
py-greenlet py-greenlet: updated to 1.0.0 2021-03-03 18:05:01 +00:00
py-guppy3
py-h5py py-h5py: updated to 3.2.1 2021-06-07 11:57:50 +00:00
py-hamcrest
py-hash
py-hexbytes (devel/py-hexbytes) Fix build by py36, UnicodeDecodeError: 2021-02-18 14:42:52 +00:00
py-hg-evolve py-hg-evolve: add link to mailing list for change logs 2021-05-20 09:34:46 +00:00
py-hg-fastimport hg-fastimport: New upstream, update to version 0.1.1 2021-02-15 14:39:15 +00:00
py-hg-git Update package to 0.10, fixing an "AttributeError: 'bytes' object has 2021-03-24 09:25:09 +00:00
py-hglib
py-hgtools
py-hyperscan
py-hypothesis py-hypothesis: updated to 6.14.0 2021-06-13 18:08:24 +00:00
py-hypothesis4
py-idle
py-ijson Add devel/py-ijson 2021-06-06 10:05:42 +00:00
py-immutabledict py-immutabledict: not for Python 2.7 2021-06-04 04:43:06 +00:00
py-importlib-metadata
py-importlib-resources
py-incremental
py-iniconfig
py-InlineEgg
py-inquirer
py-intelhex
py-intervaltree
py-iowait
py-ipaddr
py-ipykernel py-ipykernel: updated to 5.5.5 2021-06-10 18:47:24 +00:00
py-ipython py-ipython: updated to 7.24.1 2021-06-10 07:19:46 +00:00
py-ipython5 py-ipython5: depend on appnope on Darwin, fix ALTERNATIVES 2021-06-10 07:03:53 +00:00
py-ipython_genutils
py-iso-639
py-iso3166
py-isort
py-itanium_demangler
py-jaraco.classes py-jaraco.classes: updated to 3.2.1 2021-02-23 11:40:54 +00:00
py-jaraco.functools
py-jaraco.itertools
py-jaraco_util
py-jersey
py-joblib py-joblib: updated to 1.0.1 2021-02-10 08:24:36 +00:00
py-jupyter-console py-jupyter-console: updated to 6.4.0 2021-06-10 18:53:58 +00:00
py-jupyter_client py-jupyter_client: updated to 6.1.12 2021-06-10 18:46:05 +00:00
py-jupyter_core py-jupyter_core: updated to 4.7.1 2021-06-10 18:44:33 +00:00
py-kafka-python
py-kaitaistruct py-kaitaistruct: updated to 0.9 2021-04-06 20:01:36 +00:00
py-kitchen
py-kjbuckets
py-lama
py-lazr.config
py-lazr.delegates
py-lazy-object-proxy py-lazy-object-proxy: updated to 1.6.0 2021-05-10 14:50:44 +00:00
py-libevent-rpcgen
py-libmc
py-libusb1
py-limits
py-line_profiler py-line_profiler: mark as not for Python 3.6 2021-06-11 07:11:27 +00:00
py-linecache2
py-llvmlite
py-lockfile
py-logan
py-logbook
py-logilab-astng py-logilab-astng: mark as not for Python 2.7 2021-05-12 06:55:37 +00:00
py-logilab-common py-logilab-common: updated to 1.8.1 2021-05-12 06:55:06 +00:00
py-lru-dict py-lru-dict: updated to 1.1.7 2021-02-03 18:38:02 +00:00
py-lupa
py-macaroons
py-macholib
py-mako
py-mando
py-manticore
py-mccabe
py-memcached
py-memory-profiler py-memory-profiler: updated to 0.58.0 2021-01-21 20:14:40 +00:00
py-mercurial py-mercurial: remove obsolete feature patch 2021-05-22 23:11:31 +00:00
py-minidump
py-minimock
py-mixbox
py-mmh3
py-mock
py-modulegraph
py-more-itertools py-more-itertools: updated to 8.8.0 2021-05-25 05:20:12 +00:00
py-more-itertools2
py-mox
py-msgpack
py-mulpyplexer
py-multipledispatch
py-newt
py-nose
py-nose-exclude
py-nose2
py-nosexcover
py-ode
py-olefile
py-open-vcdiff
py-Optik
py-ordered-set
py-oset
py-packaging py-packaging: update to 20.9. 2021-02-03 20:18:44 +00:00
py-parameterized py-parameterized: updated to 0.8.1 2021-05-25 10:31:48 +00:00
py-ParamUnittest
py-path.py use versioned py-pygemnts 2021-04-06 14:36:48 +00:00
py-pathlib
py-pathlib2
py-pathspec
py-pbr
py-pebble
py-pep8
py-pep517 py-pep517: updated to 0.10.0 2021-03-15 12:08:11 +00:00
py-pexpect
py-pip
py-pkgconfig py-pkgconfig: updated to 1.5.4 2021-06-07 11:56:11 +00:00
py-pkginfo py-pkginfo: updated to 1.7.0 2021-05-08 06:19:33 +00:00
py-pluggy
py-plumbum
py-ply py-ply: updated to 3.11 2021-01-19 21:05:22 +00:00
py-polib
py-pqueue
py-prefixspan
py-pretend
py-progressbar2
py-prompt_toolkit py-prompt_toolkit: moved version 3.0.18 from py-prompt_toolkit2 2021-06-10 07:08:56 +00:00
py-prompt_toolkit1 py-prompt_toolkit1: added version 1.0.18 2021-06-10 05:42:11 +00:00
py-proteus
py-protobuf protobuf py-protobuf: updated to 3.17.3 2021-06-09 04:57:10 +00:00
py-py
py-py2app
py-pybind11 py-pybind11: update to 2.6.2 2021-04-05 18:31:56 +00:00
py-pydispatcher
py-pyelftools
py-pygit2 py-pygit2: fix PLIST 2021-02-03 13:51:31 +00:00
py-pylint py-pylint: updated to 2.8.2 2021-04-27 04:45:54 +00:00
py-pylint-plugin-utils
py-pylru py-pylry: import version 1.2.0 2021-02-25 15:10:08 +00:00
py-Pympler
py-pyobjc
py-pyobjc-core
py-pyobjc-framework-Accounts
py-pyobjc-framework-AddressBook
py-pyobjc-framework-AppleScriptKit
py-pyobjc-framework-AppleScriptObjC
py-pyobjc-framework-ApplicationServices
py-pyobjc-framework-Automator
py-pyobjc-framework-AVFoundation
py-pyobjc-framework-AVKit
py-pyobjc-framework-CalendarStore
py-pyobjc-framework-CFNetwork
py-pyobjc-framework-CloudKit
py-pyobjc-framework-Cocoa
py-pyobjc-framework-Collaboration
py-pyobjc-framework-ColorSync
py-pyobjc-framework-Contacts
py-pyobjc-framework-ContactsUI
py-pyobjc-framework-CoreAudio
py-pyobjc-framework-CoreBluetooth
py-pyobjc-framework-CoreData
py-pyobjc-framework-CoreLocation
py-pyobjc-framework-CoreMedia
py-pyobjc-framework-CoreML
py-pyobjc-framework-CoreServices
py-pyobjc-framework-CoreSpotlight
py-pyobjc-framework-CoreText
py-pyobjc-framework-CoreWLAN
py-pyobjc-framework-CryptoTokenKit
py-pyobjc-framework-DictionaryServices
py-pyobjc-framework-DiskArbitration
py-pyobjc-framework-EventKit
py-pyobjc-framework-ExceptionHandling
py-pyobjc-framework-ExternalAccessory
py-pyobjc-framework-FinderSync
py-pyobjc-framework-FSEvents
py-pyobjc-framework-GameCenter
py-pyobjc-framework-GameController
py-pyobjc-framework-GameKit
py-pyobjc-framework-GameplayKit
py-pyobjc-framework-ImageCaptureCore
py-pyobjc-framework-InputMethodKit
py-pyobjc-framework-InstallerPlugins
py-pyobjc-framework-InstantMessage
py-pyobjc-framework-Intents
py-pyobjc-framework-IOSurface
py-pyobjc-framework-iTunesLibrary
py-pyobjc-framework-LatentSemanticMapping
py-pyobjc-framework-LaunchServices
py-pyobjc-framework-libdispatch
py-pyobjc-framework-LocalAuthentication
py-pyobjc-framework-MapKit
py-pyobjc-framework-MediaAccessibility
py-pyobjc-framework-MediaLibrary
py-pyobjc-framework-MediaPlayer
py-pyobjc-framework-Metal
py-pyobjc-framework-MetalKit
py-pyobjc-framework-ModelIO
py-pyobjc-framework-MultipeerConnectivity
py-pyobjc-framework-NaturalLanguage
py-pyobjc-framework-NetFS
py-pyobjc-framework-NetworkExtension
py-pyobjc-framework-NotificationCenter
py-pyobjc-framework-OpenDirectory
py-pyobjc-framework-Photos
py-pyobjc-framework-PhotosUI
py-pyobjc-framework-PreferencePanes
py-pyobjc-framework-PubSub
py-pyobjc-framework-QTKit
py-pyobjc-framework-Quartz
py-pyobjc-framework-SafariServices
py-pyobjc-framework-SceneKit
py-pyobjc-framework-ScreenSaver
py-pyobjc-framework-ScriptingBridge
py-pyobjc-framework-SearchKit
py-pyobjc-framework-Security
py-pyobjc-framework-SecurityInterface
py-pyobjc-framework-ServiceManagement
py-pyobjc-framework-Social
py-pyobjc-framework-SpriteKit
py-pyobjc-framework-StoreKit
py-pyobjc-framework-SyncServices
py-pyobjc-framework-SystemConfiguration
py-pyobjc-framework-Vision
py-pyobjc-framework-WebKit
py-pyparsing
py-Pyro
py-pyrsistent
py-pysha3
py-pysvn revbump for textproc/icu 2021-04-21 11:40:12 +00:00
py-pyte
py-pytemplate
py-pyutil
py-pyvex py-pyvex: remove patch that was removed from distinfo on last update 2021-06-03 07:36:48 +00:00
py-queuelib py-queuelib: updated to 1.6.1 2021-05-12 08:03:51 +00:00
py-quixote
py-radon py-radon: updated to 4.5.2 2021-05-24 09:15:46 +00:00
py-random2
py-rauth
py-readlike
py-readline
py-rednose
py-reparser
py-repoze.lru
py-requests
py-requests-file
py-requests-ftp
py-requests-futures
py-requests-mock py-requests-mock: updated to 1.9.3 2021-06-01 05:22:36 +00:00
py-requests-toolbelt
py-requests-unixsocket
py-restructuredtext_lint
py-retry_decorator
py-rlp py-rlp: do not depend on pip 2021-04-11 16:59:36 +00:00
py-rope py-rope: updated to 0.19.0 2021-04-29 17:08:01 +00:00
py-rply py-rply: updated to 0.7.8 2021-02-24 19:41:40 +00:00
py-ruamel-base
py-ruamel-ordereddict
py-ruamel-yaml py-ruamel-yaml: updated to 0.16.13 2021-03-05 13:45:28 +00:00
py-ruamel-yaml-clib
py-sarge py-sarge: import version 0.1.6 2021-02-25 15:23:21 +00:00
py-scandir
py-scard
py-selectors2
py-semantic_version
py-sentry-sdk py-sentry-sdk: update to version 1.1.0 2021-06-02 22:46:55 +00:00
py-serpent
py-setuptools py-setuptools: updated to 56.0.0 2021-05-04 06:17:59 +00:00
py-setuptools-rust
py-setuptools44
py-setuptools_scm py-setuptools_scm: updated to 5.0.2 2021-03-05 07:55:44 +00:00
py-setuptools_scm_git_archive
py-setuptools_trial
py-simplegeneric
py-singledispatch
py-slugify
py-smmap py-smmap: updated to 4.0.0 2021-02-05 21:38:11 +00:00
py-sortedcontainers py-sortedcontainers: updated to 2.4.0 2021-05-17 08:06:53 +00:00
py-Spans
py-speaklater
py-stem
py-stevedore
py-stsci.distutils
py-subprocess32
py-subversion *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
py-subvertpy revbump for textproc/icu 2021-04-21 11:40:12 +00:00
py-sure
py-sysctl
py-tenacity py-tenacity: added version 7.0.0 2021-05-25 10:15:41 +00:00
py-termcolor
py-test py-test: updated to 6.2.4 2021-05-05 04:48:27 +00:00
py-test-assume
py-test-asyncio py-test-asyncio: updated to 0.15.1 2021-04-22 12:06:38 +00:00
py-test-benchmark
py-test-cache
py-test-cov py-test-cov: updated to 2.12.0 2021-05-18 15:28:01 +00:00
py-test-fixture-config
py-test-flake8
py-test-forked
py-test-isort
py-test-localserver
py-test-mock
py-test-pylint
py-test-pythonpath
py-test-random-order
py-test-randomly
py-test-relaxed
py-test-rerunfailures
py-test-runner
py-test-shutil
py-test-sugar
py-test-testmon
py-test-timeout
py-test-utils
py-test-virtualenv
py-test-watch
py-test-xdist
py-test-xprocess py-test-xprocess: updated to 0.17.1 2021-03-15 14:57:01 +00:00
py-test4
py-testpath
py-testrepository
py-testresources
py-testscenarios
py-testtools
py-thrift thrift: updated to 0.14.1 2021-04-12 19:23:27 +00:00
py-tlsh
py-toolz py-toolz: updated to 0.11.1 2021-02-07 19:23:29 +00:00
py-tortoisehg py-tortoisehg: update to 5.8. 2021-05-20 09:32:37 +00:00
py-tox
py-traceback2
py-traitlets py-traitlets: updated to 5.0.5 2021-06-10 05:47:11 +00:00
py-traitlets4 moved py-traitlets to py-traitlets4 2021-06-10 05:43:23 +00:00
py-treq
py-tryton revbump for textproc/icu 2021-04-21 11:40:12 +00:00
py-trytond
py-tubes Add py-tubes version 0.2.0 2021-01-28 21:17:37 +00:00
py-txaio py-txaio: updated to 21.2.1 2021-03-02 12:00:10 +00:00
py-txgithub
py-txrequests
py-typed-ast py-typed-ast: updated to 1.4.3 2021-04-14 07:05:57 +00:00
py-typing py-typing: updated to 3.10.0.0 2021-05-13 17:25:30 +00:00
py-typing-extensions py-typing-extensions: updated to 3.10.0.0 2021-05-13 17:25:47 +00:00
py-unit
py-unitgui
py-unittest-mixins
py-unittest2
py-unittest2pytest
py-unpaddedbase64
py-urwid
py-usb
py-utils
py-uuid
py-uvloop py-uvloop: updated to 0.15.2 2021-02-19 05:45:07 +00:00
py-vcversioner
py-vine py-vine: updated to 5.0.0 2021-05-07 17:55:20 +00:00
py-virtualenv
py-visitor
py-wasm
py-wcwidth
py-wheel
py-whichcraft
py-windbg
py-wrapt
py-xbe
py-xdg py-xdg: does not need C compiler 2021-03-20 14:55:57 +00:00
py-xdis py-xdis: updated to 5.0.9 2021-04-22 16:07:43 +00:00
py-xopen py-xopen: updated to 1.1.0 2021-01-21 19:50:20 +00:00
py-yapf py-yapf: updated to 0.31.0 2021-03-14 08:23:15 +00:00
py-zanata-python-client
py-zc.lockfile
py-zconfig py-zconfig: updated to 3.6.0 2021-05-25 05:38:30 +00:00
py-zope.deferredimport
py-zope.deprecation
py-zope.exceptions
py-zope.hookable
py-zope.testing
py-ZopeComponent py-ZopeComponent: updated to 5.0.0 2021-04-14 05:03:53 +00:00
py-ZopeConfiguration
py-ZopeEvent
py-ZopeI18NMessageid
py-ZopeInterface py-ZopeInterface: updated to 5.4.0 2021-04-15 18:45:13 +00:00
py-ZopeSchema py-ZopeSchema: updated to 6.1.0 2021-04-14 04:58:50 +00:00
py-ZopeTestrunner py-ZopeTestrunner: updated to 5.3.0 2021-04-14 04:57:39 +00:00
pycharm-bin
python-mode
pythontidy
qbzr
qconf revbump for textproc/icu 2021-04-21 11:40:12 +00:00
qjson
qore-uuid-module
qtscriptgenerator
quilt *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
R-assertthat
R-BH
R-bindr
R-bit (devel/R-bit) Update 1.1.14 to 4.0.4 2021-06-06 23:44:37 +00:00
R-bit64 (devel/R-bit64) Update DEPENDS version for R-bit 2021-06-06 23:49:29 +00:00
R-blob
R-brio (devel/R-brio) Updated 1.1.0 to 1.1.2 2021-06-05 04:28:38 +00:00
R-cachem (devel/R-cachem) import R-cachem-1.0.5 2021-05-31 22:33:11 +00:00
R-callr (devel/R-callr) Updated 3.5.1 to 3.7.0 (make test fails at PDF creation) 2021-05-31 14:39:56 +00:00
R-caTools (devel/R-caTools) Updated 1.18.0 to 1.18.2 2021-06-05 04:44:57 +00:00
R-checkmate
R-cli (devel/R-cli) Updated 2.2.0 to 2.5.0 2021-05-31 22:04:13 +00:00
R-cliapp
R-clipr
R-covr
R-crayon
R-cyclocomp
R-desc (devel/R-desc) Updated 1.2.0 to 1.3.0 2021-06-12 02:37:56 +00:00
R-devtools (devel/R-devtools) Updated 2.4.1 to 2.4.2 2021-06-12 03:01:22 +00:00
R-diffobj (devel/R-diffobj) Updated 0.3.2 to 0.3.4 2021-06-06 12:19:58 +00:00
R-disposables (devel/R-disposables) import R-disposables-1.0.3 2021-05-30 02:36:31 +00:00
R-evaluate
R-fansi (devel/R-fansi) Updated 0.4.0 to 0.5.0 2021-06-05 08:05:51 +00:00
R-fastmap (devel/R-fastmap) import R-fastmap-1.1.0 2021-05-31 22:22:32 +00:00
R-filelock
R-fs
R-gert (devel/R-gert) Updated 1.0.2 to 1.3.0 2021-06-06 12:29:26 +00:00
R-git2r (devel/R-git2r) Updated 0.27.1 to 0.28.0 2021-02-07 01:21:16 +00:00
R-glue (devel/R-glue) Updated 1.4.1 to 1.4.2 2021-06-06 12:35:52 +00:00
R-ini
R-inline : 2021-06-06 12:53:18 +00:00
R-IRdisplay (devel/R-IRdisplay) Updated 0.7.0 to 1.0, explicit NEWS.md unknown 2021-06-06 15:19:02 +00:00
R-IRkernel
R-iterators
R-lazyeval
R-lifecycle (devel/R-lifecycle) Updated 0.2.0 to 1.0.0 2021-05-31 22:15:16 +00:00
R-lintr
R-lpSolve
R-magrittr
R-memoise (devel/R-memoise) Updated 1.1.0 to 2.0.0 2021-05-31 22:43:04 +00:00
R-mockery
R-pak
R-pkgbuild
R-pkgcache (devel/R-pkgcache) Add missing DEPENDS+= R-jsonlite-[0-9]* 2021-06-03 21:01:07 +00:00
R-pkgconfig (devel/R-pkgconfig) Updated 2.0.2 to 2.0.3 2021-05-30 02:46:26 +00:00
R-pkgKitten (devel/R-pkgKitten) Updated 0.1.5 to 0.2.1 2021-06-01 13:19:41 +00:00
R-pkgload (devel/R-pkgload) Updated 1.1.0 to 1.2.1 2021-06-01 13:31:23 +00:00
R-plogr
R-prettycode
R-proto
R-purrr
R-R6
R-rappdirs (devel/R-rappdirs) Updatd 0.3.1 to 0.3.3 2021-06-06 12:59:29 +00:00
R-rcmdcheck
R-Rcpp (devel/R-Rcpp) Updated 1.0.5 to 1.0.6 2021-02-06 14:41:29 +00:00
R-rematch
R-rematch2
R-remotes (devel/R-remotes) Updated 2.3.0 to 2.4.0 2021-06-12 01:43:34 +00:00
R-repr (devel/R-repr) 2021-06-06 13:07:29 +00:00
R-rex
R-rio
R-rlang (devel/R-lang) Updated 0.4.10 to 0.4.11 2021-06-05 13:06:41 +00:00
R-roxygen2
R-rprojroot
R-RUnit
R-rversions
R-sessioninfo
R-tcltk2
R-testit (devel/R-testit) Updated 0.12 to 0.13, explicit NEWS.md not known 2021-06-01 13:36:08 +00:00
R-testthat (devel/R-testthat) Updated 3.0.1 to 3.0.2 2021-06-06 13:11:49 +00:00
R-tidyselect
R-tinytest
R-usethis (devel/R-usethis) Updated 2.0.0 to 2.0.1 2021-05-31 21:50:20 +00:00
R-uuid
R-waldo (devel/R-waldo) Updated 0.2.3 to 0.2.5 2021-06-06 13:57:00 +00:00
R-whisker
R-withr (devel/R-withr) Update 2.4.1 to 2.4.2 2021-06-12 01:37:24 +00:00
R-xfun (devel/R-xfun) Update TEST_DEPENDS+, fix typo 2021-05-31 23:48:58 +00:00
radamsa
radare2 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
radare2-cutter revbump for boost-libs 2021-04-21 13:24:06 +00:00
ragel
rainbow-delimiters-el
range-v3
rapidsvn revbump for textproc/icu 2021-04-21 11:40:12 +00:00
ratfor
RBTools
rcs
rdp
RE-flex
re2
re2c re2c: update to 2.1.1. 2021-04-01 16:46:39 +00:00
readline
rebar
rebar3 rebar3: Update to 3.14.4 2021-03-19 16:42:47 +00:00
rebar21 rebar21: Import copy of rebar-2.6.4 for Erlang 21. 2021-01-27 16:16:44 +00:00
refinecvs *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
reftools Revbump all Go packages after go116 update 2021-06-06 12:18:40 +00:00
remake
Renaissance revbump for textproc/icu 2021-04-21 11:40:12 +00:00
reposurgeon
rgbds
rinutils *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
robin-map
ropper
roundup
rox-lib
rpc2 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
rscode
rsltc
rt-mysql *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
rt-pgsql
rt4 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
rttr
ruby-abstract
ruby-activejob52 www/ruby-rails52: update to 5.2.5 2021-04-11 13:20:08 +00:00
ruby-activejob60 www/ruby-rails60: update to 6.0.3.7 2021-05-08 14:02:33 +00:00
ruby-activejob61 www/ruby-rails61: update to 6.1.3.2 2021-05-08 14:08:55 +00:00
ruby-activemodel52 www/ruby-rails52: update to 5.2.5 2021-04-11 13:20:08 +00:00
ruby-activemodel60 www/ruby-rails60: update to 6.0.3.7 2021-05-08 14:02:33 +00:00
ruby-activemodel61 www/ruby-rails61: update to 6.1.3.2 2021-05-08 14:08:55 +00:00
ruby-activestorage52 www/ruby-rails52: update to 5.2.5 2021-04-11 13:20:08 +00:00
ruby-activestorage60 www/ruby-rails60: update to 6.0.3.7 2021-05-08 14:02:33 +00:00
ruby-activestorage61 www/ruby-rails61: update to 6.1.3.2 2021-05-08 14:08:55 +00:00
ruby-activesupport52 www/ruby-rails52: update to 5.2.5 2021-04-11 13:20:08 +00:00
ruby-activesupport60 www/ruby-rails60: update to 6.0.3.7 2021-05-08 14:02:33 +00:00
ruby-activesupport61 www/ruby-rails61: update to 6.1.3.2 2021-05-08 14:08:55 +00:00
ruby-algorithms devel/ruby-algorithms: update to 1.0.0 2021-05-04 07:43:49 +00:00
ruby-amstd
ruby-approvaltests Initial import of ruby-approvaltests, an assertion/verification library 2021-06-07 19:55:27 +00:00
ruby-assistance
ruby-atk
ruby-backports devel/ruby-backports: update to 3.21.0 2021-05-04 07:45:53 +00:00
ruby-bindata devel/ruby-bindata: update to 2.4.10 2021-05-23 08:19:31 +00:00
ruby-bit-struct devel/ruby-bit-struct: update to 0.17 2021-05-04 07:49:13 +00:00
ruby-blankslate
ruby-bond
ruby-bsearch
ruby-byaccr
ruby-byebug
ruby-c21e
ruby-celluloid
ruby-celluloid-essentials
ruby-celluloid-extras
ruby-celluloid-fsm
ruby-celluloid-pool
ruby-celluloid-supervision
ruby-classy_hash
ruby-cmd
ruby-concurrent-ruby devel/ruby-concurrent-ruby: update to 1.1.8 2021-01-26 14:53:05 +00:00
ruby-contracts devel/ruby-contracts: update to 0.16.1 2021-05-04 08:19:51 +00:00
ruby-cucumber-core devel/ruby-cucumber-core: update to 9.0.1 2021-05-23 09:45:55 +00:00
ruby-cucumber-expressions devel/ruby-cucumber-expressions: update to 16.0.0 2021-05-23 09:33:50 +00:00
ruby-cucumber-messages devel/ruby-cucumber-messages; update to 16.0.1 2021-05-29 08:27:47 +00:00
ruby-cucumber-tag-expressions devel/ruby-cucumber-tag-expressions: add package version 3.0.1 2021-05-23 09:41:47 +00:00
ruby-cucumber-wire devel/ruby-cucumber-wire: update to 5.0.1 2021-05-23 09:47:07 +00:00
ruby-curses devel/ruby-curses: update to 1.4.1 2021-05-29 08:30:43 +00:00
ruby-daemon_controller
ruby-deep_merge
ruby-delayer
ruby-delayer-deferred
ruby-dep Mark these packages Ruby 3.0 incompatible 2021-02-14 15:09:29 +00:00
ruby-deprecated
ruby-dhaka
ruby-diva
ruby-docile devel/ruby-docile: update to 1.4.0 2021-05-23 13:25:28 +00:00
ruby-eet ruby-eet: remove dead master site 2021-04-21 08:26:08 +00:00
ruby-equatable devel/ruby-equatable: update to 0.7.0 2021-05-04 13:37:18 +00:00
ruby-eventmachine devel/ruby-eventmachine: fix build problem with Ruby 3.0 2021-02-14 15:27:51 +00:00
ruby-extlib
ruby-facade
ruby-fast_gettext
ruby-ffi devel/ruby-ffi: update to 1.15.1 2021-05-29 08:32:13 +00:00
ruby-ffi-compiler
ruby-ffi-yajl devel/ruby-ffi-yajl: update to 2.4.0 2021-05-04 13:32:41 +00:00
ruby-fiddle devel/ruby-fiddle: add support for Ruby 3.0 2021-02-14 14:34:54 +00:00
ruby-filesize
ruby-flexmock
ruby-forwardable-extended
ruby-gemcutter devel/ruby-gemcuttre: fix build with Ruby 3.0 2021-02-14 14:57:34 +00:00
ruby-generator
ruby-getopt devel/ruby-getopt: update to 1.6.0 2021-03-07 15:05:59 +00:00
ruby-gettext devel/ruby-gettext: update to 3.3.8 2021-06-10 15:49:25 +00:00
ruby-gettext-activerecord
ruby-gettext-rails
ruby-gettext-setup
ruby-gettext_i18n_rails
ruby-gio2
ruby-glib2
ruby-globalid
ruby-gobject-introspection
ruby-hashery
ruby-heckle
ruby-highline
ruby-hike
ruby-hocon
ruby-i18n devel/ruby-i18n: update to 1.8.10 2021-05-04 14:11:36 +00:00
ruby-i18n12
ruby-idn
ruby-iniparse
ruby-inline
ruby-instance_storage
ruby-io-like
ruby-iruby devel/ruby-iruby: add support for pkg_alternatives 2021-05-29 15:05:24 +00:00
ruby-kgio
ruby-lazy_priority_queue
ruby-libyajl2 devel/ruby-libyajl2: update to 2.1.0 2021-05-04 14:08:30 +00:00
ruby-little-plugger
ruby-locale
ruby-locale-rails
ruby-lockfile
ruby-log4r
ruby-logging
ruby-loquacious
ruby-marcel devel/ruby-marcel: update to 1.0.1 2021-04-12 00:02:52 +00:00
ruby-memcache
ruby-memoist
ruby-mercenary
ruby-metaclass
ruby-metaid
ruby-metasm
ruby-middleware
ruby-minitest devel/ruby-minitest: update to 5.14.4 2021-02-28 15:08:08 +00:00
ruby-mixlib-authentication devel/ruby-mixlib-authentication: update to 3.0.10 2021-03-21 12:52:17 +00:00
ruby-mixlib-cli
ruby-mixlib-config
ruby-mixlib-log
ruby-mixlib-shellout devel/ruby-mixlib-shellout: udpate to 3.2.5 2021-02-14 13:37:17 +00:00
ruby-mkrf
ruby-mocha
ruby-msgpack devel/ruby-msgpack: update to 1.4.2 2021-02-03 14:10:42 +00:00
ruby-multi_test
ruby-mustache
ruby-native-package-installer devel/ruby-native-package-installer: update to 1.1.1 2021-03-07 14:34:32 +00:00
ruby-ncurses
ruby-necromancer
ruby-needle
ruby-nenv
ruby-octokit devel/ruby-octokit: update to 4.21.0 2021-05-04 14:20:10 +00:00
ruby-ole
ruby-open4
ruby-pango
ruby-parseconfig
ruby-parser devel/ruby-parser: update to 3.16.0 2021-05-23 13:48:00 +00:00
ruby-parsetree
ruby-parslet
ruby-pastel
ruby-pathname2 devel/ruby-pathname2: update to 1.8.4 2021-01-26 14:54:21 +00:00
ruby-pathutil
ruby-pkg-config devel/ruby-pkg-config: update to 1.4.6 2021-05-04 14:35:49 +00:00
ruby-polyglot
ruby-posix-spawn
ruby-power_assert devel/ruby-power_assert: update to 2.0.0 2021-01-26 15:20:59 +00:00
ruby-priority-queue devel/ruby-priority-queue: fix build problem with Ruby 3.0 2021-02-14 14:58:20 +00:00
ruby-protobuf-cucumber
ruby-pycall devel/ruby-pycall: update to 1.4.0 2021-05-29 15:00:57 +00:00
ruby-racc Add missing closing double-quote. 2021-03-22 13:21:53 +00:00
ruby-railties52 www/ruby-rails52: update to 5.2.5 2021-04-11 13:20:08 +00:00
ruby-railties60 www/ruby-rails60: update to 6.0.3.7 2021-05-08 14:02:33 +00:00
ruby-railties61 www/ruby-rails61: update to 6.1.3.2 2021-05-08 14:08:55 +00:00
ruby-randexp
ruby-rb-fsevent devel/ruby-rb-fsevent: update to 0.11.0 2021-05-09 04:18:42 +00:00
ruby-rb-inotify devel/ruby-rb-inotify: reduce pkglint warning 2021-02-05 17:06:55 +00:00
ruby-rb-kqueue devel/ruby-rb-kqueue: update to 0.2.6 2021-05-04 14:56:15 +00:00
ruby-rbtree
ruby-rcsparse
ruby-rd-mode
ruby-readline
ruby-red-colors devel/ruby-red-colors: update to 0.1.2 2021-05-29 15:10:16 +00:00
ruby-red-datasets devel/ruby-red-datasets: add package version 0.1.2 2021-06-10 14:31:04 +00:00
ruby-redmine devel/ruby-redmine: update to 4.0.9 2021-06-02 16:01:42 +00:00
ruby-redmine-flatly-light-theme devel/ruby-redmine-flatly-light-theme: use redmine.mk 2021-02-28 16:12:52 +00:00
ruby-redmine-gitmike-theme devel/ruby-redmine-gitmike-theme: switch to use redmine.mk 2021-02-28 16:13:44 +00:00
ruby-redmine-minimalflat-theme devel/ruby-redmine-minimalflat-theme: switch to use redmine.mk 2021-02-28 16:14:30 +00:00
ruby-redmine-minimalflat2-theme devel/ruby-redmine-gitmike-theme: switch to use redmine.mk 2021-02-28 16:14:57 +00:00
ruby-redmine-purplemine2-theme devel/ruby-redmine-purplemine2-theme: update to 2.14.0 2021-02-28 16:20:55 +00:00
ruby-redmine-red-andy-theme devel/ruby-redmine-red-andy-theme: switch to use redmine.mk 2021-02-28 16:22:54 +00:00
ruby-redmine-yh-theme devel/ruby-redmine-yh-theme: switch to use redmine.mk 2021-02-28 16:23:47 +00:00
ruby-redmine41 devel/ruby-redmine41: update to 4.1.3 2021-06-02 16:04:39 +00:00
ruby-redmine42 devel/ruby-redmine42: add package version 4.2.1 2021-06-02 16:23:48 +00:00
ruby-redmine_code_review devel/ruby-redmine_code_review: switch to use redmine.mk 2021-02-28 16:24:34 +00:00
ruby-redmine_lightbox2 devel/ruby-redmine_lightbox2: switch to use redmine.mk 2021-02-28 16:25:09 +00:00
ruby-redmine_theme_changer devel/ruby-redmine_theme_changer: switch to use redmine.mk 2021-02-28 16:25:42 +00:00
ruby-redmine_work_time devel/ruby-redmine_work_time: update to 0.4.1 2021-02-28 16:30:12 +00:00
ruby-ref
ruby-regexp_parser devel/ruby-regexp_parser: update to 2.1.1 2021-02-28 15:14:18 +00:00
ruby-rgl
ruby-ronn ruby-ronn: Bump PKGREVISION for previous PLIST change 2021-03-28 10:06:29 +00:00
ruby-rspec
ruby-rspec-core
ruby-rspec-expectations
ruby-rspec-its
ruby-rspec-logsplit
ruby-rspec-mocks devel/ruby-rspec-mocs: update to 3.10.2 2021-02-03 14:17:20 +00:00
ruby-rspec-rails devel/ruby-rspec-rails: update to 5.0.1 2021-03-21 12:54:20 +00:00
ruby-rspec-support devel/ruby-rspec-support: update to 3.10.2 2021-02-03 14:15:47 +00:00
ruby-rspec_junit_formatter
ruby-ruby2_keywords devel/ruby-ruby2_keywords: update to 0.0.4 2021-01-26 15:26:48 +00:00
ruby-rugged
ruby-scanf
ruby-SDL
ruby-semantic_puppet
ruby-semverse
ruby-setup
ruby-sexp-processor devel/ruby-sexp-processor: update to 4.15.3 2021-05-23 13:45:59 +00:00
ruby-shoulda-context
ruby-shoulda-matchers devel/ruby-shoulda-matchers: update to 4.5.1 2021-01-26 15:28:22 +00:00
ruby-simple_uuid
ruby-simplecov
ruby-simplecov-html
ruby-simpleidn devel/ruby-simpleidn: update to 0.2.1 2021-03-07 14:37:44 +00:00
ruby-spruz
ruby-stomp
ruby-stream
ruby-subexec
ruby-subversion *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ruby-sync
ruby-templater
ruby-term-ansicolor
ruby-termcolor
ruby-test-spec
ruby-test-unit devel/ruby-test-unit: update to 3.4.4 2021-06-04 14:25:45 +00:00
ruby-test-unit-notify
ruby-thor devel/ruby-thor: update to 1.1.0 2021-01-26 15:33:05 +00:00
ruby-thrift thrift: updated to 0.14.1 2021-04-12 19:23:27 +00:00
ruby-thrift_client
ruby-tins devel/ruby-tins: update to 1.29.1 2021-05-30 08:58:13 +00:00
ruby-tomlrb
ruby-tty-box
ruby-tty-color
ruby-tty-cursor
ruby-tty-prompt devel/ruby-tty-prompt: update to 0.23.1 2021-05-04 15:10:45 +00:00
ruby-tty-reader
ruby-tty-screen
ruby-tty-table
ruby-turn
ruby-uglifier
ruby-uuidtools
ruby-validatable
ruby-wisper
ruby-wmi-lite
ruby-yell
ruby-zeitwerk
ruby-zookeeper
ruby2ruby
rubymine-bin
rudiments revbump for boost-libs 2021-04-21 13:24:06 +00:00
rvm
sablecc
samurai
scintilla
scmcvs devel/scmcvs: do not require mkinstalldirs 2021-01-20 03:09:03 +00:00
scons scons: Take MAINTAINERship 2021-01-20 23:54:24 +00:00
sdcc *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
sdcc3 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
SDL SDL: add BUILDLINK_INCDIRS, as with SDL2 2021-04-03 10:14:31 +00:00
SDL-intro-en
SDL-intro-ko
SDL2 check return value of ioctl() and return an error if it fails. 2021-03-09 20:41:08 +00:00
SDL_gfx
SDL_Pango
SDL_ttf
SDLmm
semantic
semi
sfslite *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
sgb
shtk
shunit2
silc-toolkit *: remove dead download location 2021-04-21 09:06:15 +00:00
skalibs Update to 2.10.0.3. From the changelog: 2021-04-26 14:59:46 +00:00
slib
slibtool
sloccount *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
smake devel/smake: Update to 1.4 2021-04-26 10:38:11 +00:00
sml-mode sml-mode: remove dead master site 2021-04-21 08:24:51 +00:00
snappy
snappy-java10
sofia-sip
SOPE revbump for textproc/icu 2021-04-21 11:40:12 +00:00
SOPE4 revbump for textproc/icu 2021-04-21 11:40:12 +00:00
sparse *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
sparsehash
spdlog spdlog: update to 1.8.5. 2021-04-02 08:32:57 +00:00
spiff
spin
splint
st
startbug1 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
stfl *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
stgit *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
subversion *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
subversion-base *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
sunifdef *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
svn-bisect *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
swig *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
swig2 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
swig3 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
syncdir
sysexits
tailor
talloc talloc: updated to 2.3.2 2021-01-27 06:15:49 +00:00
tavrasm
tcl-tclcl
tclap
tcllib
tclreadline
teem
tet3 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
tevent
tex-doclicense tex-doclicense{,-doc}: update to 2.3.0 2021-06-03 06:41:48 +00:00
tex-doclicense-doc tex-doclicense{,-doc}: update to 2.3.0 2021-06-03 06:41:48 +00:00
tex-etoolbox tex-etoolbox{,-doc}: update to 2.5k 2021-02-13 10:42:07 +00:00
tex-etoolbox-doc tex-etoolbox{,-doc}: update to 2.5k 2021-02-13 10:42:07 +00:00
tex-l3backend tex-l3backend{,-doc}: update to 2021 2021-06-06 10:42:46 +00:00
tex-l3backend-doc tex-l3backend{,-doc}: update to 2021 2021-06-06 10:42:46 +00:00
tex-l3experimental tex-l3experimental: update to 2021 2021-06-06 10:51:46 +00:00
tex-l3kernel tex-l3kernel{,-doc}: update to 2021 2021-06-06 10:47:45 +00:00
tex-l3kernel-doc tex-l3kernel{,-doc}: update to 2021 2021-06-06 10:47:45 +00:00
tex-l3packages tex-l3packages{,-doc}: update to 2021 2021-06-06 10:50:05 +00:00
tex-l3packages-doc tex-l3packages{,-doc}: update to 2021 2021-06-06 10:50:05 +00:00
tex-latexbug tex-latexbug{,-doc}: update to 1.0j 2021-06-05 03:57:59 +00:00
tex-latexbug-doc tex-latexbug{,-doc}: update to 1.0j 2021-06-05 03:57:59 +00:00
tex-lualibs tex-lualibs{,.-doc}: update to 2.74 2021-06-06 11:01:49 +00:00
tex-lualibs-doc tex-lualibs{,.-doc}: update to 2.74 2021-06-06 11:01:49 +00:00
tex-luatexbase
tex-luatexbase-doc
tex-multido
tex-multido-doc
tex-pgfopts
tex-pgfopts-doc
tex-pst-uml
tex-pst-uml-doc
tex-tlshell tex-tlshell{,-doc}: update to 2021 2021-06-06 22:35:19 +00:00
tex-tlshell-doc tex-tlshell{,-doc}: update to 2021 2021-06-06 22:35:19 +00:00
tex-xifthen
tex-xifthen-doc
texttest Update to 4.0.7. From the changelog: 2021-04-23 07:19:39 +00:00
threadweaver revbump for textproc/icu 2021-04-21 11:40:12 +00:00
thrift thrift: updated to 0.14.1 2021-04-12 19:23:27 +00:00
tig tig: update to 2.5.4. 2021-06-06 09:32:23 +00:00
tinycthread
tkcon
tkcvs
tkdiff
tl-expected
tla
tlsh
tmake *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
tokei
topgit
tpasm
tradcpp
transifex-client
tre
treecc
trio
tvision
ucl
ucommon revbump for boost-libs 2021-04-21 13:24:06 +00:00
ucpp
umbrello revbump for textproc/icu 2021-04-21 11:40:12 +00:00
undebt
unidiff unidiff: remove non-existent master site 2021-01-27 09:30:05 +00:00
unittest-cpp
uno
userspace-rcu
uthash uthash: update to 2.3.0. 2021-03-11 15:31:24 +00:00
valgrind valgrind: update to 3.17.0 2021-05-30 01:49:36 +00:00
vanessa_adt
vanessa_logger
vanessa_socket
vera++ revbump for boost-libs 2021-04-21 13:24:06 +00:00
verifast revbump for textproc/icu 2021-04-21 11:40:12 +00:00
visualvm
vtcl
wabt wabt: update to 1.0.23. 2021-03-25 08:43:38 +00:00
waf waf: add WAF_HAS_LIBDIR for really old wafs 2021-04-08 08:43:34 +00:00
wayland revbump for textproc/icu 2021-04-21 11:40:12 +00:00
wayland-protocols
woboq_codebrowser revbump for textproc/icu 2021-04-21 11:40:12 +00:00
xa65
xdelta
xdelta3
xfce4-conf *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
xfce4-dev-tools
xmake
xorg-util-macros xorg-util-macros: update to 1.19.3. 2021-01-24 15:52:25 +00:00
xsd xsd: use external libcutl 2021-03-19 22:09:55 +00:00
xxgdb
xxhash
yajl
yarn
yasm
z80-asm
zeal revbump for textproc/icu 2021-04-21 11:40:12 +00:00
ZenTest ZenTest: remove false CONFLICTS 2021-05-21 16:44:00 +00:00
zlib
zookeeper
zzuf zzuf: disable FORTIFY to fix build 2021-04-25 07:52:38 +00:00
Makefile go-mow-cli: remove 2021-06-13 08:42:21 +00:00