pkgsrc/devel
adam 910b7b08a5 git: updated to 2.30.0
Git 2.30 Release Notes
======================

Updates since v2.29
-------------------

UI, Workflows & Features

 * Userdiff for PHP update.

 * Userdiff for Rust update.

 * Userdiff for CSS update.

 * The command line completion script (in contrib/) learned that "git
   stash show" takes the options "git diff" takes.

 * "git worktree list" now shows if each worktree is locked.  This
   possibly may open us to show other kinds of states in the future.

 * "git maintenance", an extended big brother of "git gc", continues
   to evolve.

 * "git push --force-with-lease[=<ref>]" can easily be misused to lose
   commits unless the user takes good care of their own "git fetch".
   A new option "--force-if-includes" attempts to ensure that what is
   being force-pushed was created after examining the commit at the
   tip of the remote ref that is about to be force-replaced.

 * "git clone" learned clone.defaultremotename configuration variable
   to customize what nickname to use to call the remote the repository
   was cloned from.

 * "git checkout" learned to use checkout.guess configuration variable
   and enable/disable its "--[no-]guess" option accordingly.

 * "git resurrect" script (in contrib/) learned that the object names
   may be longer than 40-hex depending on the hash function in use.

 * "git diff A...B" learned "git diff --merge-base A B", which is a
   longer short-hand to say the same thing.

 * A sample 'push-to-checkout' hook, that performs the same as
   what the built-in default action does, has been added.

 * "git diff" family of commands learned the "-I<regex>" option to
   ignore hunks whose changed lines all match the given pattern.

 * The userdiff pattern learned to identify the function definition in
   POSIX shells and bash.

 * "git checkout-index" did not consistently signal an error with its
   exit status, but now it does.

 * A commit and tag object may have CR at the end of each and
   every line (you can create such an object with hash-object or
   using --cleanup=verbatim to decline the default clean-up
   action), but it would make it impossible to have a blank line
   to separate the title from the body of the message.  We are now
   more lenient and accept a line with lone CR on it as a blank line,
   too.

 * Exit codes from "git remote add" etc. were not usable by scripted
   callers, but now they are.

 * "git archive" now allows compression level higher than "-9"
   when generating tar.gz output.

 * Zsh autocompletion (in contrib/) update.

 * The maximum length of output filenames "git format-patch" creates
   has become configurable (used to be capped at 64).

 * "git rev-parse" learned the "--end-of-options" to help scripts to
   safely take a parameter that is supposed to be a revision, e.g.
   "git rev-parse --verify -q --end-of-options $rev".

 * The command line completion script (in contrib/) learned to expand
   commands that are alias of alias.

 * "git update-ref --stdin" learns to take multiple transactions in a
   single session.

 * Various subcommands of "git config" that take value_regex
   learned the "--literal-value" option to take the value_regex option
   as a literal string.

 * The transport layer was taught to optionally exchange the session
   ID assigned by the trace2 subsystem during fetch/push transactions.

 * "git imap-send" used to ignore configuration variables like
   core.askpass; this has been corrected.

 * "git $cmd $args", when $cmd is not a recognised subcommand, by
   default tries to see if $cmd is a typo of an existing subcommand
   and optionally executes the corrected command if there is only one
   possibility, depending on the setting of help.autocorrect; the
   users can now disable the whole thing, including the cycles spent
   to find a likely typo, by setting the configuration variable to
   'never'.

 * "@" sometimes worked (e.g. "git push origin @:there") as a part of
   a refspec element, but "git push origin @" did not work, which has
   been corrected.


Performance, Internal Implementation, Development Support etc.

 * Use "git archive" more to produce the release tarball.

 * GitHub Actions automated test improvement to skip tests on a tree
   identical to what has already been tested.

 * Test-coverage for running commit-graph task "git maintenance" has
   been extended.

 * Our test scripts can be told to run only individual pieces while
   skipping others with the "--run=..." option; they were taught to
   take a substring of test title, in addition to numbers, to name the
   test pieces to run.

 * Adjust tests so that they won't scream when the default initial
   branch name is different from 'master'.

 * Rewriting "git bisect" in C continues.

 * More preliminary tests have been added to document desired outcomes
   of various "directory rename" situations.

 * Micro clean-up of a couple of test scripts.

 * "git diff" and other commands that share the same machinery to
   compare with working tree files have been taught to take advantage
   of the fsmonitor data when available.

 * The code to detect premature EOF in the sideband demultiplexer has
   been cleaned up.

 * "git fetch --depth=<n>" over the stateless RPC / smart HTTP
   transport handled EOF from the client poorly at the server end.

 * A specialization of hashmap that uses a string as key has been
   introduced.  Hopefully it will see wider use over time.

 * "git bisect start/next" in a large span of history spends a lot of
   time trying to come up with exactly the half-way point; this can be
   optimized by stopping when we see a commit that is close enough to
   the half-way point.

 * A lazily defined test prerequisite can now be defined in terms of
   another lazily defined test prerequisite.

 * Expectation for the original contributor after responding to a
   review comment to use the explanation in a patch update has been
   described.

 * Multiple "credential-store" backends can race to lock the same
   file, causing everybody else but one to fail---reattempt locking
   with some timeout to reduce the rate of the failure.

 * "git-parse-remote" shell script library outlived its usefulness.

 * Like die() and error(), a call to warning() will also trigger a
   trace2 event.

 * Use of non-reentrant localtime() has been removed.

 * Non-reentrant time-related library functions and ctime/asctime with
   awkward calling interfaces are banned from the codebase.


Fixes since v2.29
-----------------

 * In 2.29, "--committer-date-is-author-date" option of "rebase" and
   "am" subcommands lost the e-mail address by mistake, which has been
   corrected.
   (merge 5f35edd9d7 jk/committer-date-is-author-date-fix later to maint).

 * "git checkout -p A...B [-- <path>]" did not work, even though the
   same command without "-p" correctly used the merge-base between
   commits A and B.
   (merge 35166b1fb5 dl/checkout-p-merge-base later to maint).

 * The side-band status report can be sent at the same time as the
   primary payload multiplexed, but the demultiplexer on the receiving
   end incorrectly split a single status report into two, which has
   been corrected.
   (merge 712b0377db js/avoid-split-sideband-message later to maint).

 * "git fast-import" wasted a lot of memory when many marks were in use.
   (merge 3f018ec716 jk/fast-import-marks-alloc-fix later to maint).

 * A test helper "test_cmp A B" was taught to diagnose missing files A
   or B as a bug in test, but some tests legitimately wanted to notice
   a failure to even create file B as an error, in addition to leaving
   the expected result in it, and were misdiagnosed as a bug.  This
   has been corrected.
   (merge 262d5ad5a5 es/test-cmp-typocatcher later to maint).

 * When "git commit-graph" detects the same commit recorded more than
   once while it is merging the layers, it used to die.  The code now
   ignores all but one of them and continues.
   (merge 85102ac71b ds/commit-graph-merging-fix later to maint).

 * The meaning of a Signed-off-by trailer can vary from project to
   project; this and also what it means to this project has been
   clarified in the documentation.
   (merge 3abd4a67d9 bk/sob-dco later to maint).

 * "git credential' didn't honor the core.askPass configuration
   variable (among other things), which has been corrected.
   (merge 567ad2c0f9 tk/credential-config later to maint).

 * Dev support to catch a tentative definition of a variable in our C
   code as an error.
   (merge 5539183622 jk/no-common later to maint).

 * "git rebase --rebase-merges" did not correctly pass --gpg-sign
   command line option to underlying "git merge" when replaying a merge
   using non-default merge strategy or when replaying an octopus merge
   (because replaying a two-head merge with the default strategy was
   done in a separate codepath, the problem did not trigger for most
   users), which has been corrected.
   (merge 43ad4f2eca sc/sequencer-gpg-octopus later to maint).

 * "git apply -R" did not handle patches that touch the same path
   twice correctly, which has been corrected.  This is most relevant
   in a patch that changes a path from a regular file to a symbolic
   link (and vice versa).
   (merge b0f266de11 jt/apply-reverse-twice later to maint).

 * A recent oid->hash conversion missed one spot, breaking "git svn".
   (merge 03bb366de4 bc/svn-hash-oid-fix later to maint).

 * The documentation on the "--abbrev=<n>" option did not say the
   output may be longer than "<n>" hexdigits, which has been
   clarified.
   (merge cda34e0d0c jc/abbrev-doc later to maint).

 * "git p4" now honors init.defaultBranch configuration.
   (merge 1b09d1917f js/p4-default-branch later to maint).

 * Recently the format of an internal state file "rebase -i" uses has
   been tightened up for consistency, which would hurt those who start
   "rebase -i" with old git and then continue with new git.  Loosen
   the reader side a bit (which we may want to tighten again in a year
   or so).
   (merge c779386182 jc/sequencer-stopped-sha-simplify later to maint).

 * The code to see if "git stash drop" can safely remove refs/stash
   has been made more careful.
   (merge 4f44c5659b rs/empty-reflog-check-fix later to maint).

 * "git log -L<range>:<path>" is documented to take no pathspec, but
   this was not enforced by the command line option parser, which has
   been corrected.
   (merge 39664cb0ac jc/line-log-takes-no-pathspec later to maint).

 * "git format-patch --output=there" did not work as expected and
   instead crashed.  The option is now supported.
   (merge dc1672dd10 jk/format-patch-output later to maint).

 * Define ARM64 compiled with MSVC to be little-endian.
   (merge 0c038fc65a dg/bswap-msvc later to maint).

 * "git rebase -i" did not store ORIG_HEAD correctly.
   (merge 8843302307 pw/rebase-i-orig-head later to maint).

 * "git blame -L :funcname -- path" did not work well for a path for
   which a userdiff driver is defined.

 * "make DEVELOPER=1 sparse" used to run sparse and let it emit
   warnings; now such warnings will cause an error.
   (merge 521dc56270 jc/sparse-error-for-developer-build later to maint).

 * "git blame --ignore-revs-file=<file>" learned to ignore a
   non-existent object name in the input, instead of complaining.
   (merge c714d05875 jc/blame-ignore-fix later to maint).

 * Running "git diff" while allowing external diff in a state with
   unmerged paths used to segfault, which has been corrected.
   (merge d66851806f jk/diff-release-filespec-fix later to maint).

 * Build configuration cleanup.
   (merge b990f02fd8 ab/config-mak-uname-simplify later to maint).

 * Fix regression introduced when nvimdiff support in mergetool was added.
   (merge 12026f46e7 pd/mergetool-nvimdiff later to maint).

 * The exchange between receive-pack and proc-receive hook did not
   carefully check for errors.

 * The code was not prepared to deal with pack .idx file that is
   larger than 4GB.
   (merge 81c4c5cf2e jk/4gb-idx later to maint).

 * Since jgit does not yet work with SHA-256 repositories, mark the
   tests that use it not to run unless we are testing with ShA-1
   repositories.
   (merge ea699b4adc sg/t5310-jgit-wants-sha1 later to maint).

 * Config parser fix for "git notes".
   (merge 45fef1599a na/notes-displayref-is-not-boolean later to maint).

 * Move a definition of compatibility wrapper from cache.h to
   git-compat-util.h
   (merge a76b138daa hn/sleep-millisec-decl later to maint).

 * Error message fix.
   (merge eaf5341538 km/stash-error-message-fix later to maint).

 * "git pull --rebase --recurse-submodules" checked for local changes
   in a wrong range and failed to run correctly when it should.
   (merge 5176f20ffe pb/pull-rebase-recurse-submodules later to maint).

 * "git push" that is killed may leave a pack-objects process behind,
   still computing to find a good compression, wasting cycles.  This
   has been corrected.
   (merge 8b59935114 jk/stop-pack-objects-when-push-is-killed later to maint).

 * "git fetch" that is killed may leave a pack-objects process behind,
   still computing to find a good compression, wasting cycles.  This
   has been corrected.
   (merge 309a4028e7 jk/stop-pack-objects-when-fetch-is-killed later to maint).

 * "git add -i" failed to honor custom colors configured to show
   patches, which has been corrected.
   (merge 96386faa03 js/add-i-color-fix later to maint).

 * Processes that access packdata while the .idx file gets removed
   (e.g. while repacking) did not fail or fall back gracefully as they
   could.
   (merge 506ec2fbda tb/idx-midx-race-fix later to maint).

 * "git apply" adjusted the permission bits of working-tree files and
   directories according to core.sharedRepository setting by mistake and
   for a long time, which has been corrected.
   (merge eb3c027e17 mt/do-not-use-scld-in-working-tree later to maint).

 * "fetch-pack" could pass NULL pointer to unlink(2) when it sees an
   invalid filename; the error checking has been tightened to make
   this impossible.
   (merge 6031af387e rs/fetch-pack-invalid-lockfile later to maint).

 * "git maintenance run/start/stop" needed to be run in a repository
   to hold the lockfile they use, but didn't make sure they are
   actually in a repository, which has been corrected.

 * The glossary described a branch as an "active" line of development,
   which is misleading---a stale and non-moving branch is still a
   branch.
   (merge eef1ceabd8 so/glossary-branch-is-not-necessarily-active later to maint).

 * Newer versions of xsltproc can assign IDs in HTML documents it
   generates in a consistent manner.  Use the feature to help format
   HTML version of the user manual reproducibly.
   (merge 3569e11d69 ae/doc-reproducible-html later to maint).

 * Tighten error checking in the codepath that responds to "git fetch".
   (merge d43a21bdbb jk/check-config-parsing-error-in-upload-pack later to maint).

 * "git pack-redundant" when there is only one packfile used to crash,
   which has been corrected.
   (merge 0696232390 jx/pack-redundant-on-single-pack later to maint).

 * Other code cleanup, docfix, build fix, etc.
   (merge 3e0a5dc9af cc/doc-filter-branch-typofix later to maint).
   (merge 32c83afc2c cw/ci-ghwf-check-ws-errors later to maint).
   (merge 5eb2ed691b rs/tighten-callers-of-deref-tag later to maint).
   (merge 6db29ab213 jk/fast-import-marks-cleanup later to maint).
   (merge e5cf6d3df4 nk/dir-c-comment-update later to maint).
   (merge 5710dcce74 jk/report-fn-typedef later to maint).
   (merge 9a82db1056 en/sequencer-rollback-lock-cleanup later to maint).
   (merge 4e1bee9a99 js/t7006-cleanup later to maint).
   (merge f5bcde6c58 es/tutorial-mention-asciidoc-early later to maint).
   (merge 714d491af0 so/format-patch-doc-on-default-diff-format later to maint).
   (merge 0795df4b9b rs/clear-commit-marks-in-repo later to maint).
   (merge 9542d56379 sd/prompt-local-variable later to maint).
   (merge 06d43fad18 rs/pack-write-hashwrite-simplify later to maint).
   (merge b7e20b4373 mc/typofix later to maint).
   (merge f6bcd9a8a4 js/test-whitespace-fixes later to maint).
   (merge 53b67a801b js/test-file-size later to maint).
   (merge 970909c2a7 rs/hashwrite-be64 later to maint).
   (merge 5a923bb1f0 ma/list-object-filter-opt-msgfix later to maint).
   (merge 1c3e412916 rs/archive-plug-leak-refname later to maint).
   (merge d44e5267ea rs/plug-diff-cache-leak later to maint).
   (merge 793c1464d3 ab/gc-keep-base-option later to maint).
   (merge b86339b12b mt/worktree-error-message-fix later to maint).
   (merge e01ae2a4a7 js/pull-rebase-use-advise later to maint).
   (merge e63d774242 sn/config-doc-typofix later to maint).
   (merge 08e9df2395 jk/multi-line-indent-style-fix later to maint).
   (merge e66590348a da/vs-build-iconv-fix later to maint).
   (merge 7fe07275be js/cmake-extra-built-ins-fix later to maint).
   (merge 633eebe142 jb/midx-doc-update later to maint).
   (merge 5885367e8f jh/index-v2-doc-on-fsmn later to maint).
   (merge 14639a4779 jc/compat-util-setitimer-fix later to maint).
   (merge 56f56ac50b ab/unreachable-break later to maint).
   (merge 731d578b4f rb/nonstop-config-mak-uname-update later to maint).
   (merge f4698738f9 es/perf-export-fix later to maint).
   (merge 773c694142 nk/refspecs-negative-fix later to maint).
2021-01-11 10:20:16 +00:00
..
abseil abseil: updated to 20200923.2 2020-12-07 08:01:52 +00:00
accerciser Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
acme
acr
acunia-jam
adacurses
adocman *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
aegis *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
afl afl: remove obsolete master site 2020-08-01 14:31:52 +00:00
afl++
ald
alex
allegro *: revbump for libsndfile 2020-08-18 17:57:24 +00:00
allegro5 *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
amtk *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
anjuta *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
ant-contrib
apache-ant apache-ant: update to 1.10.9. 2020-10-08 12:38:44 +00:00
apache-ant15
apache-ant19
apache-ivy apache-ivy: Update to 2.5.0 2020-10-29 09:31:41 +00:00
apache-maven Update apache-maven to 3.6.3. Closes PR pkg/55221. 2020-06-29 12:39:54 +00:00
apel
apenwarr-redo Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
appdata-tools Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
appstream-glib appstream-glib: simplify github handling 2020-11-05 22:59:43 +00:00
apr
apr-util *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
arcanist Remove reference to php70 2021-01-01 09:05:06 +00:00
arena
argp
argtable
as31
asio
aslc86k
asm2html
asmfmt New package, asmfmt-1.2.1. 2020-12-06 16:14:07 +00:00
astyle
at-spi *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
at-spi2-atk Update at-spi2-atk to 2.38.0 2020-10-01 11:48:22 +00:00
at-spi2-core Update at-spi2-core to 2.38.0 2020-10-01 11:45:46 +00:00
atf
atk atk: updated to 2.36.0 2020-07-16 06:09:34 +00:00
atkmm *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
autoconf Revert mk/gnu-config/missing 2021-01-03 11:15:21 +00:00
autoconf-archive autoconf-archive & gnome-common: these conflict with each other 2020-12-03 23:01:27 +00:00
autoconf213 autoconf213: add to $CONFLICTS instead of overwriting it 2020-12-03 22:56:00 +00:00
autogen *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
automake automake: use tools framework for autoconf dependency 2021-01-03 11:22:09 +00:00
automake14 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
automoc4 *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
autosetup
avl
avltree
bam
bats
bcc
bfg
bglibs Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
bin86
binutils binutils: add upstream fixes for CVE-2020-35448. 2021-01-07 09:47:47 +00:00
bison bison: update to 3.7.4. 2020-11-23 13:55:13 +00:00
blame
blib *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
blosc blosc: Set _POSIX_C_SOURCE for posix_memalign 2020-10-25 04:33:27 +00:00
bmake bmake: Restore PKGSRC_MACHINE_ARCH support. 2020-11-12 16:05:47 +00:00
bmkdep
boa-constructor Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
boehm-gc
boost-build boost: Update to 1.75.0 2021-01-01 08:19:01 +00:00
boost-docs
boost-headers boost: Update to 1.75.0 2021-01-01 08:19:01 +00:00
boost-jam boost: Update to 1.75.0 2021-01-01 08:19:01 +00:00
boost-libs boost: Update to 1.75.0 2021-01-01 08:19:01 +00:00
boost-mpi boost: Update to 1.75.0 2021-01-01 08:19:01 +00:00
bpython Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
breezy Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
buddy
bugzilla *: remove p5-Digest-SHA, part of perl 2020-09-04 11:09:01 +00:00
bugzilla3 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
bullet bullet: on Darwin use OpenGL.framework 2020-08-07 08:57:04 +00:00
byacc byacc: Update to 20200910 2020-11-25 20:51:58 +00:00
bzr Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
bzr-explorer Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
bzr-gtk Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
bzr-svn Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
bzrtools Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
c++gsl
calltree-perl *: remove p5-Getopt-Long, part of perl 2020-09-04 11:36:49 +00:00
capstone devel/capstone: Update to 4.0.2 2020-08-18 20:20:46 +00:00
catch
catch2 catch2: update to 2.13.3. 2020-11-09 14:25:55 +00:00
cbindgen cbindgen: Update to 0.16.0 2021-01-01 12:47:48 +00:00
cbrowser
ccache ccache: updated to 3.7.12 2020-10-02 08:08:07 +00:00
cdecl
cdk cdk: Update to 5.0-20200923 2020-11-23 11:34:54 +00:00
cervisia *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
cfitsio
cflow
cflow-mode
cfr
cgdb cgdb: Upgrade to 0.7.1 2020-10-14 05:32:16 +00:00
cgen
check Update to 0.15.2. From the changelog: 2020-11-03 11:09:19 +00:00
chmlib
chrpath
clib
clion-bin Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
clisp-pcre
clisp-syscalls
clisp-wildcard
clisp-zlib
cloc *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
cmake cmake: updated to 3.19.2 2020-12-17 12:14:35 +00:00
cmake-fedora cmake-fedora: update to 2.6.0nb1. 2020-07-31 09:21:23 +00:00
cmake-gui cmake cmake-gui: updated to 3.19.1 2020-11-25 10:33:28 +00:00
cmake-mode
cmocka Have a 't'... 2020-07-03 16:08:46 +00:00
cmockery2
cmph
cobol-mode
coccinelle Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
coconut *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
codeville Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
cogito *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
colordiff *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
commit-patch *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
compiz-bcop *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
compizconfig-backend-gconf *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
concurrencykit
confuse confuse: Fix HOMEPAGE 2020-12-05 12:35:25 +00:00
cook *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
cppcheck *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
cppunit cppunit: Require a version of GCC with c++11 support 2020-10-25 12:56:55 +00:00
cpputest Update to 4.0. From the changelog: 2020-07-07 09:04:55 +00:00
cproto
cpu_features cpu_features: remember to include bsd.prefs.mk.... 2020-12-31 10:57:03 +00:00
cpuflags
cqual *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
cre2 cre2: updated to 0.3.6 2020-08-06 16:24:44 +00:00
creduce *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
cscope cscope: update to 15.9. 2021-01-03 00:42:55 +00:00
cssc
ctemplate *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
cunit cunit: use tools framework for autoconf 2021-01-03 11:23:16 +00:00
cut
cutter *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
cvs-fast-export Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
cvs2cl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
cvs2html *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
cvs2svn Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
cvsclone
cvsd *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
cvsdiff2patch
cvsgraph *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
cvslock
cvsps
cvsps3
cvsup-bin
cvsup-gui-bin
cvsutils *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
cvsync
cxref
darcs *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
darts
dconf Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
dconf-editor Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
ddd
debugcon_printf
deepstate deepstate: Remove unnecessary restiction to Python 3.7/3.6 2020-12-30 12:26:02 +00:00
deepstate-afl deepstate-afl: needs setuptools 2020-12-15 09:49:59 +00:00
deepstate-honggfuzz deepstate-honggfuzz: import version 0.1 2020-09-29 03:06:08 +00:00
deepstate-libfuzzer deepstate-libfuzzer: Add missing py-setuptools dependency 2020-12-29 14:07:34 +00:00
deforaos-asm
deforaos-coder *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
deforaos-configure
deforaos-cpp
deforaos-libsystem
dejagnu
delta *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
dev86
devhelp *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
device-driver-doc-de
devIL
dia2code *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
diffbreaker UI change moving though the diff now moves to next marker which was 2020-10-11 01:57:03 +00:00
diffuse Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
diffutils
distcc
distcc-pump Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
distccmon-gnome *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
distccmon-gtk *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
dlcompat
dmake
dmalloc
doc++
dolphin-plugins *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
dotconf
doxygen *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
doxymacs *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
dumpet *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
easygit *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
ecb
eclipse
ecore *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
edcommon *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
editline
editorconfig-core
eet
egypt *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
eina
eio *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
electric-fence
elf
elfcat
elfsh
elftoolchain
elib
emacs-ilisp
emacs20-elib
empty
epydoc Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
erlang-base64url
erlang-cache_tab
erlang-ezlib
erlang-fs
errcheck New package, errcheck-1.4.0. 2020-12-06 16:46:07 +00:00
error
ETL
etrace Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
exctags
exempi *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
ExmanIDE Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
extra-cmake-modules
fann multiple: Drop MAINTAINERship 2020-07-27 16:37:52 +00:00
fastdep
fhist
fifechan *: revbump for libsndfile 2020-08-18 17:57:24 +00:00
fifengine *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
flatbuffers
flatzebra
flex flex: Remove bash dependency. 2020-09-08 11:21:17 +00:00
flexdock
flim
florist
fortran-utils
fossil Update devel/fossil to 2.13 2020-11-06 00:51:25 +00:00
frama-c *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
frink
fromcvs Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
ftnchek
g-wrap
gccmakedep
GConf Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
GConf-ui *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
gconfmm *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
gcvs *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
gdb Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
gdb7 Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
gdbus-codegen Update glib2 to 2.66.4 2020-12-20 11:06:40 +00:00
gdl *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
geany geany: switch MASTER_SITES to https 2020-11-05 01:09:05 +00:00
gearmand *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
generate {py-,}generate: make distinfo checksums match upstream, set DIST_SUBDIR. 2020-08-24 06:00:47 +00:00
gengetopt
gentle
gettext Workaround for msgfmt -o /dev/null being broken on Illumos 2020-08-12 23:31:09 +00:00
gettext-asprintf
gettext-lib gettext-lib: fix built-in gettext detection on musl 2020-10-15 23:32:07 +00:00
gettext-m4 gettext*: update to 0.21. 2020-07-29 07:00:15 +00:00
gettext-tools Workaround for msgfmt -o /dev/null being broken on Illumos 2020-08-12 23:31:09 +00:00
gflags
gflib
giblib giblib: Fix mysterious libtool errors and set LICENSE. 2020-11-24 17:10:43 +00:00
gindent
git git: updated to 2.30.0 2021-01-11 10:20:16 +00:00
git-base git: updated to 2.30.0 2021-01-11 10:20:16 +00:00
git-contrib
git-cvs
git-docs git: updated to 2.30.0 2021-01-11 10:20:16 +00:00
git-filter-repo Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
git-gitk
git-lfs Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
git-remote-hg Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
git-svn
gitolite *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
glade *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
glib
glib2 Update glib2 to 2.66.4 2020-12-20 11:06:40 +00:00
glib2-tools Update glib2 to 2.66.4 2020-12-20 11:06:40 +00:00
glibmm *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
global Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
gmake devel/gmake: add link to the 4.3 release notes 2020-09-12 05:58:40 +00:00
gmp gmp: update to 6.2.1. 2020-11-16 13:12:41 +00:00
gmtk *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
gnatpython Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
gnome-common autoconf-archive & gnome-common: these conflict with each other 2020-12-03 23:01:27 +00:00
gnustep-base (devel/gnustep-base) revert some recent changes by pkglint -F 2020-11-11 11:03:11 +00:00
gnustep-examples *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gnustep-make gnustep-make: fix invalid bash replacement 2020-11-03 12:40:11 +00:00
gnustep-objc gnustep-objc: remove useless PLIST.* 2020-11-04 09:02:21 +00:00
gnustep-objc-lf2
go-afero Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-amber Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-appengine Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-argv Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-assert Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-blackfriday Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-buffruneio Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-bytebufferpool Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-cast Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-check Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-cli Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
go-cmp Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-cobra Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-colorable Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-colortext Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-colour Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-compress Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-consul-api Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-cpuid Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-debounce Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-ed25519 Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-emoji Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-errors Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-flags-svent Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-fnmatch Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-fs Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-fsnotify Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-fsync Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-gitmap Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-glog Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-gls Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-gocode Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-godef Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-godirwalk Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-godotenv Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-golang-lru Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-goorgeous Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-gopkgs Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-goptlib Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-goreturns Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-gospel Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-gox Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-hashstructure Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-homedir Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-humanize Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-i18n Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-immutable-radix Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-ini Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-iochan Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-isatty Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-jwalterweatherman Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-jwt-go Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-kingpin.v3-unstable Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-kr-pretty Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-levenshtein Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-locker Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-logrus Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-mapstructure Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-mapstructure-bep Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-mod New package, go-mod-0.4.0. 2020-12-04 09:25:33 +00:00
go-mow-cli Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-nbreader Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-nitro Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-osext Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-pflag Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-pkgconfig Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-properties Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-protobuf Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-pty Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-purell Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-quicktest Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-radix Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-ratelimit Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-repr Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-review Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-sanitized_anchor_name Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-shellwords Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-shuffle Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-siphash Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-spew Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-sync Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-sys Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-termbox Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
go-testify Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-textseg Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-thrift Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-tmc Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-tools go-tools: fix build, bump revision 2020-12-04 11:31:16 +00:00
go-try Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-viper Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-walker Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-wordwrap Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-xerrors Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
go-yaml Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
gob2
gobject-introspection Update gobject-introspection to 1.66.1 2020-12-20 22:00:43 +00:00
golangci-lint New package, golangci-lint. 2020-12-13 16:22:32 +00:00
golint Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
google-api-go-client Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
google-glog
googletest googletest: Require a c++11 compiler with GCC_REQD. 2020-10-25 12:59:26 +00:00
gopls gopls: update to 0.6.1. 2020-12-20 20:04:09 +00:00
Gorm *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gperf
gperftools gperftools: Revert previous commit (r1.5) 2020-12-16 19:22:18 +00:00
gprbuild-aux
gps *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gputils
gradle
grantlee *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
grantlee-qt5 *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
gsoap
gst-plugins0.10-pango *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
gst-plugins1-pango *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
gtexinfo *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
gtl
guile-bytestructures devel/guile-bytestructures: Update to 1.0.7 2020-06-22 08:14:28 +00:00
guile-gcrypt
guile-git
guile-gnome *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
guile-lib
guile-slib
guile-www
guile22-slib
gyp
happy
haskell-mode
hdevtools
hdf
hdf5
hdf5-c++
heirloom-getopt
heirloom-libcommon
heirloom-what
hoe devel/hoe: update to 3.22.2 2020-09-13 15:14:41 +00:00
honggfuzz honggfuzz: Drop patch 2020-07-22 21:54:26 +00:00
hptools
hs-ansi-terminal
hs-asn1-encoding
hs-asn1-parse
hs-asn1-types
hs-async
hs-base-compat
hs-base-compat-batteries
hs-base-orphans
hs-base-unicode-symbols
hs-basement
hs-bitarray
hs-blaze-builder
hs-bytestring-builder (devel/hs-bytestring-builder) Add PLIST tweak 2020-09-23 21:34:45 +00:00
hs-call-stack
hs-cereal
hs-cmdargs
hs-code-page
hs-colour
hs-conduit
hs-control-monad-free
hs-cpphs Temporary workaround for a CHECK_SHLIBS failure 2020-08-19 07:50:52 +00:00
hs-data-default
hs-data-default-class
hs-data-default-instances-base
hs-data-default-instances-containers
hs-data-default-instances-dlist
hs-data-default-instances-old-locale
hs-deepseq-generics
hs-dlist
hs-echo
hs-either
hs-errors
hs-exceptions
hs-extensible-exceptions
hs-fail Fix build with the upcoming GHC 8.8.4 2020-08-24 12:15:50 +00:00
hs-fgl
hs-file-embed
hs-fingertree
hs-fsnotify
hs-generic-deriving
hs-ghc-mtl
hs-ghc-paths
hs-hashable
hs-hashtables
hs-haskell-lexer
hs-haskell-src-exts
hs-hint
hs-hslua-module-system
hs-ipynb
hs-libffi
hs-lifted-base
hs-lukko hs-lukko: add PLIST.Linux containing Lukko.OFD module 2020-10-04 21:14:32 +00:00
hs-memory
hs-mmorph
hs-monad-control
hs-MonadRandom
hs-mono-traversable
hs-old-locale
hs-Only
hs-optparse-applicative
hs-parser-combinators
hs-pretty-show
hs-primitive
hs-QuickCheck
hs-random
hs-reflection
hs-resourcet
hs-safe
hs-setlocale
hs-split
hs-splitmix
hs-StateVar
hs-streaming-commons
hs-syb
hs-tabular
hs-tagged
hs-tasty
hs-tasty-hunit
hs-terminal-size
hs-tf-random
hs-th-abstraction
hs-timeit
hs-transformers-base
hs-transformers-compat
hs-uglymemo
hs-unbounded-delays
hs-uniplate
hs-unix-compat
hs-unliftio-core
hs-unordered-containers
hs-utf8-string
hs-utility-ht
hs-uuid-types
hs-vault
hs-vector
hs-vector-algorithms
hs-vector-binary-instances
hs-vector-th-unbox
hs-void
hs-wizards
ht
hugs-HUnit
hugs-unix
hyperscan hyperscan: Handle sqlite dependency - attempt to fix build 2020-11-29 20:27:28 +00:00
idiff
idutils devel/idutils: fix gnulib vasnprintf on MacOS 2020-11-29 22:06:54 +00:00
imake
include-what-you-use Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
iniparser
intel2gas
intellij-ce-bin Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
intellij-ue-bin Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
isect
ivykis
jam
java-jna Fix PLIST to make this build with JDK 11. 2020-06-26 10:26:08 +00:00
java-subversion *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
javacc
javadeps
jd-gui
jdebp-redo Fix packaging with PKGMANDIR!=man, found in bulk builds. 2020-11-04 20:27:24 +00:00
jemalloc *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
jenkins
jenkins-lts
jflex
jq
js2-mode
js_of_ocaml Updated devel/js_of_ocaml to 3.8.0 2020-12-11 07:53:44 +00:00
jsonnet
kafka
kapptemplate *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kbookmarks *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kbuild *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
kcachegrind *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kcmutils *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kconfig *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kcoreaddons *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kcrash *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
kde-dev-scripts Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
kde-dev-utils *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kdeclarative *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kdesdk-kioslaves *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
kdesdk-strigi-analyzers *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
kdesdk-thumbnailers *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
kdevelop4 *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
kdevplatform *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
kdiff3 *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kdoctools *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
ki18n *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kidletime *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
kio *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kitemmodels *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
knotifications *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
knotifyconfig *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
ko-po-check Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
kompare *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kpackage *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kparts *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kpeople *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
kpty *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
kross *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
krunner *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kservice *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
ktexteditor *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
kwayland *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
kyua *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
lcc
lcdis
lcov *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
ldapsdk *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
ldpc
leahneukirchen-redo Update to 0.3. From the changelog: 2020-11-01 13:30:13 +00:00
lemon sqlite3: updated to 3.34.0 2020-12-02 07:57:19 +00:00
lettuce Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
libantlr3c devel: add libantlr3c 2020-11-02 12:25:56 +00:00
libappindicator libappindicator: Make python2 dependency build-only. 2020-12-20 11:38:34 +00:00
libarena
libargparse
libast
libatomic libatomic: update to 10.2.0. 2020-11-20 17:49:10 +00:00
libatomic-links Allow this to be installed on i386 too. 2021-01-03 18:28:05 +00:00
libatomic_ops
libbegemot
libbinio
libblkid
libbonobo *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libbonoboui *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libbsd Import libbsd-0.10.0 from wip/ 2020-12-09 11:21:46 +00:00
libcbor devel/libcbor: ldexp requires -lm. 2020-11-25 05:54:45 +00:00
libcerf
libcfg+
libcompizconfig *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libconfig
libctl
libdaemon
libdatrie update to 0.2.12nb2 2021-01-01 21:49:39 +00:00
libdazzle libdazzle: Update to 3.38.0 2020-11-05 09:28:29 +00:00
libdbusmenu-glib *: recursive bump for vala 0.50 2020-10-06 19:51:15 +00:00
libdbusmenu-gtk *: recursive bump for vala 0.50 2020-10-06 19:51:15 +00:00
libdbusmenu-gtk-doc
libdbusmenu-gtk3 *: recursive bump for vala 0.50 2020-10-06 19:51:15 +00:00
libdbusmenu-jsonloader *: recursive bump for vala 0.50 2020-10-06 19:51:15 +00:00
libdbusmenu-qt *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
libdbusmenu-qt5 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libdbusmenu-tools Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
libdevq
libdnsres
libdockapp libdockapp: Update to 0.7.3 2020-11-24 11:13:25 +00:00
libdshconfig
libdstr
libdwarf
libebml libebml: updated to 1.4.1 2021-01-05 12:39:10 +00:00
libelf
libestr
libetm
libev libev: Build with _REENTRANT on SunOS. 2020-12-04 15:56:10 +00:00
libevent libevent: Do not use empty prefix for builtin case 2020-11-06 15:48:15 +00:00
libewf
libexecinfo
libextractor *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libf2c
libffcall
libffi *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
libfirm
libFoundation
libFoundation-examples
libfreefare
libftdi
libftdi1 *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
libgcroots
libgee *: recursive bump for vala 0.50 2020-10-06 19:51:15 +00:00
libgee0.6
libgetopt
libgit2 libgit2: Update to 1.1.0 2020-10-19 17:53:40 +00:00
libglade *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libglademm *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libgnome *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libgnomemm *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libgnomeui *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libgnomeuimm *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libgnt *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libgphoto2 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libgsf *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libgweather *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libhandy libhandy: fix buildlink3.mk 2020-11-11 14:39:44 +00:00
libhandy1 libhandy1: Fix MASTER_SITES 2020-11-11 08:50:40 +00:00
libhfs
libhid Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
libiberty
libidn *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
libidn2
libindicator *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
libinotify
libite
libixp
libjit
libjudy
libkgapi *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
libkomparediff2 *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
liblangtag *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
liblnk
libltdl
libmaa
libmatchbox *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
libmemcache
libmemcached
libmemmgr
libmimedir
libmm
libmowgli
libmtp libmtp: update to 1.1.18. 2020-10-29 12:55:19 +00:00
libnet10
libnet11
libnfc
libnjb
libntlm
liboil
liboop
libosip updated devel/libosip to 5.2.0 2020-12-06 23:37:34 +00:00
libowfat Fix Illumos build. 2020-06-26 19:21:52 +00:00
libpeas *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
libpgm *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
libphutil Remove reference to php70 2021-01-01 09:05:06 +00:00
libportlib
libproplist
librdkafka
librelp
librfuncs
librlog
librxspencer
libsafec
libsexy *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libsexymm *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libsigc++ *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
libsigc++1
libsigc++3 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
libsigsegv
libslang
libslang2
libsmi
libstash
libstatgrab *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
libstree
libstroke
libtai Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
libtar
libtecla
libthai
libthrift *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
libthrift_c_glib
libtool
libtool-base
libtool-fortran
libtool-info
libts
libusb
libusb-compat libusb-compat: Add DIST_SUBDIR to avoid checksum error 2020-10-13 06:10:35 +00:00
libusb1 libusb1: Update to 1.0.24 2020-12-18 23:06:19 +00:00
libuuid On macOS (Catalina, at least), python37 and python38 fail in _uuid.so 2020-08-26 13:47:14 +00:00
libuv libuv: updated to 1.40.0 2020-10-02 12:22:34 +00:00
libuxre
libview *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
libvolume_id
libwhisker2 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
libwnck *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
libwnck3 libwnck3: Clean up. Fix tools / pkgconfig file. 2020-11-16 12:32:52 +00:00
libxenserver *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libyang devel/libyang: reference modified-bsd license 2020-12-10 20:35:45 +00:00
libzen
libzookeeper libzookeeper: Strip out -Werror 2020-11-29 19:42:52 +00:00
linenoise
lld llvm: updated to 10.0.1 2020-07-26 19:20:12 +00:00
lldb Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
lmdbg Update to version 1.3.0 2021-01-02 20:22:35 +00:00
locktests
log4cplus
log4cxx
log4shib
lokalize *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
ltsa Remove superfluous specification characters from pax invocations 2020-11-28 01:20:03 +00:00
lua-alt-getopt Add 'lua' category to Lua modules. 2020-07-02 10:26:16 +00:00
lua-ansicolors devel: Add lua-ansicolors 2020-07-08 11:25:20 +00:00
lua-argparse lua-argparse: Update to 0.7.1 2020-07-14 11:47:01 +00:00
lua-basexx lua-basexx: Support for testing 2020-07-08 16:26:06 +00:00
lua-binaryheap lua-binaryheap: Support for testing 2020-07-08 16:28:08 +00:00
lua-bit32 Add LUA_LINKER_MAGIC variable that centrally sets LDFLAGS on Darwin, 2020-07-11 15:14:29 +00:00
lua-BitOp Add 'lua' category to Lua modules. 2020-07-02 10:26:16 +00:00
lua-busted lua-busted: add ALTERNATIVES 2020-07-11 17:02:30 +00:00
lua-cliargs devel: Add lua-cliargs, based on work by Jonathan Buschmann in wip 2020-07-08 15:36:21 +00:00
lua-compat53 Add LUA_LINKER_MAGIC variable that centrally sets LDFLAGS on Darwin, 2020-07-11 15:14:29 +00:00
lua-cov devel: Add lua-cov 2020-07-10 10:26:59 +00:00
lua-coxpcall lua-coxpcall: Update to 1.17.0 2020-07-14 12:21:01 +00:00
lua-cqueues lua-cqueues: Update to 20200726 2020-08-29 09:23:56 +00:00
lua-epnf Add lua-epnf-0.3: 2020-08-06 22:56:52 +00:00
lua-event Add LUA_LINKER_MAGIC variable that centrally sets LDFLAGS on Darwin, 2020-07-11 15:14:29 +00:00
lua-fifo lua-fifo: Support for testing 2020-07-08 16:29:43 +00:00
lua-filesystem Add LUA_LINKER_MAGIC variable that centrally sets LDFLAGS on Darwin, 2020-07-11 15:14:29 +00:00
lua-fun devel: Add lua-fun 2020-07-11 12:56:17 +00:00
lua-gi Add 'lua' category to Lua modules. 2020-07-02 10:26:16 +00:00
lua-inspect devel: Add lua-inspect. Based on work by Jonathan Buschmann in wip. 2020-07-02 11:16:18 +00:00
lua-linenoise Add lua-linenoise-0.9: 2020-08-06 22:47:16 +00:00
lua-ljsyscall Reset maintainership for all (no longer) mine packages 2020-07-13 19:45:45 +00:00
lua-loadkit Use LUA_DOCDIR 2020-07-09 15:03:35 +00:00
lua-lpeg Add 'lua' category to Lua modules. 2020-07-02 10:26:16 +00:00
lua-lpeg-patterns devel: Add lua-lpeg-patterns 2020-07-08 13:48:33 +00:00
lua-lrexlib Add 'lua' category to Lua modules. 2020-07-02 10:26:16 +00:00
lua-lrexlib-onig
lua-lrexlib-pcre
lua-lrexlib-posix
lua-luassert lua-luassert: Update to 1.8.0 2020-07-14 12:44:16 +00:00
lua-luv devel: Add lua-luv. Based on work by Jonathan Buschmann in wip. 2020-07-02 20:48:09 +00:00
lua-mediator devel: Add lua-mediator 2020-07-08 12:52:07 +00:00
lua-mimetypes Use LUA_DOCDIR 2020-07-09 15:03:35 +00:00
lua-mode devel/lua-mode: Update to Version 20201010 2020-11-05 22:34:33 +00:00
lua-moses devel: Add lua-moses 2020-07-10 12:08:28 +00:00
lua-penlight lua-penlight: Update to 1.9.1 2020-11-23 20:06:46 +00:00
lua-posix lua-posix: Update to 35.0 2020-07-14 12:41:21 +00:00
lua-repl Add lua-repl-0.9: 2020-08-06 23:08:29 +00:00
lua-rings devel: Add lua-rings 2020-07-10 11:18:01 +00:00
lua-rocks lua-rocks: Update to 3.5.0 2020-12-19 11:30:24 +00:00
lua-say devel: Add lua-say, based on work by Jonathan Buschmann in wip 2020-07-08 15:46:36 +00:00
lua-sdl2 lua-sdl2: mark incompatible with lua52 2020-10-10 18:40:41 +00:00
lua-std-_debug Add 'lua' category to Lua modules. 2020-07-02 10:26:16 +00:00
lua-std-normalize Add 'lua' category to Lua modules. 2020-07-02 10:26:16 +00:00
lua-stdlib Update lua-stdlib to 41.2.2. 2020-08-06 23:45:07 +00:00
lua-system devel: Add lua-system, based on work by Jonathan Buschmann in wip 2020-07-08 12:15:08 +00:00
lua-term Add LUA_LINKER_MAGIC variable that centrally sets LDFLAGS on Darwin, 2020-07-11 15:14:29 +00:00
lua-thrift
lua-vstruct Add lua-vstruct-2.1.1: 2020-08-06 23:17:57 +00:00
lutok
lwp
lxqt-build-tools devel/lxqt-build-tools: update to 0.8.0 2020-12-07 11:26:45 +00:00
m4 devel/m4: Fix compilation on QNX 2020-08-29 21:39:14 +00:00
m17n-lib *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
mad-flute
magit
makedepend
makedepf90
maketool
man-pages
mantis Remove superfluous specification characters from pax invocations 2020-11-28 01:20:03 +00:00
mate-common mate*: remove unintentional linkage against pkgsrc gettext-libs 2020-08-24 04:41:39 +00:00
matio
mcpp
mdds *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
mdds1.2 *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
meld Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
mell
memcached memcached: Update to 1.6.9 2020-11-23 20:11:24 +00:00
menhir
mercurial
meson meson: updated to 0.56.2 2021-01-11 07:26:32 +00:00
mk-configure Update to mk-configure-0.36.0 2021-01-06 13:05:50 +00:00
mkcmd
mm-common Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
MoarVM (devel/MoarVM) updated 2020.11 to 2020.12 (previous commit log was wrong, sorry) 2021-01-09 07:27:56 +00:00
mob Update to 1.1.0. From the changelog: 2021-01-03 07:38:51 +00:00
monotone *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
monotone-server
monotone-viz *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
mph
msgpack
mustach
myrepos *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
nana
nancy Add nancy version 1.0.5 2021-01-08 17:13:18 +00:00
nasm nasm: remove unnecessary TOOL_DEPENDS 2020-10-12 12:54:01 +00:00
nbpatch
ncc Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
ncurses Run the built tic with the built libncurses, not the installed one, as 2020-09-07 11:11:41 +00:00
ncursesw
netbeans-ide Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
netbsd-iscsi-lib
netcdf netcdf: do not install libbzip2. 2021-01-05 17:05:41 +00:00
netcdf-cxx
netcdf-fortran
newfile
ninja-build ninja-build: update to 1.10.2. 2020-11-29 18:06:56 +00:00
ninka *: remove p5-Getopt-Long, part of perl 2020-09-04 11:36:49 +00:00
noweb
npapi-sdk
npth
nqc
nsis
nspr Don't pass "--with-macos-sdk=/nonexistent". Fixes this error on Catalina 2020-09-20 20:01:19 +00:00
nspr-reference
nss nss: Update to 3.60 2020-12-17 09:52:27 +00:00
ObjectiveLib *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
objfw
ocaml-angstrom
ocaml-astring
ocaml-async
ocaml-async_extra
ocaml-async_kernel
ocaml-async_rpc_kernel
ocaml-async_unix Updated devel/ocaml-async_unix to 0.13.1. 2020-12-11 09:42:41 +00:00
ocaml-base Updated devel/ocaml-base to 0.13.2. 2020-12-09 11:13:56 +00:00
ocaml-base64
ocaml-base_bigstring
ocaml-base_quickcheck
ocaml-batteries
ocaml-bigarray-compat
ocaml-bigstringaf
ocaml-bin_prot
ocaml-biniou
ocaml-bos
ocaml-checkseum
ocaml-cmdliner
ocaml-compiler-libs
ocaml-configurator
ocaml-core
ocaml-core_kernel
ocaml-cppo
ocaml-csexp Added devel/ocaml-csexp 1.3.2 2020-12-09 11:10:47 +00:00
ocaml-cstruct
ocaml-deriving-ocsigen
ocaml-digestif
ocaml-duff
ocaml-dune Added 'used by' comment to Makefile.common in devel/ocaml-dune 2020-12-09 11:12:33 +00:00
ocaml-dune-configurator Added devel/ocaml-dune-configurator, split off from devel/ocaml-dune 2020-12-09 10:52:17 +00:00
ocaml-encore
ocaml-eqaf
ocaml-extlib
ocaml-fieldslib
ocaml-findlib
ocaml-fmt
ocaml-fpath
ocaml-git
ocaml-hex
ocaml-jane-street-headers
ocaml-jbuilder
ocaml-js-build-tools Revbump for openpam cppflags change months ago, belatedly. 2020-12-04 04:55:41 +00:00
ocaml-jst-config
ocaml-ke
ocaml-logs Enable lwt option to fix www/ocaml-cohttp build errors. 2020-06-29 10:19:26 +00:00
ocaml-lru
ocaml-lwt (devel/ocaml-lwt) Add devel/ocaml-dune-configurator as buildlink3.mk 2020-12-13 13:41:59 +00:00
ocaml-lwt_camlp4
ocaml-lwt_glib Add USE_TOOLS+=pkg-config to fix build error. 2020-07-01 07:55:46 +00:00
ocaml-lwt_log
ocaml-lwt_ppx
ocaml-lwt_react
ocaml-lwt_ssl
ocaml-migrate-parsetree Updated devel/ocaml-migrate-parsetree to 1.8.0 2020-12-09 11:25:03 +00:00
ocaml-mmap
ocaml-oasis
ocaml-ocplib-endian
ocaml-optcomp
ocaml-optint Update devel/ocaml-optint to version 0.0.4. 2020-12-02 08:21:44 +00:00
ocaml-parsexp
ocaml-ppx_assert
ocaml-ppx_base
ocaml-ppx_bench Updated devel/ocaml-ppx_bench to 0.14.1. 2020-12-11 08:02:22 +00:00
ocaml-ppx_bin_prot
ocaml-ppx_cold (devel/ocaml-ppx_cold) Add ocaml-base as buildlink3.mk 2020-12-14 09:11:51 +00:00
ocaml-ppx_compare
ocaml-ppx_custom_printf
ocaml-ppx_derivers
ocaml-ppx_deriving Updated devel/ocaml-ppx_deriving to 4.5. 2020-12-10 09:15:57 +00:00
ocaml-ppx_enumerate
ocaml-ppx_expect
ocaml-ppx_fail
ocaml-ppx_fields_conv Updated devel/ocaml-ppx_fields_conv to 0.14.2. 2020-12-11 08:06:15 +00:00
ocaml-ppx_hash
ocaml-ppx_here
ocaml-ppx_inline_test Updated devel/ocaml-ppx_inline_test to 0.14.1 2020-12-11 08:08:41 +00:00
ocaml-ppx_jane
ocaml-ppx_let
ocaml-ppx_module_timer
ocaml-ppx_optcomp
ocaml-ppx_optional
ocaml-ppx_pipebang
ocaml-ppx_sexp_conv
ocaml-ppx_sexp_message
ocaml-ppx_sexp_value
ocaml-ppx_stable Updated devel/ocaml-ppx_stable to 0.14.1 2020-12-11 09:10:57 +00:00
ocaml-ppx_tools Updated devel/ocaml-ppx_tools to version 6.3. 2020-12-09 11:35:47 +00:00
ocaml-ppx_tools_versioned Updated devel/ocaml-ppx_tools_versioned to 5.4.0. 2020-12-09 11:28:57 +00:00
ocaml-ppx_typerep_conv Updated devel/ocaml-ppx_typerep_conv to 0.14.1. 2020-12-11 09:15:16 +00:00
ocaml-ppx_variants_conv Updated devel/ocaml-ppx_variants_conv to 0.14.1 2020-12-11 08:11:21 +00:00
ocaml-ppxfind Updated devel/ocaml-ppxfind to 1.4 2020-12-10 08:43:14 +00:00
ocaml-ppxlib (devel/ocaml-ppxlib) Add missing devel/ocaml-sexplib0 as buildlink3.mk 2020-12-13 13:18:57 +00:00
ocaml-psq
ocaml-re *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
ocaml-react
ocaml-reactiveData
ocaml-resource-pooling
ocaml-result Updated devel/ocaml-result to 1.5. 2020-12-09 11:07:26 +00:00
ocaml-rresult
ocaml-seq
ocaml-sexplib
ocaml-sexplib0
ocaml-spawn
ocaml-splittable_random
ocaml-stdio
ocaml-stdlib-shims Updated devel/ocaml-stdlib-shims, revision bump. 2020-12-10 08:55:22 +00:00
ocaml-stringext
ocaml-type_conv
ocaml-typerep
ocaml-variantslib
ocaml-yojson
ocamlbuild
ocamlgraph *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
ocamlify
ocamlmod
ode
ogre
okteta *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
omake
open-vcdiff
opengrok *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
openocd
openrcs
orc orc: update to 0.4.32. 2020-09-13 09:27:07 +00:00
ossp-uuid *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-accessors *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-accessors-fast p5-accessors-fast: revert previous, mistake 2020-09-04 14:17:08 +00:00
p5-Acme-Damn *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Acme-PlayCode *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Algorithm-Annotate *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Algorithm-C3 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Algorithm-CheckDigits p5-Algorithm-CheckDigits: update to 1.3.3. 2020-09-06 22:15:01 +00:00
p5-Algorithm-Dependency *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Algorithm-Diff *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Algorithm-HowSimilar *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Algorithm-Merge *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Algorithm-Permute *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-aliased *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Alien-Base-ModuleBuild *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Alien-Build (devel/p5-Alien-Build) Updated 2.32 to 2.37 2020-11-08 03:03:59 +00:00
p5-Alien-Packages *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Alien-SDL *: remove p5-Digest-SHA, part of perl 2020-09-04 11:09:01 +00:00
p5-AnnoCPAN-Perldoc *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Any-Moose *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-AnyEvent *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-AnyEvent-AIO *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-AnyEvent-IRC *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-AnyEvent-RabbitMQ *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-AnyEvent-XMPP *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-App-Cache *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-App-CLI *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-App-Cmd *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-App-cpanminus *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-App-cpanoutdated *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-App-FatPacker *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-App-perlbrew *: remove p5-File-Temp, part of perl 2020-09-04 11:32:24 +00:00
p5-App-Prove-Plugin-ProgressBar *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-App-Prove-Plugin-ProgressBar-Each *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-AppConfig *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-AppConfig-Std *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Array-Compare *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Array-Diff *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Array-RefElem *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-asa p5-asa: update to 1.04. 2020-09-07 10:24:23 +00:00
p5-Async-Interrupt *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-AtExit *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Attribute-Lexical *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-autobox *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-autobox-Core *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Autodia *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-autovivification *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-AutoXS-Header *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-B-Compiling *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-B-COW *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-B-Debug *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-B-Hooks-EndOfScope *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-B-Hooks-OP-Annotation *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-B-Hooks-OP-Check *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-B-Hooks-OP-Check-EntersubForCV *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-B-Hooks-OP-Check-StashChange *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-B-Hooks-OP-PPAddr *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-B-Hooks-Parser *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-B-Keywords *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-B-Utils *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-BackPAN-Index *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-bareword-filehandles *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Bit-Vector *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-boolean *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-BSD-Resource *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Cache *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Cache-Cache *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Cache-FastMmap *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Cache-LRU *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Cache-Memcached *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Cache-Memcached-Fast *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-Cache-Simple-TimedExpiry *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Canary-Stability *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-capitalization *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Capture-Tiny *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Carp *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Carp-Always *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Carp-Assert *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Carp-Assert-More *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Carp-Clan *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Carp-REPL *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Carton *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Check-ISA *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-CHI *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-circular-require *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-CLASS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Accessor *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Accessor-Chained *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Accessor-Grouped *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Accessor-Lite *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Accessor-Named *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Adapter *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Autouse *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Base *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-C3 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-C3-Adopt-NEXT *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-C3-Componentised *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-C3-XS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Container *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Data-Accessor *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Data-Inheritable *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-ErrorHandler *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Factory *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Factory-Util *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Field *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Fields *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Gomor *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Inner *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-InsideOut *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Inspector *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-ISA *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Load *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Load-XS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Loader *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-MakeMethods *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Method-Modifiers *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-MethodMaker *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Mix *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-ObjectTemplate *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-OOorNO *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Refresh *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-ReturnValue *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Singleton *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Std *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Throwable *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Tiny p5-Class-Tiny: update to 1.008. 2020-09-06 22:32:29 +00:00
p5-Class-Trigger *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Unload *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-Virtual *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-WhiteHole *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-XML *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-XPath *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Class-XSAccessor *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Clone *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Clone-Choose *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Clone-Fast *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Clone-PP *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-common-sense *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Compiler-Lexer *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Compress-PPMd *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Config-Any *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Config-Any-Merge *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Config-Auto *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Config-AutoConf Update to 0.319 2020-10-24 23:42:23 +00:00
p5-Config-File *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Config-Find *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Config-General *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Config-GitLike *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Config-Grammar *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Config-INI *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Config-INI-Reader-Ordered *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Config-IniFiles *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Config-MVP *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Config-MVP-Reader-INI *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Config-Onion *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Config-Properties *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Config-Std *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Config-Tiny *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Const-Fast *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-constant-def *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Context-Preserve *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-Contextual-Return *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Convert-Binary-C p5-Convert-Binary-C: update to 0.79. 2020-09-06 22:40:07 +00:00
p5-Coro p5-Coro: add patch that fixes stability issues on NetBSD 9+ 2020-09-21 22:46:11 +00:00
p5-CPAN-Changes *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-CPAN-Checksums *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-CPAN-Common-Index *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-CPAN-DistnameInfo *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-CPAN-FindDependencies *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-CPAN-Inject *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-CPAN-Meta-Check *: remove p5-Module-Metadata, part of perl 2020-09-04 14:28:38 +00:00
p5-CPAN-Mini *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-CPAN-ParseDistribution *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-CPAN-Perl-Releases p5-CPAN-Perl-Releases: update to 5.20200820. 2020-09-06 22:30:31 +00:00
p5-CPAN-Reporter *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-CPAN-Uploader p5-CPAN-Uploader: update to 0.103015. 2020-09-06 22:31:43 +00:00
p5-CPANPLUS *: revert previous, p5-Package-Constants is not part of perl 2020-09-04 12:22:53 +00:00
p5-curry *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Curses *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Curses-UI *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Curses-UI-POE *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Cwd-Guard *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Alias *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Binary *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Buffer *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Compare *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Denter *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Dump *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Dump-Streamer *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Dumper p5-Data-Dumper: improve HOMEPAGE 2020-09-20 08:10:21 +00:00
p5-Data-Dumper-Concise *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Dumper-Names *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-GUID *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Hierarchy *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-IEEE754 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Integer *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-MessagePack *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Munge *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-ObjectDriver p5-Data-ObjectDriver: update to 0.20. 2020-09-20 07:20:33 +00:00
p5-Data-OptList *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Page *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Page-Pageset *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Pageset *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Peek *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Perl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Printer *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Random *: remove p5-Time-Piece, part of perl 2020-09-04 13:56:12 +00:00
p5-Data-Record *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Section *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Section-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Serializer *: remove p5-MIME-Base64, part of perl 2020-09-04 12:05:14 +00:00
p5-Data-ShowTable *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Stag *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Structure-Util *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Data-Taxi *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-TemporaryBag *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Uniqid *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-UUID *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-UUID-Base64URLSafe *: remove p5-MIME-Base64, part of perl 2020-09-04 12:05:14 +00:00
p5-Data-Validate-IP *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Data-Visitor p5-Data-Visitor: update to 0.31. 2020-09-06 22:41:31 +00:00
p5-Date-Business *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Date-Calc *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Date-Calc-XS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Date-Manip Update to 6.83 2021-01-02 02:43:42 +00:00
p5-Date-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Debug-Client *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Debug-ShowStuff *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Declare-Constraints-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-Autoflush *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-CallChecker *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Devel-Caller *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-Caller-IgnoreNamespaces *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-CallParser *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Devel-CheckBin *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-CheckCompiler *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-CheckLib *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-CheckOS Update to 1.85 2020-10-24 23:53:49 +00:00
p5-Devel-Confess *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-Cover *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-Cycle *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-Declare *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-Dumpvar *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-ebug p5-Devel-ebug: update to 0.63. 2020-09-06 22:43:34 +00:00
p5-Devel-EvalContext *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-Events *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-Devel-Events-Objects *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-Devel-FindPerl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-FindRef *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-Gladiator *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-GlobalDestruction *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-Hide *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-Leak *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Devel-Leak-Object *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-LexAlias *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-NYTProf *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-OverloadInfo *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-OverrideGlobalRequire *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Devel-PartialDump *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-Devel-PatchPerl Update to 2.06 2021-01-02 02:48:26 +00:00
p5-Devel-Pragma *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-Profile *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-Refactor *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-Refcount *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-REPL *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-Size *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-SmallProf *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-StackTrace *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-StackTrace-AsHTML *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-StackTrace-WithLexicals *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-Symdump *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-Trace *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Devel-TraceUse *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Dir-Self *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Dist-CheckConflicts *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Dist-Zilla p5-Dist-Zilla: update to 6.015. 2020-09-06 23:03:14 +00:00
p5-Dist-Zooky *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-DynaLoader-Functions *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-enum *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Env-Path *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Error *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-EV *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Eval-Closure *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Eval-LineNumbers *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Event *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Event-ExecFlow *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Event-RPC *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-ex-lib *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Exception-Class *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Exception-Handler *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Expect *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Expect-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Exporter-Declare devel/p5-Exporter-Declare: import p5-Exporter-Declare-0.114 2020-09-07 20:15:16 +00:00
p5-Exporter-Lite *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Exporter-Tiny *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-ExtUtils-AutoInstall *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-ExtUtils-CChecker *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-ExtUtils-Config *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-ExtUtils-CppGuess *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-ExtUtils-Depends *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-ExtUtils-F77 p5-ExtUtils-F77: update to 1.24. 2020-09-06 23:05:33 +00:00
p5-ExtUtils-Helpers *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-ExtUtils-InstallPaths *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-ExtUtils-LibBuilder *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-ExtUtils-MakeMaker-CPANfile *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-ExtUtils-ModuleMaker *: remove p5-File-Path, part of perl 2020-09-04 11:29:06 +00:00
p5-ExtUtils-ModuleMaker-TT *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-ExtUtils-PkgConfig *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-ExtUtils-XSBuilder *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-ExtUtils-XSpp *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Fennec-Lite devel/p5-Fennec-Lite: import p5-Fennec-Lite-0.004 2020-09-07 20:00:56 +00:00
p5-FFI-CheckLib *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-BaseDir *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Binary *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-BOM *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-ChangeNotify *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-chdir *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-ConfigDir *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-DesktopEntry *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-DirCompare *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-DirSync *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Find-Object *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Find-Rule *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Find-Rule-Age *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Find-Rule-Perl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Find-Rule-Permissions *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Find-Rule-PPI *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Find-Rule-VCS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Flat p5-File-Flat: update to 1.07. 2020-09-06 23:06:21 +00:00
p5-File-Flock *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-File-FlockDir *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-HomeDir Update to 1.006 2020-11-15 07:06:53 +00:00
p5-File-LibMagic p5-File-LibMagic: update to 1.23. 2020-09-06 23:09:44 +00:00
p5-File-Listing Update to 6.14 2021-01-02 02:57:19 +00:00
p5-File-MimeInfo Update to 0.30 2021-01-02 07:47:17 +00:00
p5-File-Modified *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Next *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-NFSLock *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Path-Expand *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Path-Tiny *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-PathConvert *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Policy *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-pushd *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Save-Home *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Share *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-ShareDir *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-ShareDir-Install *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-ShareDir-ProjectDistDir *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Slurp *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Slurp-Tiny *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Slurper *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Tempdir *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Touch *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Type *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Util *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Valet add two packages from cpan: 2020-09-22 01:50:23 +00:00
p5-File-Which *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-FileHandle-Fmode *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-FileHandle-Unget *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Filesys-Notify-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Find-Lib *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-FindBin-libs *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-forks *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Format-Human-Bytes *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-FreezeThaw *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Function-Parameters *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Future *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Getopt-ArgvFile *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Getopt-Euclid *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Getopt-Long-Descriptive *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Getopt-Mixed *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Getopt-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Getopt-Tabular *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-gettext *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Git-CPAN-Patch *: revert previous, p5-Package-Constants is not part of perl 2020-09-04 12:22:53 +00:00
p5-Git-Repository *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Git-Repository-Plugin-AUTOLOAD *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Git-Version-Compare *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Git-Wrapper *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-GitLab-API-v3 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-GitLab-API-v4 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Glib-Object-Introspection *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-glib2 p5-glib2: update to 1.3293. 2020-09-07 10:27:47 +00:00
p5-Gnome2 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
p5-Gnome2-GConf *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
p5-Graph *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Graph-ReadWrite *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Gravatar-URL *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Gtk2-GladeXML *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
p5-Guard *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Hash-Case *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Hash-FieldHash *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Hash-Flatten *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Hash-Merge *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Hash-Merge-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Hash-MoreUtils *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Hash-MultiValue *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Hash-Util-FieldHash-Compat *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-Heap *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Hook-LexWrap *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IMDB-Film *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Import-Into *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Importer p5-Importer: update to 0.026. 2020-09-07 06:55:45 +00:00
p5-inc *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-inc-latest *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-indirect *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Inline *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Inline-C *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-InlineX-C2XS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Internals *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-IO-AIO *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-All *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-Async p5-IO-Async: update to 0.77. 2020-09-06 23:24:46 +00:00
p5-IO-Capture *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-CaptureOutput *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-Digest *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-Event *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-IO-Handle-Util *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-IO-HTML Update to 1.004 2020-10-02 07:16:37 +00:00
p5-IO-InSitu *: remove p5-version, part of perl 2020-09-04 14:22:57 +00:00
p5-IO-Interactive *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-LockedFile *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-Multiplex *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-Null *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-Pager p5-IO-Pager: update to 1.03. 2020-09-07 06:52:00 +00:00
p5-IO-Pipeline *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-Pipely *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-Prompt *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-Prompter *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-String *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-stringy *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-Stty *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-Tee p5-IO-Tee: update to 0.66. 2020-09-07 06:52:42 +00:00
p5-IO-TieCombine *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-Tty *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-Util *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IPC-Cache *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IPC-DirQueue *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IPC-PubSub *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IPC-Run p5-IPC-Run: update to 20200505.0. 2020-09-07 06:54:28 +00:00
p5-IPC-Run3 *: improve HOMEPAGE 2020-09-08 13:09:53 +00:00
p5-IPC-Shareable *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IPC-SharedCache *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IPC-ShareLite *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IPC-Signal *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IPC-System-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-LEOCHARRE-CLI2 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-LEOCHARRE-Debug *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-LEOCHARRE-Dir *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lexical-Persistence *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Lexical-SealRequireHints *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-lib-abs *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-List-AllUtils p5-List-AllUtils: update to 0.18. 2020-09-07 06:56:23 +00:00
p5-List-MoreUtils *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-List-MoreUtils-XS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-List-Pairwise *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-List-SomeUtils *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-List-SomeUtils-XS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-List-UtilsBy *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-local-lib *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Locale-Msgfmt *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Locale-PO *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Log-Agent *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Log-Any *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Log-Any-Adapter-Callback *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Log-Any-Adapter-Dispatch *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Log-Any-Adapter-Log4perl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Log-Any-Adapter-Screen *: remove p5-Term-ANSIColor, part of perl 2020-09-04 13:29:52 +00:00
p5-Log-Any-Adapter-TAP *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Log-Dispatch p5-Log-Dispatch: update to 2.70. 2020-09-07 06:57:24 +00:00
p5-Log-Dispatch-Array *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Log-Dispatch-Config *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Log-Dispatch-DBI *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Log-Dispatch-FileRotate *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Log-Dispatch-Perl p5-Log-Dispatch-Perl: update to 0.05. 2020-09-07 06:58:09 +00:00
p5-Log-Dispatchouli p5-Log-Dispatchouli: update to 2.022. 2020-09-07 06:58:53 +00:00
p5-Log-Handler p5-Log-Handler: update to 0.90. 2020-09-07 07:00:05 +00:00
p5-Log-Log4perl p5-Log-Log4perl: update to 1.53. 2020-09-20 07:27:41 +00:00
p5-Log-LogLite *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Log-Message *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Log-Message-Simple *: improve HOMEPAGE 2020-09-08 13:09:53 +00:00
p5-Log-Report *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Log-Report-Optional *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Log-Trace *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mac-Carbon *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mac-SystemDirectory *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Make p5-Make: update to 2.002. 2020-09-07 07:02:36 +00:00
p5-Memoize-ExpireLRU *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Memoize-Memcached *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Menlo *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Menlo-Legacy *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Meta-Builder devel/p5-Meta-Builder: import p5-Meta-Builder-0.004 2020-09-07 20:11:50 +00:00
p5-MetaCPAN-API *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MetaCPAN-Client *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Method-Signatures *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Method-Signatures-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Metrics-Any devel/p5-Metrics-Any: import p5-Metrics-Any-0.06 2020-09-06 23:17:01 +00:00
p5-Mixin-ExtraFields *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mixin-ExtraFields-Param *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mixin-Linewise *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mo *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mock-Quick devel/p5-Mock-Quick: import p5-Mock-Quick-1.111 2020-09-07 20:18:45 +00:00
p5-Modern-Perl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Build *: remove p5-CPAN-Meta dependency, part of perl 2020-09-04 10:39:25 +00:00
p5-Module-Build-Tiny *: remove p5-Test-Harness, part of perl 2020-09-04 13:37:50 +00:00
p5-Module-Build-WithXSpp *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Build-XSUtil *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Compile *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-CPANfile *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-CPANTS-Analyse *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Dependency *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-ExtractUse *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Find *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-FromPerlVer *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Implementation *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Install *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Install-AuthorRequires *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Module-Install-AuthorTests *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Install-GithubMeta *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Install-ManifestSkip *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Install-PadrePlugin *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Install-ReadmeFromPod *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Install-Repository *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Install-RTx p5-Module-Install-RTx: update to 0.42. 2020-09-07 09:31:22 +00:00
p5-Module-Install-Substitute *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Install-XSUtil *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Manifest *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Manifest-Skip *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Pluggable *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Refresh *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Runtime *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Runtime-Conflicts *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-ScanDeps p5-Module-ScanDeps: update to 1.29. 2020-09-07 09:32:09 +00:00
p5-Module-Starter p5-Module-Starter: update to 1.770. 2020-09-07 09:33:46 +00:00
p5-Module-Starter-PBP *: remove p5-version, part of perl 2020-09-04 14:22:57 +00:00
p5-Module-Util *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Versions *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Module-Versions-Report *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mojo-IOLoop-ForkCall *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Moo *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Moos *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Moose p5-Moose: update to 2.2013. 2020-09-07 09:38:05 +00:00
p5-Moose-Autobox *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Moose-Policy *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-MooseX-Aliases *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-App *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-App-Cmd *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-MooseX-ArrayRef *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-MooseX-Attribute-Chained *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-AttributeHelpers *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Attributes-Curried *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-ClassAttribute *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-CompileTime-Traits *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-ConfigFromFile *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Daemonize *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Declare *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Emulate-Class-Accessor-Fast *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-FollowPBP *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Getopt *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Has-Options *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-InsideOut *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-LazyRequire *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-MarkAsMethods *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Meta-TypeConstraint-ForceCoercion *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Method-Signatures *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-MethodAttributes p5-MooseX-MethodAttributes: update to 0.32. 2020-09-07 09:40:56 +00:00
p5-MooseX-MultiInitArg *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-NonMoose *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Object-Pluggable *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-OneArgNew *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Param *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Params-Validate *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-POE *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Role-Parameterized p5-MooseX-Role-Parameterized: fix PERL5_MODULE_TYPE 2020-09-06 23:00:33 +00:00
p5-MooseX-Role-Tempdir *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Role-WithOverloading *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-SemiAffordanceAccessor *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-SetOnce *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-SimpleConfig *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Singleton *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-StrictConstructor *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Traits *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-MooseX-Traits-Pluggable *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-MooseX-Types *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Types-Common *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Types-JSON *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Types-LoadableClass *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Types-LogAny *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Types-Path-Class *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Types-Perl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Types-Stringlike *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Types-Structured *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooseX-Types-URI *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooX-ClassAttribute *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-MooX-Cmd *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooX-ConfigFromFile *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooX-File-ConfigDir *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooX-HandlesVia *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooX-late *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooX-Locale-Passthrough *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooX-Log-Any *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooX-Options *: remove p5-Module-Metadata, part of perl 2020-09-04 14:28:38 +00:00
p5-MooX-Roles-Pluggable *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooX-StrictConstructor *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooX-Types-MooseLike *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooX-Types-MooseLike-Numeric *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MooX-TypeTiny *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Mouse *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MouseX-Getopt *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MouseX-NativeTraits *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MouseX-Types *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MouseX-Types-Path-Class *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-MRO-Compat *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-multidimensional *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-namespace-autoclean *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-namespace-clean *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Net-CIDR *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Net-LDAP-Batch *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Net-LDAP-Class *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Net-LDAP-Server-Test *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Net-LDAP-SID *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Net-Netmask *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Object-Accessor *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Object-Declare *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Object-Event *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Object-InsideOut *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Object-Pluggable *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Object-Realize-Later *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Object-Signature *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-OLE-Storage_Lite *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-OOTools *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Ouch *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Package-Constants *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Package-DeprecationManager *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Package-Generator *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Package-Stash *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Package-Stash-XS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Package-Variant *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PadWalker *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-pango *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PAR *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PAR-Dist *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Parallel-ForkManager *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Parallel-Prefork *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Params-Classify *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Params-Coerce *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Params-Util *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Params-Validate *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Params-ValidationCompiler *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Parse-CPAN-Packages *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Parse-ErrorString-Perl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Parse-ExuberantCTags *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Parse-Method-Signatures *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Parse-PMFile *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Parse-RecDescent *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Parse-Yapp *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PatchReader *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Path-Class *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Path-Class-File-Stat *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Path-Dispatcher p5-Path-Dispatcher: update to 1.08. 2020-09-07 09:49:33 +00:00
p5-Path-Dispatcher-Declarative *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Path-FindDev *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Path-IsDev *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Path-Iter *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PathTools *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Pegex *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Perl-APIReference *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Perl-Critic devel/p5-Perl-Critic: Version 1.138 requires Pod::TextPlain which is part of Pod::Parser 2020-12-02 11:06:55 +00:00
p5-perl-headers *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Perl-MinimumVersion *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Perl-PrereqScanner *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Perl-PrereqScanner-NotQuiteLite p5-Perl-PrereqScanner-NotQuiteLite: update to 0.9913. 2020-09-13 07:51:14 +00:00
p5-Perl-Tidy p5-Perl-Tidy: update to 20200907. 2020-09-13 07:54:02 +00:00
p5-Perl-Version *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Perl4-CoreLibs *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Perl6-Export *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Perl6-Export-Attrs *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Perl6-Junction *: improve HOMEPAGE 2020-09-08 13:09:53 +00:00
p5-Perl6-Slurp *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PerlIO-eol *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PerlIO-gzip *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PerlIO-utf8_strict p5-PerlIO-utf8_strict: update to 0.008. 2020-09-20 07:28:23 +00:00
p5-PerlIO-via-Bzip2 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PerlIO-via-dynamic *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PerlIO-via-symlink *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PerlIO-via-Timeout *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PerlX-Maybe *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PHP-Serialization *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-pip *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PkgConfig devel/p5-PkgConfig: Fix aboslute paths 2020-09-07 22:07:14 +00:00
p5-POE p5-POE: update to 1.368. 2020-09-07 09:43:42 +00:00
p5-POE-Component-Cron *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-POE-Component-Pluggable *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-POE-Component-Schedule *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-POE-Component-Syndicator *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-POE-Test-Loops *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-POEx-Types *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PPI *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PPI-PowerToys *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PPI-XS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PPIx-Regexp p5-PPIx-Regexp: update to 0.074. 2020-09-13 07:49:44 +00:00
p5-PPIx-Utilities *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-prefork *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Probe-Perl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Proc-Background *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Proc-Daemon *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Proc-InvokeEditor *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Proc-PID-File *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Proc-Pidfile *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Proc-ProcessTable *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Proc-Queue *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Proc-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Proc-Wait3 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Proc-WaitStat *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-PV *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Python-Serialise-Marshal *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Readonly *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Readonly-XS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Ref-Util *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Ref-Util-XS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Regexp-Assemble *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Regexp-MatchContext *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Regexp-Parser *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Regexp-Shellish *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Regexp-Trie *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Reply p5-Reply: depend on p5-Term-ReadLine-Gnu. 2020-09-06 12:03:13 +00:00
p5-Return-MultiLevel *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Return-Value *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-rlib devel/p5-rlib: import p5-rlib-0.02 2020-09-07 11:19:37 +00:00
p5-Role-Basic *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Role-HasMessage *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Role-Identifiable *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Role-Tiny *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Rose-Object *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-RT-Authen-ExternalAuth *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-RT-Extension-ArticleTemplates (devel/p5-RT-Extension-ArticleTemplates) Adjust PERL5_PACKLIST_DIR (by hardcoding, sorry) 2020-09-23 23:34:52 +00:00
p5-Safe-Hole *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Safe-Isa *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Scalar-Defer *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Scalar-List-Utils *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Scalar-Util-Refcount *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Schedule-RateLimiter *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Scope-Guard *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Scope-Upper *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-SDL *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Search-Elasticsearch p5-Search-Elasticsearch: update to 7.30. 2020-09-20 07:36:55 +00:00
p5-Set-Array *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Set-IntSpan *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Set-Object *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Set-Scalar *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Shell-Config-Generate *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Shell-Guess *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Shell-Perl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-ShipIt *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Signal-Mask *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-signatures *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Smart-Comments *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Software-License *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sort-Key *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sort-Maker *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sort-Naturally *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sort-Versions *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Specio *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Spiffy *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Spoon *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Stream-Buffered *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-strictures *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-Escape *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-Format *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-PerlIdentifier *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-Print *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-String-Util p5-String-Util: update to 1.31. 2020-09-07 09:56:04 +00:00
p5-Struct-Dumb *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Sub-Exporter *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sub-Exporter-ForMethods *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sub-Exporter-GlobExporter *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sub-Exporter-Progressive *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sub-HandlesVia p5-Sub-HandlesVia: update to 0.015. 2020-09-13 07:55:49 +00:00
p5-Sub-Identify *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sub-Info *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Sub-Install *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sub-Installer *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sub-Name *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sub-Override *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sub-Quote *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sub-Uplevel *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-subversion *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
p5-SUPER *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-SVN-Class *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-SVN-Dump *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-SVN-Mirror *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-SVN-Notify *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-SVN-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Symbol-Global-Name *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-syntax *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Syntax-Keyword-Junction *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sys-Syscall *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-System-Command p5-System-Command: update to 1.121. 2020-09-07 10:09:36 +00:00
p5-Taint-Util *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-TAP-Formatter-HTML *: improve HOMEPAGE 2020-09-08 13:09:53 +00:00
p5-TAP-Harness-Archive *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Task-Weaken *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Tee *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Template-Plugin-Handy *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Template-Plugin-HashMerge *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Template-Plugin-ListMoreUtils *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Template-Plugin-ListUtil *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Template-Plugin-VMethods *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Term-Animation *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Term-Encoding *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Term-ProgressBar *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Term-ProgressBar-Quiet *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Term-ProgressBar-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Term-Prompt *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Term-ReadKey *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Term-ReadLine-Gnu devel/p5-Term-ReadLine-Gnu: import p5-Term-ReadLine-Gnu-1.36 2020-09-06 11:54:38 +00:00
p5-Term-ReadLine-Perl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Term-ReadLine-TTYtter *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Term-ReadPassword *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Term-Screen *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Term-Shell *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Term-ShellUI *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Term-Size *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Term-Size-Any *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Term-Size-Perl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Term-Table *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Term-UI *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Aggregate *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Alien-CPP *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Test-API *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Approx *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Assertions *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Base *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-BDD-Cucumber Update to 0.75. From the changelog: 2020-12-29 11:28:01 +00:00
p5-Test-Bits *: remove p5-parent, part of perl 2020-09-04 14:20:28 +00:00
p5-Test-CheckDeps *: remove p5-Module-Metadata, part of perl 2020-09-04 14:28:38 +00:00
p5-Test-CheckManifest *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Class *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-ClassAPI *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-CleanNamespaces *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-Test-Cmd *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Command-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Compile p5-Test-Compile: update to 2.4.1. 2020-09-07 10:11:24 +00:00
p5-Test-Continuous *: remove p5-Term-Cap, part of perl 2020-09-04 13:32:00 +00:00
p5-Test-CPAN-Meta *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Test-CPAN-Meta-JSON p5-Test-CPAN-Meta-JSON: add missing dependency. 2020-09-20 07:08:12 +00:00
p5-Test-CPAN-Meta-YAML *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Deep *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-Test-DependentModules *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Test-Differences *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Dir *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-DistManifest *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Test-Distribution *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-EOL *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Test-Exception *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Exit *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Test-Expect *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-FailWarnings *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Fatal p5-Test-Fatal: update to 0.016. 2020-09-07 10:11:59 +00:00
p5-Test-File *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-File-Contents *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-File-ShareDir *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Fixture-DBIC-Schema *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-HexDifferences *: remove p5-version, part of perl 2020-09-04 14:22:57 +00:00
p5-Test-HexString *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-HTTP-LocalServer *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Test-Identity *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-InDistDir *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Inline *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Inter *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Kwalitee *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-LeakTrace *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-LectroTest *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-LoadAllModules *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Log4perl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-LongString *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Manifest *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Memory-Cycle *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Metrics-Any devel/p5-Test-Metrics-Any: import p5-Test-Metrics-Any-0.01 2020-09-06 23:18:34 +00:00
p5-Test-MinimumVersion *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-Test-Mock-LWP *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-MockModule p5-Test-MockModule: update to 0.175.0. 2020-09-20 07:39:05 +00:00
p5-Test-MockObject *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Modern *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-More-Behaviour *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-More-UTF8 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Most *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-Test-Needs *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-NiceDump *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Test-NoTabs *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-NoWarnings *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-Test-Object *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Output *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-Test-Perl-Critic *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Pod *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Pod-Coverage *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Pod-Spelling-CommonMistakes *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-POE-Client-TCP *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-POE-Server-TCP *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Refcount *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Reporter *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Requires p5-Test-Requires: update to 0.11. 2020-09-07 10:13:48 +00:00
p5-Test-Requires-Git *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Test-Roo *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Script *: improve HOMEPAGE 2020-09-08 13:09:53 +00:00
p5-Test-Script-Run *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-SharedFork *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Spec *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Spelling *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Stream *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Test-Strict *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Test-SubCalls *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Taint *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-TempDir p5-Test-TempDir: update to 0.11. 2020-09-07 10:15:33 +00:00
p5-Test-TempDir-Tiny *: remove p5-File-Temp, part of perl 2020-09-04 11:32:24 +00:00
p5-Test-TinyMocker *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Toolbox *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Test-Trap *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-Test-Unit *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-UseAllModules *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-utf8 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Version *: remove p5-Module-Metadata, part of perl 2020-09-04 14:28:38 +00:00
p5-Test-Warn *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Warnings *: remove p5-Module-Metadata, part of perl 2020-09-04 14:28:38 +00:00
p5-Test-Weaken *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-Without-Module *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-WWW-Selenium *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-YAML-Meta *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test-YAML-Valid *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Test2-Plugin-NoWarnings p5-Test2-Plugin-NoWarnings: update to 0.09. 2020-09-07 10:16:54 +00:00
p5-Test2-Suite *: remove p5-Test-Simple, part of perl 2020-09-04 13:45:13 +00:00
p5-Test2-Tools-Explain *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-TheSchwartz p5-TheSchwartz: fix module build type. 2020-09-10 10:33:47 +00:00
p5-thrift *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Throwable *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Tie-Array-AsHash *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Tie-Array-Sorted *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Tie-Cache *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Tie-Cache-LRU *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Tie-Cache-LRU-Expires *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Tie-CPHash Add p5-Tie-CPHash version 2.000. 2020-12-06 09:57:48 +00:00
p5-Tie-Cycle *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Tie-Function *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Tie-IxHash *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Tie-LLHash *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Tie-RefHash-Weak *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Tie-RegexpHash *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Tie-Simple *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Tie-ToObject *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Tree-DAG_Node *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Tree-R *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Tree-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Tree-Simple-VisitorFactory *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Try-Tiny *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-TryCatch *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Type-Tiny p5-Type-Tiny: update to 1.010006. 2020-09-07 10:21:03 +00:00
p5-Type-Tiny-XS p5-Type-Tiny-XS: update to 0.021. 2020-09-07 10:23:05 +00:00
p5-Types-Serialiser *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-UNIVERSAL-can *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-UNIVERSAL-isa *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-UNIVERSAL-moniker *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-UNIVERSAL-require *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-UUID-Tiny *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Variable-Magic *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-VCP *: remove p5-MIME-Base64, part of perl 2020-09-04 12:05:14 +00:00
p5-VCP-Dest-svk *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Want *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-WeakRef *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Wx-Perl-DataWalker *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-XString *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-XXX *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p8-platform
palmpower
pango Update pango to 1.48.0 2021-01-11 09:43:21 +00:00
pangomm *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
pangox-compat *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
papaya *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
pardiff
patch
patchelf
patchutils devel/patchutils: update to 0.4.2. 2020-12-20 13:05:00 +00:00
pcc-libs
pccts
pcl-cvs
pcre
pcre++
pcre-ocaml
pcre2 pcre2: update to 10.36. 2020-12-06 10:37:03 +00:00
pdcurses
pear-Console_CommandLine
pedisassem
phabricator Remove reference to php70 2021-01-01 09:05:06 +00:00
php-composer php-composer: Update to 2.0.8 2020-12-05 18:28:05 +00:00
php-gearman devel/php-gearman: update to 2.0.6 2021-01-03 06:55:47 +00:00
php-gettext
php-gmp
php-igbinary
php-libawl
php-memcache
php-memcached
php-mode
php-opcache
php-pcntl
php-posix
php-psr Switch to use PHP_VERSIONS_INCOMPATIBLE. 2021-01-03 16:06:57 +00:00
php-pthreads
php-raphf
php-raphf2 devel/php-raphf2: update supported PHP version 2021-01-03 06:52:47 +00:00
php-shmop
php-sysvmsg
php-sysvsem
php-sysvshm
php-xcache
php-xdebug devel/php-xdebug: update to 3.0.1 2021-01-03 07:28:56 +00:00
phpstorm-bin Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
physfs
picasm
picopb
picotrace
picp
picprg
pilrc
pipestatus
pkg-config
pkgconf pkgconf: update to 1.7.3. 2020-10-02 09:21:28 +00:00
ply Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
pmccabe
poco
polly llvm: updated to 10.0.1 2020-07-26 19:20:12 +00:00
popt popt: update to 1.18 2020-08-15 01:02:42 +00:00
poxml *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
prcs *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
ProjectCenter *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
protobuf Normalize handling packages that require 64-bit atomic ops. 2020-12-31 20:04:11 +00:00
protobuf-c devel/protobuf-c: Update to 1.3.3 2020-10-01 20:35:23 +00:00
pstreams *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
pth
pthread-sem
pvs
pwlib
py-absl-py
py-adb *: switch to versioned_dependencies for py-rsa 2020-09-01 04:08:42 +00:00
py-ailment py-angr: update to version 9.0.4378 2020-09-28 22:56:38 +00:00
py-aiocontextvars py-aiocontextvars: added version 0.2.2 2020-07-01 06:58:11 +00:00
py-aiofiles py-aiofiles: updated to 0.6.0 2020-10-27 22:48:38 +00:00
py-aiounittest
py-angr py-angr: fix the dependency for tests 2020-09-29 04:06:46 +00:00
py-anytree
py-apipkg
py-appdirs py-appdirs: fix build with python 3.6. 2020-07-21 10:15:39 +00:00
py-approvaltests py-approvaltests: updated to 0.2.10 2020-12-04 09:25:25 +00:00
py-archinfo py-angr: update to version 9.0.4378 2020-09-28 22:56:38 +00:00
py-argcomplete py-argcomplete: updated to 1.12.2 2020-11-24 06:30:28 +00:00
py-argh
py-argparse py-argparse: add "python" to CATEGORIES 2020-06-30 13:03:45 +00:00
py-args
py-astor
py-astroid py-astroid: allow newer lazy_object_proxy 2020-07-15 09:19:05 +00:00
py-async-timeout
py-async_generator
py-at-spi
py-at-spi2 Update py-at-spi2 to 2.38.0 2020-10-01 11:51:19 +00:00
py-atomicwrites
py-atpublic py-atpublic: updated to 2.1.1 2020-10-23 07:21:23 +00:00
py-attrs *: use py-hypothesis via versioned_dependencies.mk 2020-10-06 10:51:21 +00:00
py-automat
py-autopep8 py-autopep8: updated to 1.5.4 2020-08-03 13:49:55 +00:00
py-babel py-babel: updated to 2.9.0 2020-11-26 11:43:33 +00:00
py-backcall
py-backports
py-backports.functools_lru_cache
py-backports.os
py-backports.shutil_get_terminal_size
py-backports_abc
py-bcolz math/blas, math/lapack: Install interchangeable BLAS system 2020-10-12 21:51:57 +00:00
py-behave
py-binaryornot
py-bintrees py-bintrees: remove redundant dependency on setuptools 2020-10-08 21:46:26 +00:00
py-bitstring Import bitstring-3.1.7 from pypi as devel/py-bitstring 2020-08-18 20:13:03 +00:00
py-blessings
py-blinker
py-boltons py-boltons: updated to 20.2.1 2020-09-08 18:07:53 +00:00
py-boost boost: Update to 1.75.0 2021-01-01 08:19:01 +00:00
py-bugzilla
py-buildbot *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-buildbot-console-view
py-buildbot-grid-view
py-buildbot-pkg *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-buildbot-waterfall-view
py-buildbot-worker
py-buildbot-www
py-bump2version py-bump2version: fix Python incompatibility setting 2020-10-09 03:33:09 +00:00
py-cachecontrol py-cachecontrol: Install "versioned" doesitcache 2020-10-07 20:08:58 +00:00
py-cached-property py-cached-property: updated to 1.5.2 2020-10-02 19:16:47 +00:00
py-cachetools py-cachetools: updated to 4.1.1 2020-07-07 07:04:47 +00:00
py-canonicaljson Update devel/py-canonicaljson to 1.4.0 2020-10-17 13:53:55 +00:00
py-capstone devel/capstone: Update to 4.0.2 2020-08-18 20:20:46 +00:00
py-case
py-cffi py-cffi: updated to 1.14.4 2020-11-25 11:34:39 +00:00
py-chai
py-characteristic
py-checker
py-cheetah
py-cheetah3 py-cheetah3: updated to 3.2.6 2020-10-02 19:18:59 +00:00
py-cle py-angr: update to version 9.0.4378 2020-09-28 22:56:38 +00:00
py-click
py-click-log
py-click-threading
py-clickclick
py-clint
py-codespell
py-codestyle
py-cogapp
py-compizconfig *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
py-configargparse
py-configobj py-configobj: fix PLIST again for setuptools-52 2020-09-06 23:25:42 +00:00
py-configparser
py-constantly
py-constants
py-construct
py-contextlib2
py-contextvars
py-cookiecutter
py-cooldict py-cooldict: import version 1.04 2020-09-29 02:32:13 +00:00
py-coverage py-coverage: updated to 5.3.1 2020-12-21 09:33:05 +00:00
py-cparser
py-CppHeaderParser Import CppHeaderParser-2.7.4 from pypi as devel/py-CppHeaderParser 2020-08-18 20:20:33 +00:00
py-cpplint py-cpplint: updated to 1.5.4 2020-10-03 21:49:21 +00:00
py-crayons py-crayons: updated to 0.3.1 2020-07-08 14:55:18 +00:00
py-cubes
py-curses
py-cursespanel
py-curtsies Fix Python 3.6 build 2020-08-27 12:26:59 +00:00
py-cyordereddict
py-cython py-cython: updated to 0.29.21 2020-07-09 07:21:45 +00:00
py-cytoolz py-cytools: import version 0.10.1 2020-09-29 00:02:32 +00:00
py-d2to1
py-daemon *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-daemonize
py-darcsver multiple: Update MAINTAINER from gdt@ir.bbn.com 2020-07-27 16:20:44 +00:00
py-dash
py-ddt py-ddt: updated to 1.4.1 2020-12-04 09:23:18 +00:00
py-decorator
py-deepstate py-deepstate: Remove unnecessary restriction to py3.7/3.6 2020-12-30 12:29:24 +00:00
py-Deprecated
py-deprecation
py-dialog
py-dialog2
py-distorm3 py-distorm3: updated to 3.5.1 2020-12-10 12:34:34 +00:00
py-distro
py-doc8
py-docopt
py-docstyle
py-doctor
py-dogpile-cache
py-dotenv py-dotenv: updated to 0.15.0 2020-11-09 12:16:14 +00:00
py-dulwich
py-editorconfig-core
py-entrypoints
py-enum34
py-exam
py-execnet
py-expressions
py-extension-helpers (devel/py-extension-helpers) Fix EGG_INFODIR weirdness, thanks joerg@ 2021-01-03 15:09:50 +00:00
py-extras
py-extratools
py-factory_boy py-factory_boy: updated to 3.1.0 2020-12-10 12:31:16 +00:00
py-fakefs
py-faker py-faker: updated to 5.0.2 2020-12-16 13:16:52 +00:00
py-falcon
py-fann2
py-fasteners
py-fastimport
py-filebytes
py-filechunkio
py-filelock
py-fixtures
py-flake8 py-flake8: updated to 3.8.4 2020-10-03 06:02:18 +00:00
py-flake8-docstrings
py-flake8-import-order
py-flake8-polyfill
py-flakes
py-flaky py-flaky: updated to 3.7.0 2020-07-21 07:41:17 +00:00
py-flexmock
py-flit Revert addition of devel/py-responses. 2020-12-05 03:22:34 +00:00
py-flit_core devel/py-flit: Import py-flit 3.0.0 2020-12-04 23:29:32 +00:00
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 *: use py-hypothesis via versioned_dependencies.mk 2020-10-06 10:51:21 +00:00
py-game py-game: Fix X11_TYPE=native and python27 build under NetBSD 9 2020-06-22 11:33:41 +00:00
py-gcovr
py-generate {py-,}generate: make distinfo checksums match upstream, set DIST_SUBDIR. 2020-08-24 06:00:47 +00:00
py-gflags
py-gitdb py-gitdb: mark as not for Python 2.7 2020-09-25 08:28:26 +00:00
py-gitinspector
py-gitinspector-devel
py-gitpython py-gitpython: updated to 3.1.12 2021-01-06 12:18:03 +00:00
py-gobject *: fix py-cairo/py-cairo118 dependencies 2020-09-03 15:46:06 +00:00
py-gobject-shared *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
py-gobject3 *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
py-gobject3-common
py-google-api-core py-google-api-core: updated to 1.24.1 2021-01-03 22:43:16 +00:00
py-google-apputils
py-googleapis-common-protos
py-grako
py-greenlet py-greenlet: updated to 0.4.17 2020-09-29 16:58:01 +00:00
py-guppy3 py-guppy3: update to 3.1.0 2020-10-13 21:18:35 +00:00
py-h5py math/blas, math/lapack: Install interchangeable BLAS system 2020-10-12 21:51:57 +00:00
py-hamcrest
py-hash
py-hg-evolve py-hg-evolve: update to 10.1.0. 2020-11-09 14:43:14 +00:00
py-hg-fastimport hg-fastimport: adjust __init__.py for latest mercurial 2021-01-09 15:30:03 +00:00
py-hg-git
py-hglib py-hglib: updated to 2.6.2 2020-11-30 20:23:38 +00:00
py-hgtools
py-hyperscan
py-hypothesis py-hypothesis: update to 5.46.0. 2021-01-04 11:55:03 +00:00
py-hypothesis4 devel/py-hypothesis4: import py-hypothesis-4.57.1 2020-10-06 09:47:27 +00:00
py-idle
py-importlib-metadata py-importlib-metadata: updated to 2.0.0 2020-10-21 08:41:28 +00:00
py-importlib-resources py-importlib-resources: updated to 3.0.0 2020-10-21 08:40:54 +00:00
py-incremental
py-iniconfig py-iniconfig: updated to 1.1.1 2020-10-21 12:29:52 +00:00
py-InlineEgg
py-inquirer devel/py-inquirer: Fix broken PKGNAME & MASTER_SITES 2020-10-04 11:47:54 +00:00
py-intelhex devel/py-intelhex: Import py-intelhex 2.3.0 2020-12-04 23:30:29 +00:00
py-intervaltree py-intervaltree: updated to 3.1.0 2020-12-14 14:23:46 +00:00
py-iowait
py-ipaddr
py-ipykernel py-ipykernel: updated to 5.4.2 2020-12-14 05:58:24 +00:00
py-ipython py-ipython: updated to 7.19.0 2020-11-04 10:08:14 +00:00
py-ipython5 *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-ipython_genutils
py-iso-639
py-iso3166
py-isort
py-itanium_demangler Import python-itanium_demangler-1.0 as devel/py-itanium_demangler 2020-08-18 20:19:44 +00:00
py-jaraco.classes
py-jaraco.functools
py-jaraco.itertools
py-jaraco_util
py-jersey
py-joblib py-joblib: updated to 0.17.0 2020-10-03 06:03:18 +00:00
py-jupyter-console py-jupyter-console: mark as incompatible with Python 2.7 and 3.6 2020-12-11 08:10:02 +00:00
py-jupyter_client py-jupyter_client: updated to 6.1.7 2020-08-26 11:37:24 +00:00
py-jupyter_core
py-kafka-python
py-kaitaistruct
py-kitchen py-kitchen: Fix Python 2 PLIST 2020-12-25 22:01:59 +00:00
py-kjbuckets
py-lama
py-lazr.config py-lazr.config: updated to 2.2.2 2020-07-10 19:48:22 +00:00
py-lazr.delegates
py-lazy-object-proxy py-lazy-object-proxy: updated to 1.5.2 2020-12-07 08:59:40 +00:00
py-libevent-rpcgen
py-libmc
py-libusb1
py-limits
py-line_profiler
py-linecache2
py-llvmlite (devel/py-llvmlite) adhoc build fix removing -stdlib=libc++ 2020-12-31 00:13:48 +00:00
py-lockfile
py-logan
py-logbook
py-logilab-astng
py-logilab-common *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-lru-dict
py-lupa Reset maintainership for all (no longer) mine packages 2020-07-13 19:45:45 +00:00
py-macaroons
py-macholib
py-mako devel/py-mako: Fix missing dependency 2020-10-04 17:30:51 +00:00
py-mando
py-manticore py-manticore: Remove unnecessary restriction to Python 3.7 2020-12-30 12:04:08 +00:00
py-mccabe
py-memcached
py-memory-profiler
py-mercurial py-mercurial: update to 5.6.1. 2020-12-06 11:37:33 +00:00
py-minidump Import minidump-0.0.13 from pypi as devel/py-minidump. 2020-08-18 20:13:58 +00:00
py-minimock
py-mixbox
py-mmh3
py-mock multiple: Update MAINTAINER from gdt@ir.bbn.com 2020-07-27 16:20:44 +00:00
py-modulegraph
py-more-itertools py-more-itertools: updated to 8.6.0 2020-11-22 11:16:54 +00:00
py-more-itertools2
py-mox
py-msgpack py-msgpack: updated to 1.0.2 2021-01-04 16:38:52 +00:00
py-mulpyplexer Import mulpyplexer-0.08 from pypi as devel/py-mulpyplexer 2020-08-18 20:20:08 +00:00
py-multipledispatch
py-newt
py-nose devel/py-nose: Enable the tests to run. 2020-08-18 20:12:37 +00:00
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.8. 2021-01-04 12:00:19 +00:00
py-parameterized
py-ParamUnittest
py-path.py
py-pathlib
py-pathlib2
py-pathspec py-pathspec: updated to 0.8.1 2020-11-09 09:30:02 +00:00
py-pbr
py-pebble
py-pep8
py-pep517 py-pep517: updated to 0.9.1 2020-10-21 06:41:24 +00:00
py-pexpect
py-pip py-pip: updated to 20.3.3 2020-12-18 09:03:43 +00:00
py-pkgconfig
py-pkginfo py-pkginfo: updated to 1.6.1 2020-12-06 11:28:58 +00:00
py-pluggy
py-plumbum py-plumbum: use egg.mk 2020-10-05 21:24:16 +00:00
py-ply
py-polib
py-pqueue
py-prefixspan
py-pretend
py-progressbar2 Import progressbar2-3.51.4 from pypi as devel/py-progressbar2. 2020-08-18 20:19:20 +00:00
py-prompt_toolkit
py-prompt_toolkit2 py-prompt_toolkit2: updated to 3.0.8 2020-10-13 11:09:25 +00:00
py-proteus Update a couple of comments that reference Python packages 2020-12-09 01:46:07 +00:00
py-protobuf py-protobuf: updated to 3.14.0 2020-11-14 14:08:16 +00:00
py-py py-py: updated to 1.10.0 2020-12-14 06:16:31 +00:00
py-py2app
py-pybind11
py-pydispatcher
py-pyelftools
py-pygit2 py-pygit2: updated to 1.4.0 2020-11-21 22:33:59 +00:00
py-pylint py-pylint: updated to 2.6.0 2020-08-21 21:55:41 +00:00
py-pylint-plugin-utils
py-Pympler
py-pyobjc py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-core py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-Accounts py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-AddressBook py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-AppleScriptKit py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-AppleScriptObjC py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-ApplicationServices py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-Automator py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-AVFoundation py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-AVKit py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-CalendarStore py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-CFNetwork py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-CloudKit py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-Cocoa py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-Collaboration py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-ColorSync py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-Contacts py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-ContactsUI py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-CoreAudio py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-CoreBluetooth py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-CoreData py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-CoreLocation py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-CoreMedia py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-CoreML py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-CoreServices py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-CoreSpotlight py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-CoreText py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-CoreWLAN py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-CryptoTokenKit py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-DictionaryServices py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-DiskArbitration py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-EventKit py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-ExceptionHandling py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-ExternalAccessory py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-FinderSync py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-FSEvents py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-GameCenter py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-GameController py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-GameKit py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-GameplayKit py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-ImageCaptureCore py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-InputMethodKit py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-InstallerPlugins py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-InstantMessage py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-Intents py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-IOSurface py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-iTunesLibrary py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-LatentSemanticMapping py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-LaunchServices py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-libdispatch py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-LocalAuthentication py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-MapKit py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-MediaAccessibility py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-MediaLibrary py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-MediaPlayer py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-Metal py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-MetalKit py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-ModelIO py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-MultipeerConnectivity py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-NaturalLanguage py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-NetFS py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-NetworkExtension py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-NotificationCenter py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-OpenDirectory py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-Photos py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-PhotosUI py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-PreferencePanes py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-PubSub py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-QTKit py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-Quartz py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-SafariServices py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-SceneKit py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-ScreenSaver py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-ScriptingBridge py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-SearchKit py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-Security py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-SecurityInterface py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-ServiceManagement py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-Social py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-SpriteKit py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-StoreKit py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-SyncServices py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-SystemConfiguration py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-Vision py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyobjc-framework-WebKit py-pyobjc: updated to 6.2.2 2020-07-09 08:36:33 +00:00
py-pyparsing
py-Pyro
py-pyrsistent *: use py-hypothesis via versioned_dependencies.mk 2020-10-06 10:51:21 +00:00
py-pysha3
py-pysvn *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
py-pyte
py-pytemplate
py-pyutil multiple: Update MAINTAINER from gdt@ir.bbn.com 2020-07-27 16:20:44 +00:00
py-pyvex py-angr: update to version 9.0.4378 2020-09-28 22:56:38 +00:00
py-queuelib
py-quixote
py-radon py-radon: updated to 4.3.2 2020-10-03 06:08:06 +00:00
py-random2
py-rauth *: reset maintainer for darcy 2020-07-13 20:05:11 +00:00
py-readlike
py-readline
py-rednose
py-reparser
py-repoze.lru
py-requests py-requests: updated to 2.25.1 2020-12-18 08:22:39 +00:00
py-requests-file
py-requests-ftp
py-requests-futures
py-requests-mock
py-requests-toolbelt
py-requests-unixsocket
py-restructuredtext_lint py-restructuredtext_lint: updated to 1.3.2 2020-12-14 13:58:18 +00:00
py-retry_decorator
py-rlp Add PYTHON_VERSIONS_INCOMPATIBLE to packages that fail with 3.6. 2020-11-25 11:13:18 +00:00
py-rope py-rope: updated to 0.18.0 2020-10-08 08:24:20 +00:00
py-rply
py-ruamel-base
py-ruamel-ordereddict py-ruamel-ordereddict: updated to 0.4.15 2020-11-19 10:21:38 +00:00
py-ruamel-yaml py-ruamel-yaml: update to 0.16.12. 2020-09-05 07:06:43 +00:00
py-ruamel-yaml-clib py-ruamel-yaml-clib: update to 0.2.2. 2020-09-05 07:05:19 +00:00
py-scandir
py-scard Import pyscard-1.9.9 as devel/py-scard 2020-08-17 07:00:58 +00:00
py-selectors2 py-selectors2: updated to 2.0.2 2020-07-27 13:41:42 +00:00
py-semantic_version
py-serpent
py-setuptools py-setuptools: updated to 50.3.2 2020-10-27 18:10:49 +00:00
py-setuptools-rust
py-setuptools44 py-setuptools: mark as only for Python 2.x 2020-09-01 04:05:27 +00:00
py-setuptools_scm py-setuptools_scm: update to 4.1.2. 2020-08-24 08:38:39 +00:00
py-setuptools_scm_git_archive
py-setuptools_trial multiple: Update MAINTAINER from gdt@ir.bbn.com 2020-07-27 16:20:44 +00:00
py-simplegeneric
py-singledispatch
py-slugify py-slugify: updated to 4.0.1 2020-07-08 14:58:01 +00:00
py-smmap py-smmap: add python to CATEGORIES 2020-09-25 08:32:09 +00:00
py-sortedcontainers py-sortedcontainers: updated to 2.3.0 2020-12-14 14:02:47 +00:00
py-Spans
py-speaklater
py-stem
py-stevedore
py-stompclient
py-stsci.distutils
py-subprocess32
py-subversion *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
py-subvertpy *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
py-sure
py-sysctl
py-termcolor
py-test py-test: updated to 6.2.1 2020-12-16 13:15:12 +00:00
py-test-assume py-test-assume: updated to 2.4.2 2021-01-10 21:45:41 +00:00
py-test-asyncio py-test-asyncio: updated to 0.14.0 2020-07-06 15:43:46 +00:00
py-test-benchmark py-test-benchmark: Unbreak bulk builds. 2020-11-27 10:41:36 +00:00
py-test-cache
py-test-cov py-test-cov: updated to 2.10.1 2020-08-21 21:54:10 +00:00
py-test-fixture-config
py-test-flake8 py-test-flake8: updated to 1.0.7 2021-01-09 08:35:59 +00:00
py-test-forked py-test-forked: updated to 1.3.0 2020-10-23 12:15:55 +00:00
py-test-isort
py-test-localserver
py-test-mock
py-test-pylint py-test-pylint: updated to 0.18.0 2020-11-19 10:26:21 +00:00
py-test-pythonpath
py-test-random-order
py-test-randomly
py-test-relaxed
py-test-rerunfailures py-test-rerunfailures: updated to 9.1.1 2021-01-10 21:49:59 +00:00
py-test-runner
py-test-shutil
py-test-sugar py-test-sugar: updated to 0.9.4 2020-07-07 05:14:15 +00:00
py-test-testmon
py-test-timeout py-test-timeout: updated to 1.4.2 2020-10-08 08:28:38 +00:00
py-test-utils
py-test-virtualenv
py-test-watch
py-test-xdist Fix Python 3.6 build 2020-08-27 12:26:59 +00:00
py-test-xprocess
py-test4 *: use py-hypothesis via versioned_dependencies.mk 2020-10-06 10:51:21 +00:00
py-testpath
py-testrepository
py-testresources
py-testscenarios
py-testtools
py-thrift
py-tlsh
py-toolz
py-tortoisehg py-tortoisehg: fix PLIST for py-sphinx1 2020-12-09 12:20:01 +00:00
py-tox py-tox: updated to 3.20.1 2020-10-27 23:03:55 +00:00
py-traceback2
py-traitlets
py-treq
py-tryton *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
py-trytond Update a couple of comments that reference Python packages 2020-12-09 01:46:07 +00:00
py-txaio
py-txgithub
py-txrequests
py-typed-ast py-typed-ast: updated to 1.4.2 2021-01-03 10:57:01 +00:00
py-typing py-typing: updated to 3.7.4.3 2020-07-15 09:33:01 +00:00
py-typing-extensions py-typing-extensions: updated to 3.7.4.3 2020-09-09 15:06:49 +00:00
py-unit
py-unitgui
py-unittest-mixins
py-unittest2
py-unittest2pytest
py-unpaddedbase64
py-urwid py-urwid: updated to 2.1.2 2020-09-29 17:04:15 +00:00
py-usb py-usb: needs setuptools 2020-08-18 05:51:23 +00:00
py-utils Import python-utils-2.4.0 from pypi as devel/py-utils 2020-08-18 20:18:56 +00:00
py-uuid
py-uvloop
py-vcversioner
py-vine
py-virtualenv
py-visitor
py-wasm py-wasm: fix "make reinstall" 2020-10-08 22:06:38 +00:00
py-wcwidth py-wcwidth: updated to 0.2.5 2020-07-01 14:20:46 +00:00
py-wheel py-wheel: updated to 0.36.2 2020-12-14 06:14:09 +00:00
py-whichcraft
py-windbg
py-wrapt
py-xbe Import pyxbe-0.0.2 as devel/py-xbe. 2020-08-18 20:13:31 +00:00
py-xdg
py-xdis py-xdis: updated to 5.0.7 2021-01-11 07:17:06 +00:00
py-xopen py-xopen: updated to 1.0.1 2020-11-23 09:54:05 +00:00
py-yapf
py-zanata-python-client
py-zc.lockfile
py-zconfig
py-zope.deferredimport *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-zope.deprecation *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-zope.exceptions py-zope.exceptions: updated to 4.4 2020-08-21 12:39:01 +00:00
py-zope.hookable
py-zope.testing
py-ZopeComponent *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-ZopeConfiguration *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-ZopeEvent py-ZopeEvent: updated to 4.5.0 2020-10-18 18:17:54 +00:00
py-ZopeI18NMessageid *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-ZopeInterface py-ZopeInterface: updated to 5.2.0 2021-01-03 21:43:21 +00:00
py-ZopeSchema *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
py-ZopeTestrunner *: switch to versioned_dependencies.mk for py-setuptools 2020-08-31 23:07:00 +00:00
pycharm-bin Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
python-mode
pythontidy Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
qbzr Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
qconf *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
qjson *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
qore-uuid-module
qtscriptgenerator *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
quilt *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
R-assertthat
R-BH
R-bindr
R-bit
R-bit64
R-blob
R-brio devel/R-brio: import R-brio-1.1.0 2020-12-14 03:20:55 +00:00
R-callr (devel/R-callr) Updated 3.4.4 to 3.5.1 (make test fails at PDF creation) 2020-12-13 23:12:13 +00:00
R-caTools devel/R-caTools: import R-caTools-1.18.0 2020-08-07 00:14:22 +00:00
R-checkmate (devel/R-checkmate) Updated 1.9.4 to 2.0.0. TEST_DEPENDS added, but not enough 2020-09-20 21:18:13 +00:00
R-cli (devel/R-cli) Updated 2.0.2 to 2.2.0 2021-01-01 04:15:16 +00:00
R-cliapp (devel/R-cliapp) Updated 0.1.0 to 0.1.1 2020-12-13 23:24:45 +00:00
R-clipr (devel/R-clipr) Updated 0.7.0 to 0.7.1 2020-12-13 23:36:57 +00:00
R-covr (devel/R-covr) Updated 3.5.0 to 3.5.1, make test fails 2020-09-20 03:09:14 +00:00
R-crayon
R-cyclocomp
R-desc
R-devtools (devel/R-devtools) Updatd 2.3.1 to 2.3.2 2020-10-03 13:49:39 +00:00
R-diffobj devel/R-diffobj: import R-diffobj-0.3.2 2020-12-14 03:19:26 +00:00
R-evaluate
R-fansi
R-filelock (devel/R-filelock) import R-filelock-1.0.2 2021-01-02 11:24:34 +00:00
R-fs (devel/R-fs) Updated 1.3.1 to 1.5.0 2020-09-19 21:39:43 +00:00
R-gert (devel/R-gert) import R-gert-1.0.2 2021-01-01 06:22:06 +00:00
R-git2r (devel/R-git2r) Updated 0.26.1 to 0.27.1 2021-01-01 02:50:52 +00:00
R-glue R-glue: update to 1.4.1. 2020-07-31 18:20:26 +00:00
R-ini
R-inline
R-IRdisplay
R-IRkernel
R-iterators
R-lazyeval
R-lifecycle R-lifecycle: Add new package for version 0.2.0. 2020-07-31 20:11:23 +00:00
R-lintr (devel/R-lintr) updated 2.0.0 to 2.0.1 2020-09-20 04:41:37 +00:00
R-lpSolve (devel/R-lpSolve) import R-lpSolve-5.6.15 2021-01-01 10:31:34 +00:00
R-magrittr (devel/R-magrittr) Updated 1.5 to 2.0.1 make test fails at PDF 2020-12-13 23:51:10 +00:00
R-memoise
R-mockery
R-pak (devel/R-pak) import R-pak-0.1.2.1 2021-01-01 11:44:59 +00:00
R-pkgbuild (devel/R-pkgbuild) Updated 1.1.0 to 1.2.0 2021-01-01 05:41:47 +00:00
R-pkgcache (devel/R-pkgcache) Recover DEPENDS+= R-filelock-[0-9]*, tks jperkin@ 2021-01-11 08:46:36 +00:00
R-pkgconfig
R-pkgKitten devel/R-pkgKitten: import R-pkgKitten-0.1.5 2020-09-19 21:10:20 +00:00
R-pkgload (devel/R-pkgload) Updated 1.0.2 to 1.1.0. make test fails 2020-09-20 04:13:53 +00:00
R-plogr
R-prettycode
R-proto
R-purrr (devel/R-purrr) Updated 0.3.3 to 0.3.4. TEST_DEPENDS added and now passes 2020-09-20 21:32:33 +00:00
R-R6 R-R6: update to 2.4.1. 2020-07-31 18:15:23 +00:00
R-rappdirs (devel/R-rappdirs) import R-rappdirs-0.3.1 2021-01-01 12:05:31 +00:00
R-rcmdcheck
R-Rcpp (devel/R-Rcpp) Updated 1.0.4.6 to 1.0.5 2020-10-04 06:11:24 +00:00
R-rematch
R-rematch2 devel/R-rematch2: import R-rematch2-2.1.2 2020-09-19 23:14:21 +00:00
R-remotes (devel/R-remotes) Updated 2.1.0 to 2.2.0, make test does not pass yet 2020-09-20 01:50:10 +00:00
R-repr
R-rex (devel/R-rex) Updated 1.1.2 to 1.2.0. TEST_DEPENDS added, and passed now 2020-09-20 21:44:21 +00:00
R-rio
R-rlang (devel/R-rlang) Updated 0.4.7 to 0.4.9 2021-01-01 03:24:52 +00:00
R-roxygen2 (devel/R-roxygen2) Add missing DEPENDS 2020-09-24 00:44:53 +00:00
R-rprojroot (devel/rprojroot) Updated 1.3.2 to 2.0.2 2020-12-14 03:14:38 +00:00
R-RUnit
R-rversions (devel/R-rvesions) Updated 2.0.1 to 2.0.2 (for R-devtools-2.3.1) tks wiz@ 2020-09-22 08:06:19 +00:00
R-sessioninfo
R-tcltk2 Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
R-testit (devel/R-testit) import R-testit-0.12 2021-01-01 10:01:01 +00:00
R-testthat (devel/R-testthat) Updated 3.0.0 to 3.0.1 2021-01-01 04:28:35 +00:00
R-tidyselect R-tidyselect: update to 1.1.0. 2020-07-31 20:26:12 +00:00
R-tinytest (devel/R-tinytest) import R-tinytest-1.2.2 2020-08-01 21:48:17 +00:00
R-usethis (devel/R-usethis) Updated 1.6.3 to 2.0.0, sorry for long log 2021-01-01 09:55:15 +00:00
R-uuid
R-waldo (devel/R-waldo) Convert R-diffobj from TEST_DEPENDS to full DEPENDS 2020-12-15 05:12:18 +00:00
R-whisker (devel/R-whisker) Updated 0.3.2 to 0.4. make test passed 2020-09-20 21:47:31 +00:00
R-withr (devel/R-withr) Updated 2.2.0 to 2.3.0 2020-10-03 13:53:44 +00:00
R-xfun (devel/R-xfun) Updated 0.18 to 0.19 2021-01-01 11:58:53 +00:00
radamsa
radare2 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
radare2-cutter radare2-cutter: Build fix. 2020-12-22 09:58:52 +00:00
ragel
rainbow-delimiters-el
range-v3
rapidsvn *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
ratfor
RBTools Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
rcs
rdp
RE-flex Updated to 2.1.4 2020-08-28 19:17:15 +00:00
re2 re2: updated to 20200801 2020-08-06 16:23:21 +00:00
re2c re2c: update to 2.0.3. 2020-09-20 08:32:30 +00:00
readline readline: update to 8.1. 2021-01-04 12:01:45 +00:00
rebar
rebar3
refinecvs *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
reftools New package, reftools. 2020-12-06 19:50:14 +00:00
remake
Renaissance *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
reposurgeon Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
rgbds rgbds: Update to 0.4.2 2020-12-18 23:19:16 +00:00
ropper Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
roundup Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
rox-lib Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
rpc2 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
rscode
rsltc
rt-mysql *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
rt-pgsql
rt4 move comment so it makes more sense 2020-11-01 10:31:22 +00:00
rttr
rubigen
ruby-abstract
ruby-activejob52 www/ruby-rails52: update to 5.2.4.4 2020-09-10 14:13:11 +00:00
ruby-activejob60 www/ruby-rails60: update to 6.0.3.4 2020-10-19 14:50:30 +00:00
ruby-activemodel52 www/ruby-rails52: update to 5.2.4.4 2020-09-10 14:13:11 +00:00
ruby-activemodel60 www/ruby-rails60: update to 6.0.3.4 2020-10-19 14:50:30 +00:00
ruby-activestorage52 www/ruby-rails52: update to 5.2.4.4 2020-09-10 14:13:11 +00:00
ruby-activestorage60 www/ruby-rails60: update to 6.0.3.4 2020-10-19 14:50:30 +00:00
ruby-activesupport52 www/ruby-rails52: update to 5.2.4.4 2020-09-10 14:13:11 +00:00
ruby-activesupport60 www/ruby-rails60: update to 6.0.3.4 2020-10-19 14:50:30 +00:00
ruby-algorithms
ruby-amstd
ruby-assistance
ruby-atk
ruby-backports devel/ruby-backports: update to 3.20.1 2021-01-10 14:31:30 +00:00
ruby-bindata devel/ruby-bindata: update to 2.4.8 2020-08-09 15:11:16 +00:00
ruby-bit-struct
ruby-blankslate
ruby-bond Add "USE_LANGUAGES= # none" for pure Ruby packages. 2020-09-20 15:44:03 +00:00
ruby-bsearch
ruby-byaccr
ruby-byebug
ruby-c21e
ruby-celluloid devel/ruby-celluloid: update to 0.18.0 2021-01-10 14:39:23 +00:00
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.7 2020-09-13 15:22:32 +00:00
ruby-contracts
ruby-cucumber-core devel/ruby-cucumber-core: update to 8.0.1 2020-09-13 15:36:13 +00:00
ruby-cucumber-expressions devel/ruby-cucumber-expressions: update to 13.0.1 2020-09-13 15:38:41 +00:00
ruby-cucumber-messages devel/ruby-cucumber-messages: update to 13.1.0 2020-09-14 16:11:14 +00:00
ruby-cucumber-tag_expressions
ruby-cucumber-wire devel/ruby-cucumber-wire: update to 4.0.1 2020-09-13 15:41:16 +00:00
ruby-curses devel/ruby-curses: update to 1.4.0 2021-01-10 14:42:32 +00:00
ruby-daemon_controller
ruby-deep_merge
ruby-delayer
ruby-delayer-deferred
ruby-dep
ruby-deprecated
ruby-dhaka
ruby-diva
ruby-docile devel/ruby-docile: update to 1.3.4 2021-01-10 14:44:45 +00:00
ruby-eet
ruby-equatable
ruby-eventmachine
ruby-extlib
ruby-facade devel/ruby-facade: update to 1.2.1 2021-01-10 14:47:38 +00:00
ruby-fast_gettext
ruby-ffi devel/ruby-ffi: update to 1.14.2 2021-01-10 14:49:36 +00:00
ruby-ffi-compiler devel/ruby-ffi-compiler: fix runtime problem 2020-11-02 15:13:27 +00:00
ruby-ffi-yajl devel/ruby-ffi-yajl: update to 2.3.4 2020-09-13 15:20:22 +00:00
ruby-fiddle Remove extra RUBY_VERSIONS_ACCEPTED. 2020-12-28 08:20:47 +00:00
ruby-filesize
ruby-flexmock
ruby-forwardable-extended
ruby-gemcutter
ruby-generator devel/ruby-generator: add package version 0.0.1 2021-01-10 15:00:36 +00:00
ruby-getopt
ruby-gettext devel/ruby-gettext: update to 3.3.6 2020-08-09 15:26:52 +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.7 2021-01-10 15:08:25 +00:00
ruby-i18n12
ruby-idn
ruby-iniparse
ruby-inline
ruby-instance_storage
ruby-io-like
ruby-iruby Add "USE_LANGUAGES= # none" for pure Ruby packages. 2020-09-20 15:44:03 +00:00
ruby-kgio
ruby-lazy_priority_queue
ruby-libyajl2
ruby-little-plugger
ruby-locale
ruby-locale-rails
ruby-lockfile
ruby-log4r
ruby-logging devel/ruby-logging: update to 2.3.0 2020-09-13 15:52:06 +00:00
ruby-loquacious
ruby-marcel
ruby-memcache
ruby-memoist
ruby-mercenary
ruby-metaclass
ruby-metaid
ruby-metasm
ruby-middleware
ruby-minitest devel/ruby-minitest: update to 5.14.3 2021-01-10 15:10:22 +00:00
ruby-mixlib-authentication devel/ruby-mixlib-authentication: update to 3.0.7 2020-09-14 16:13:29 +00:00
ruby-mixlib-cli devel/ruby-mixlib-cli: update to 2.1.8 2020-09-14 16:15:09 +00:00
ruby-mixlib-config devel/ruby-mixlib-config: update to 3.0.9 2020-09-14 16:17:42 +00:00
ruby-mixlib-log devel/ruby-mixlib-log: update to 3.0.9 2020-09-14 16:19:44 +00:00
ruby-mixlib-shellout devel/ruby-mixlib-shellout: update to 3.2.2 2021-01-10 15:12:14 +00:00
ruby-mkrf
ruby-mocha devel/ruby-mocha: update to 1.12.0 2021-01-10 15:15:39 +00:00
ruby-mode
ruby-msgpack
ruby-multi_test
ruby-mustache
ruby-native-package-installer
ruby-ncurses
ruby-necromancer devel/ruby-necromancer: update to 0.7.0 2021-01-10 15:21:29 +00:00
ruby-needle
ruby-nenv
ruby-octokit devel/ruby-octokit: update to 4.18.0 2021-01-10 15:27:12 +00:00
ruby-ole
ruby-open4
ruby-pango *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
ruby-parseconfig devel/ruby-parseconfig: update to 1.1.0 2021-01-10 15:37:45 +00:00
ruby-parser devel/ruby-parser: update to 3.15.0 2020-09-13 15:54:58 +00:00
ruby-parsetree
ruby-parslet
ruby-pastel devel/ruby-pastel: update to 0.8.0 2020-09-13 15:56:58 +00:00
ruby-pathname2 devel/ruby-pathname2: update to 1.8.3 2020-09-14 16:25:22 +00:00
ruby-pathutil
ruby-pkg-config devel/ruby-pkg-config: update to 1.4.4 2021-01-10 15:44:14 +00:00
ruby-polyglot
ruby-posix-spawn devel/ruby-posix-spawn: update to 0.3.15 2020-09-13 16:04:28 +00:00
ruby-power_assert
ruby-priority-queue
ruby-protobuf-cucumber
ruby-pycall devel/ruby-pycall: import ruby27-pycall-1.3.1 2020-09-20 08:34:37 +00:00
ruby-racc devel/ruby-racc: update to 1.5.2 2021-01-10 15:51:47 +00:00
ruby-railties52 www/ruby-rails52: update to 5.2.4.4 2020-09-10 14:13:11 +00:00
ruby-railties60 www/ruby-rails60: update to 6.0.3.4 2020-10-19 14:50:30 +00:00
ruby-randexp
ruby-rb-fsevent
ruby-rb-inotify
ruby-rb-kqueue
ruby-rbtree devel/ruby-rbtree: update to 0.4.4 2021-01-10 15:56:45 +00:00
ruby-rcsparse
ruby-rd-mode
ruby-readline Remove extra RUBY_VERSIONS_ACCEPTED. 2020-12-28 08:20:47 +00:00
ruby-redmine Revbump for openpam cppflags change months ago, belatedly. 2020-12-04 04:55:41 +00:00
ruby-redmine-flatly-light-theme
ruby-redmine-gitmike-theme
ruby-redmine-minimalflat-theme
ruby-redmine-minimalflat2-theme
ruby-redmine-purplemine2-theme ruby-redmine-purplemine2-theme: simplify github handling and PKGNAME 2020-07-13 20:21:36 +00:00
ruby-redmine-red-andy-theme
ruby-redmine-yh-theme
ruby-redmine_code_review
ruby-redmine_lightbox2
ruby-redmine_theme_changer
ruby-redmine_work_time
ruby-ref
ruby-regexp_parser devel/ruby-regexp_parser: update to 1.8.0 2020-09-20 15:42:11 +00:00
ruby-rgl devel/ruby-rgl: update to 0.5.7 2021-01-10 16:20:48 +00:00
ruby-ronn
ruby-rspec
ruby-rspec-core
ruby-rspec-expectations
ruby-rspec-its
ruby-rspec-logsplit
ruby-rspec-mocks
ruby-rspec-rails
ruby-rspec-support
ruby-rspec_junit_formatter
ruby-ruby2_keywords
ruby-rugged devel/ruby-rugged: update to 1.1.0 2020-11-05 14:23:20 +00:00
ruby-scanf devel/ruby-scanf: add package version 1.0.0 2021-01-10 16:07:06 +00:00
ruby-SDL
ruby-semantic_puppet
ruby-semverse devel/ruby-semverse: add package version 3.0.0 2021-01-10 16:10:14 +00:00
ruby-setup
ruby-sexp-processor devel/ruby-sexp-processor: update to 4.15.1 2020-09-14 13:03:08 +00:00
ruby-shoulda-context
ruby-shoulda-matchers devel/ruby-shoulda-matchers: update to 4.4.1 2020-09-14 16:28:40 +00:00
ruby-simple_uuid
ruby-simplecov devel/ruby-simplecov: update to 0.19.0 2020-09-14 13:06:11 +00:00
ruby-simplecov-html
ruby-simpleidn
ruby-spruz
ruby-stomp devel/ruby-stomp: update to 1.4.10 2020-09-14 13:08:14 +00:00
ruby-stream devel/ruby-stream: update to 0.5.3 2021-01-10 16:19:07 +00:00
ruby-subexec
ruby-subversion *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
ruby-sync
ruby-templater
ruby-term-ansicolor
ruby-termcolor
ruby-test-spec
ruby-test-unit
ruby-test-unit-notify
ruby-thor
ruby-thrift
ruby-thrift_client
ruby-tins
ruby-tomlrb
ruby-tty-box devel/ruby-tty-box: update to 0.6.0 2020-09-14 00:11:53 +00:00
ruby-tty-color devel/ruby-tty-color: update to 0.5.2 2020-09-14 00:10:26 +00:00
ruby-tty-cursor
ruby-tty-prompt devel/ruby-tty-prompt: update to 0.22.0 2020-09-14 00:16:20 +00:00
ruby-tty-reader devel/ruby-tty-reader: update to 0.8.0 2020-09-14 00:14:42 +00:00
ruby-tty-screen devel/ruby-tty-screen: update to 0.8.1 2020-09-14 00:13:21 +00:00
ruby-turn
ruby-uglifier
ruby-uuidtools devel/ruby-uuidtools: update to 2.2.0 2020-09-14 13:09:54 +00:00
ruby-validatable
ruby-wisper
ruby-wmi-lite
ruby-yell
ruby-zeitwerk devel/ruby-zeitwerk: update to 2.4.0 2020-09-14 13:12:27 +00:00
ruby-zookeeper
ruby2ruby
rubymine-bin Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
rudiments
rvm
sablecc
samurai samurai: update to 1.2 2020-12-17 22:01:04 +00:00
scintilla *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
scmcvs
scons
sdcc *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
sdcc3 *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
SDL *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
SDL-intro-en
SDL-intro-ko
SDL2 SDL2: Update to 2.0.14 2021-01-02 15:54:03 +00:00
SDL_gfx
SDL_Pango *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
SDL_ttf
SDLmm
semantic
semi
sfslite
sgb
shtk
shunit2
silc-toolkit
skalibs Update to 2.9.3.0. From the changelog: 2020-11-15 19:08:30 +00:00
slib
slibtool
sloccount *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
smake smake: Update to 1.3nb15 2020-11-25 15:24:46 +00:00
sml-mode
snappy
snappy-java10 Specify java source and target version as maven option to make this build with JDK 11. 2020-07-01 05:03:39 +00:00
sofia-sip
SOPE *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
SOPE4 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
sparse *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
sparsehash
spdlog spdlog: update to 1.8.2. 2021-01-04 12:03:24 +00:00
spiff
spin
splint devel/splint: install documentation as well 2020-12-23 13:23:52 +00:00
st
startbug1 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
stfl *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
stgit Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
subversion subversion: updated to 1.14.0 2020-07-27 20:48:52 +00:00
subversion-base *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
sunifdef *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
svk *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
svn-bisect *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
swig *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
swig2 Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
swig3 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
syncdir
sysexits
tailor Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
talloc Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
tavrasm (devel/tavrasm) Adapt to new bison 2020-12-24 11:43:55 +00:00
tcl-tclcl *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
tclap tclap: updated to 1.2.3 2021-01-09 21:14:19 +00:00
tcllib
tclreadline
teem
tet3 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
tevent Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
tex-doclicense
tex-doclicense-doc
tex-etoolbox
tex-etoolbox-doc
tex-l3backend
tex-l3backend-doc
tex-l3experimental
tex-l3kernel
tex-l3kernel-doc
tex-l3packages
tex-l3packages-doc
tex-latexbug
tex-latexbug-doc
tex-lualibs
tex-lualibs-doc
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
tex-xifthen
tex-xifthen-doc
texttest Update to 4.0.5. From the changelog: 2020-12-19 11:03:48 +00:00
threadweaver *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
thrift
tig
tinycthread
tkcon
tkcvs
tkdiff
tl-expected
tla
tlsh
tmake *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
tokei devel/tokei: import package 2021-01-01 14:44:31 +00:00
topgit
tpasm
tradcpp
transifex-client transifex-client: Unbreak the tree during a freeze. 2020-09-25 11:25:44 +00:00
tre
treecc
trio trio: Fix "unable to infer tagged configuration" errors for libtool. 2020-11-20 14:36:07 +00:00
tvision
ucl ucl: Fix building with gcc >= 6. 2020-12-01 11:13:37 +00:00
ucommon
ucpp ucpp: Update to 1.3.5 2020-11-24 13:34:34 +00:00
umbrello *: Recursive revbump from audio/pulseaudio-14.0 2021-01-01 09:52:09 +00:00
undebt Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
unidiff
unittest-cpp
uno
userspace-rcu Updated devel/userspaace-rcu to 0.12.1 2020-07-01 00:40:48 +00:00
uthash uthash: update to 2.2.0. 2020-12-18 09:55:36 +00:00
valgrind valgrind: update to 3.16.1 2020-10-08 03:30:58 +00:00
vanessa_adt
vanessa_logger
vanessa_socket
vera++ *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
verifast *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
visualvm
vtcl *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
waf Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
wayland *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
wayland-protocols
woboq_codebrowser *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
xa65
xdelta
xdelta3
xfce4-conf *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xfce4-dev-tools *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xmake
xorg-util-macros
xsd *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
xxgdb
xxhash xxhash: updated to 0.8.0 2020-07-29 13:48:32 +00:00
yajl
yarn yarn: updated to 1.22.10 2020-10-03 06:27:18 +00:00
yasm
z80-asm
zeal *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
ZenTest
zlib
zookeeper
zzuf
Makefile devel/Makefile: add and enable ruby-semverse 2021-01-10 16:10:47 +00:00