pkgsrc/devel
adam 1c37829bd5 git: updated to 2.26.0
Git 2.26 Release Notes
======================

Updates since v2.25
-------------------

Backward compatibility notes

 * "git rebase" uses a different backend that is based on the 'merge'
   machinery by default.  There are a few known differences in the
   behaviour from the traditional machinery based on patch+apply.

   If your workflow is negatively affected by this change, please
   report it to git@vger.kernel.org so that we can take a look into
   it.  After doing so, you can set the 'rebase.backend' configuration
   variable to 'apply', in order to use the old default behaviour in
   the meantime.


UI, Workflows & Features

 * Sample credential helper for using .netrc has been updated to work
   out of the box.

 * gpg.minTrustLevel configuration variable has been introduced to
   tell various signature verification codepaths the required minimum
   trust level.

 * The command line completion (in contrib/) learned to complete
   subcommands and arguments to "git worktree".

 * Disambiguation logic to tell revisions and pathspec apart has been
   tweaked so that backslash-escaped glob special characters do not
   count in the "wildcards are pathspec" rule.

 * One effect of specifying where the GIT_DIR is (either with the
   environment variable, or with the "git --git-dir=<where> cmd"
   option) is to disable the repository discovery.  This has been
   placed a bit more stress in the documentation, as new users often
   get confused.

 * Two help messages given when "git add" notices the user gave it
   nothing to add have been updated to use advise() API.

 * A new version of fsmonitor-watchman hook has been introduced, to
   avoid races.

 * "git config" learned to show in which "scope", in addition to in
   which file, each config setting comes from.

 * The basic 7 colors learned the brighter counterparts
   (e.g. "brightred").

 * "git sparse-checkout" learned a new "add" subcommand.

 * A configuration element used for credential subsystem can now use
   wildcard pattern to specify for which set of URLs the entry
   applies.

 * "git clone --recurse-submodules --single-branch" now uses the same
   single-branch option when cloning the submodules.

 * "git rm" and "git stash" learns the new "--pathspec-from-file"
   option.

 * "git am --show-current-patch" is a way to show the piece of e-mail
   for the stopped step, which is not suitable to directly feed "git
   apply" (it is designed to be a good "git am" input).  It learned a
   new option to show only the patch part.

 * Handling of conflicting renames in merge-recursive have further
   been made consistent with how existing codepaths try to mimic what
   is done to add/add conflicts.


Performance, Internal Implementation, Development Support etc.

 * Tell .editorconfig that in this project, *.txt files are indented
   with tabs.

 * The test-lint machinery knew to check "VAR=VAL shell_function"
   construct, but did not check "VAR= shell_function", which has been
   corrected.

 * Replace "git config --bool" calls with "git config --type=bool" in
   sample templates.

 * The effort to move "git-add--interactive" to C continues.

 * Improve error message generation for "git submodule add".

 * Preparation of test scripts for the day when the object names will
   use SHA-256 continues.

 * Warn programmers about pretend_object_file() that allows the code
   to tentatively use in-core objects.

 * The way "git pack-objects" reuses objects stored in existing pack
   to generate its result has been improved.

 * The transport protocol version 2 becomes the default one.

 * Traditionally, we avoided threaded grep while searching in objects
   (as opposed to files in the working tree) as accesses to the object
   layer is not thread-safe.  This limitation is getting lifted.

 * "git rebase -i" (and friends) used to unnecessarily check out the
   tip of the branch to be rebased, which has been corrected.

 * A low-level API function get_oid(), that accepts various ways to
   name an object, used to issue end-user facing error messages
   without l10n, which has been updated to be translatable.

 * Unneeded connectivity check is now disabled in a partial clone when
   fetching into it.

 * Some rough edges in the sparse-checkout feature, especially around
   the cone mode, have been cleaned up.

 * The diff-* plumbing family of subcommands now pay attention to the
   diff.wsErrorHighlight configuration, which has been ignored before;
   this allows "git add -p" to also show the whitespace problems to
   the end user.

 * Some codepaths were given a repository instance as a parameter to
   work in the repository, but passed the_repository instance to its
   callees, which has been cleaned up (somewhat).

 * Memory footprint and performance of "git name-rev" has been
   improved.

 * The object reachability bitmap machinery and the partial cloning
   machinery were not prepared to work well together, because some
   object-filtering criteria that partial clones use inherently rely
   on object traversal, but the bitmap machinery is an optimization
   to bypass that object traversal.  There however are some cases
   where they can work together, and they were taught about them.

 * "git rebase" has learned to use the merge backend (i.e. the
   machinery that drives "rebase -i") by default, while allowing
   "--apply" option to use the "apply" backend (e.g. the moral
   equivalent of "format-patch piped to am").  The rebase.backend
   configuration variable can be set to customize.

 * Underlying machinery of "git bisect--helper" is being refactored
   into pieces that are more easily reused.


Fixes since v2.25
-----------------

 * "git commit" gives output similar to "git status" when there is
   nothing to commit, but without honoring the advise.statusHints
   configuration variable, which has been corrected.

 * has_object_file() said "no" given an object registered to the
   system via pretend_object_file(), making it inconsistent with
   read_object_file(), causing lazy fetch to attempt fetching an
   empty tree from promisor remotes.

 * Complete an update to tutorial that encourages "git switch" over
   "git checkout" that was done only half-way.

 * C pedantry ;-) fix.

 * The code that tries to skip over the entries for the paths in a
   single directory using the cache-tree was not careful enough
   against corrupt index file.

 * Reduce unnecessary round-trip when running "ls-remote" over the
   stateless RPC mechanism.

 * "git restore --staged" did not correctly update the cache-tree
   structure, resulting in bogus trees to be written afterwards, which
   has been corrected.

 * The code recently added to move to the entry beyond the ones in the
   same directory in the index in the sparse-cone mode did not count
   the number of entries to skip over incorrectly, which has been
   corrected.

 * Rendering by "git log --graph" of ancestry lines leading to a merge
   commit were made suboptimal to waste vertical space a bit with a
   recent update, which has been corrected.

 * Work around test breakages caused by custom regex engine used in
   libasan, when address sanitizer is used with more recent versions
   of gcc and clang.

 * Minor bugfixes to "git add -i" that has recently been rewritten in C.

 * "git fetch --refmap=" option has got a better documentation.

 * "git checkout X" did not correctly fail when X is not a local
   branch but could name more than one remote-tracking branches
   (i.e. to be dwimmed as the starting point to create a corresponding
   local branch), which has been corrected.
   (merge fa74180d08 am/checkout-file-and-ref-ref-ambiguity later to maint).

 * Corner case bugs in "git clean" that stems from a (necessarily for
   performance reasons) awkward calling convention in the directory
   enumeration API has been corrected.

 * A fetch that is told to recursively fetch updates in submodules
   inevitably produces reams of output, and it becomes hard to spot
   error messages.  The command has been taught to enumerate
   submodules that had errors at the end of the operation.
   (merge 0222540827 es/fetch-show-failed-submodules-atend later to maint).

 * The "--recurse-submodules" option of various subcommands did not
   work well when run in an alternate worktree, which has been
   corrected.

 * Futureproofing a test not to depend on the current implementation
   detail.

 * Running "git rm" on a submodule failed unnecessarily when
   .gitmodules is only cache-dirty, which has been corrected.

 * C pedantry ;-) fix.

 * "git grep --no-index" should not get affected by the contents of
   the .gitmodules file but when "--recurse-submodules" is given or
   the "submodule.recurse" variable is set, it did.  Now these
   settings are ignored in the "--no-index" mode.

 * Technical details of the bundle format has been documented.

 * Unhelpful warning messages during documentation build have been squelched.

 * "git rebase -i" identifies existing commits in its todo file with
   their abbreviated object name, which could become ambiguous as it
   goes to create new commits, and has a mechanism to avoid ambiguity
   in the main part of its execution.  A few other cases however were
   not covered by the protection against ambiguity, which has been
   corrected.

 * Allow the rebase.missingCommitsCheck configuration to kick in when
   "rebase --edit-todo" and "rebase --continue" restarts the procedure.
   (merge 5a5445d878 ag/edit-todo-drop-check later to maint).

 * The way "git submodule status" reports an initialized but not yet
   populated submodule has not been reimplemented correctly when a
   part of the "git submodule" command was rewritten in C, which has
   been corrected.
   (merge f38c92452d pk/status-of-uncloned-submodule later to maint).

 * The code to automatically shrink the fan-out in the notes tree had
   an off-by-one bug, which has been killed.

 * The index-pack code now diagnoses a bad input packstream that
   records the same object twice when it is used as delta base; the
   code used to declare a software bug when encountering such an
   input, but it is an input error.


 * The code to compute the commit-graph has been taught to use a more
   robust way to tell if two object directories refer to the same
   thing.
   (merge a7df60cac8 tb/commit-graph-object-dir later to maint).

 * "git remote rename X Y" needs to adjust configuration variables
   (e.g. branch.<name>.remote) whose value used to be X to Y.
   branch.<name>.pushRemote is now also updated.

 * Update to doc-diff.

 * Doc markup fix.

 * "git check-ignore" did not work when the given path is explicitly
   marked as not ignored with a negative entry in the .gitignore file.

 * The merge-recursive machinery failed to refresh the cache entry for
   a merge result in a couple of places, resulting in an unnecessary
   merge failure, which has been fixed.

 * Fix for a bug revealed by a recent change to make the protocol v2
   the default.

 * In rare cases "git worktree add <path>" could think that <path>
   was already a registered worktree even when it wasn't and refuse
   to add the new worktree. This has been corrected.
   (merge bb69b3b009 es/worktree-avoid-duplication-fix later to maint).

 * "git push" should stop from updating a branch that is checked out
   when receive.denyCurrentBranch configuration is set, but it failed
   to pay attention to checkouts in secondary worktrees.  This has
   been corrected.
   (merge 4d864895a2 hv/receive-denycurrent-everywhere later to maint).

 * "git rebase BASE BRANCH" rebased/updated the tip of BRANCH and
   checked it out, even when the BRANCH is checked out in a different
   worktree.  This has been corrected.
   (merge b5cabb4a96 es/do-not-let-rebase-switch-to-protected-branch later to maint).

 * "git describe" in a repository with multiple root commits sometimes
   gave up looking for the best tag to describe a given commit with
   too early, which has been adjusted.

 * "git merge signed-tag" while lacking the public key started to say
   "No signature", which was utterly wrong.  This regression has been
   reverted.

 * MinGW's poll() emulation has been improved.

 * "git show" and others gave an object name in raw format in its
   error output, which has been corrected to give it in hex.

 * "git fetch" over HTTP walker protocol did not show any progress
   output.  We inherently do not know how much work remains, but still
   we can show something not to bore users.
   (merge 7655b4119d rs/show-progress-in-dumb-http-fetch later to maint).

 * Both "git ls-remote -h" and "git grep -h" give short usage help,
   like any other Git subcommand, but it is not unreasonable to expect
   that the former would behave the same as "git ls-remote --head"
   (there is no other sensible behaviour for the latter).  The
   documentation has been updated in an attempt to clarify this.
2020-04-02 07:46:42 +00:00
..
abseil abseil: updated to 20200225.1 2020-03-15 22:25:56 +00:00
accerciser librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
acme
acr
acunia-jam
adacurses
adocman all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
aegis Mark const cast appropiately. 2020-03-18 17:46:18 +00:00
afl
ald all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
alex Update to alex-3.2.5 2020-01-01 05:32:03 +00:00
allegro devel: Import allegro5 2020-03-18 01:23:00 +00:00
allegro5 Needs Xcursor and SM 2020-03-29 00:59:19 +00:00
amtk librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
anjuta librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
ant-contrib all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
apache-ant all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
apache-ant15 all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
apache-ant19 all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
apache-ivy all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
apache-maven all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
apel
apenwarr-redo Update to 0.42a. From the changelog: 2020-03-30 08:02:22 +00:00
appdata-tools *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
apr Work around missing 64bit atomic compiler builtins on IPL32 platforms 2020-02-20 06:25:28 +00:00
apr-util all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
arcanist devel/arcanist: fix pax command line used during do-install 2020-02-09 21:10:32 +00:00
arena
argp all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
argtable all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
as31
asio *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:47:57 +00:00
aslc86k all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
asm2html
astyle all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
at-spi librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
at-spi2-atk *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
at-spi2-core *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
atf
atk *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
atkmm *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
autoconf all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
autoconf-archive all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
autoconf213 all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
autogen *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
automake automake: update to 1.16.2. 2020-03-31 16:45:31 +00:00
automake14 all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
automoc4 *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
autosetup all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
avl all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
avltree avltree: update to 1.1nb1. 2019-12-28 12:53:00 +00:00
bam
bats
bcc
bfg
bglibs devel/bglibs: remove unnecessary errno hack option 2020-03-22 11:29:46 +00:00
bin86 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
binutils devel/binutils: Unbreak build on Linux 2020-03-10 19:01:31 +00:00
bison bison: skip portability check for tests/local.mk 2020-03-12 20:47:12 +00:00
blame all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
blib librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
blosc devel/blosc: Update HOMEPAGE 2020-01-25 16:54:23 +00:00
bmake
bmkdep Update to 20140112 2020-01-14 23:05:23 +00:00
boa-constructor librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
boehm-gc boehm-gc: Enable threads. Needed for neko-vm. 2020-03-16 11:17:22 +00:00
boost-build boost: updated to 1.72.0 2020-01-12 10:10:03 +00:00
boost-docs
boost-headers boost: updated to 1.72.0 2020-01-12 10:10:03 +00:00
boost-jam boost: updated to 1.72.0 2020-01-12 10:10:03 +00:00
boost-libs boost-libs: Fix build failure on NetBSD/amd64 8 and lang/gcc7 2020-01-14 20:34:11 +00:00
boost-mpi boost: updated to 1.72.0 2020-01-12 10:10:03 +00:00
bpython
breezy all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
buddy all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
bugzilla
bugzilla3
bullet bullet: Update to 2.89 2020-02-20 14:58:54 +00:00
byacc
bzr
bzr-explorer
bzr-gtk bzr-gtk: remove MESSAGE referencing py-gnome2-desktop, which will be removed soon 2020-03-11 20:29:03 +00:00
bzr-svn
bzrtools
c++gsl
calltree-perl
capstone all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
catch
catch2 catch2: update to 2.11.3. 2020-03-22 17:55:28 +00:00
cbindgen cbindgen: Update to 0.13.1 2020-03-06 14:22:14 +00:00
cbrowser all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
ccache ccache: updated to 3.7.9 2020-03-31 16:15:34 +00:00
cdecl
cdk cdk: Update to 5.0.20200228 2020-03-24 13:18:05 +00:00
cervisia librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
cfitsio *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
cflow all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
cflow-mode all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
cfr all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
cgdb *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
cgen Fix portability 2020-03-26 21:49:01 +00:00
check all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
chmlib
chrpath
clib
clion-bin
clisp-pcre
clisp-syscalls
clisp-wildcard
clisp-zlib
cloc
cmake cmake: updated to 3.17.0 2020-03-21 12:58:00 +00:00
cmake-fedora
cmake-gui cmake: updated to 3.17.0 2020-03-21 12:58:00 +00:00
cmake-mode
cmocka
cmockery2
cmph all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
cobol-mode
coccinelle
coconut librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
codeville
cogito
colordiff
commit-patch
compiz-bcop
compizconfig-backend-gconf librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
concurrencykit
confuse
cook
cppcheck librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
cppunit all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
cpputest all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
cproto
cpuflags
cqual
cre2
creduce
cscope all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
cssc all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
ctemplate
cunit all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
cut
cutter *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
cvs-fast-export
cvs2cl
cvs2html
cvs2svn
cvsclone
cvsd
cvsdiff2patch
cvsgraph Fix build with PKG_DEVELOPER; avoid misdetection of "test ==" check. 2020-03-18 12:41:08 +00:00
cvslock
cvsps
cvsps3
cvsup-bin
cvsup-gui-bin
cvsutils
cvsync *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
cxref
darcs *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
darts
dconf dconf: update to 0.36.0. 2020-03-15 19:45:58 +00:00
dconf-editor *: bump for vala 0.48.0 2020-03-11 09:53:51 +00:00
ddd Catch up with exit hook attributes in libXt. 2020-03-26 21:49:22 +00:00
debugcon_printf
deforaos-asm deforaos-asm: update to 0.2.3nb4. 2020-03-19 14:05:03 +00:00
deforaos-coder librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
deforaos-configure
deforaos-cpp deforaos-cpp: update to 0.0.3nb4. 2020-03-16 13:18:44 +00:00
deforaos-libsystem deforaos-libsystem: fix build on Linux 2020-03-15 19:55:42 +00:00
dejagnu all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
delta
dev86 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
devhelp librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
device-driver-doc-de
devIL devIL: remove duplicate line 2020-03-14 00:27:03 +00:00
dia2code all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
diffuse all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
diffutils all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
distcc
distcc-pump
distccmon-gnome librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
distccmon-gtk librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
dlcompat *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
dmake
dmalloc
doc++ all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
dolphin-plugins *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
dotconf
doxygen librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
doxymacs all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
dumpet
easygit
ecb Import ecb-2.50 2020-01-21 11:56:48 +00:00
eclipse all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ecore *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
edcommon all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
editline clean up if clause 2020-03-23 09:34:27 +00:00
editorconfig-core
eet *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:47:57 +00:00
egypt all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
eina
eio *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
electric-fence
elf
elfcat
elfsh
elftoolchain *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
elib
emacs-ilisp
emacs20-elib
empty *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
epydoc all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
erlang-base64url erlang-base64url: Update to 1.0.1 2020-03-23 18:15:22 +00:00
erlang-cache_tab
erlang-ezlib erlang-ezlib: Update to 1.0.7 2020-03-23 18:09:59 +00:00
erlang-fs all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
error
ETL
etrace
exctags all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
exempi *: Recursive revbump from devel/boost-libs 2020-01-12 20:19:52 +00:00
ExmanIDE all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
extra-cmake-modules kf5: update to frameworks 5.66 2020-01-29 11:49:22 +00:00
fann all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
fastdep
fhist all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
fifechan *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
fifengine Needs a lot more memory than usual with clang, so bump limits. 2020-03-29 01:00:33 +00:00
flatbuffers all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
flatzebra all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
flex
flexdock
flim
florist
fortran-utils
fossil *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
frama-c librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
frink all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
fromcvs
ftnchek
g-wrap Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
gccmakedep
GConf *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
GConf-ui librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
gconfmm *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
gcvs all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
gdb all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
gdb7 all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
gdbus-codegen glib2: update to 2.64.1 2020-03-15 19:51:30 +00:00
gdl librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
geany librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
gearmand Use correct types for initialisation on all platforms. 2020-03-26 21:49:49 +00:00
generate
gengetopt Fix shell portability 2020-03-27 20:53:05 +00:00
gentle
gettext gettext: check for glibc in the right package + check for glibc, not Linux 2020-01-23 11:42:16 +00:00
gettext-asprintf
gettext-lib
gettext-m4 Also install host-cpu-c-abi.m4 from gettext-tools/gnulib-m4 2019-12-16 14:44:56 +00:00
gettext-tools gettext: check for glibc in the right package + check for glibc, not Linux 2020-01-23 11:42:16 +00:00
gflags
gflib
giblib
gindent all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
git git: updated to 2.26.0 2020-04-02 07:46:42 +00:00
git-base git: updated to 2.26.0 2020-04-02 07:46:42 +00:00
git-contrib
git-cvs
git-docs git: updated to 2.25.0 2020-01-20 20:07:40 +00:00
git-gitk git: updated to 2.25.0 2020-01-20 20:07:40 +00:00
git-lfs Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
git-remote-hg
git-svn
gitolite
glade librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
glib
glib2 glib2: update to 2.64.1 2020-03-15 19:51:30 +00:00
glib2-tools
glibmm glibmm: Update to 2.64.2 2020-03-30 12:50:45 +00:00
global all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
gmake gmake: try harder to unbreak circular dependency 2020-03-14 13:28:57 +00:00
gmp gmp: updated to 6.2.0 2020-01-20 21:25:24 +00:00
gmtk librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
gnatpython
gnome-common
gnustep-base Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
gnustep-examples
gnustep-make
gnustep-objc
gnustep-objc-lf2
go-afero Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-amber Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-appengine Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-argv Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-assert Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-blackfriday Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-buffruneio Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-bytebufferpool Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-cast Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-check Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-cli Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-cobra Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-colorable Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-colortext Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-colour Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-compress Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-consul-api Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-cpuid Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-debounce Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-ed25519 Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-emoji Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-errors Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-flags-svent Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-fnmatch Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-fs Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-fsnotify Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-fsync Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-gitmap Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-glog Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-gls Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-gocode Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-godef Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-godirwalk Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-godotenv Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-golang-lru Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-goorgeous Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-gopkgs Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-goptlib Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-goreturns Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-gox Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-hashstructure Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-homedir Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-humanize Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-i18n Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-immutable-radix Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-ini Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-iochan Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-isatty Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-jwalterweatherman Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-jwt-go Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-kingpin.v3-unstable Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-locker Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-logrus Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-mapstructure Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-mapstructure-bep Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-mow-cli Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-nbreader Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-nitro Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-osext Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-pflag Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-properties Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-protobuf Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-purell Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-ratelimit Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-repr Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-review Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-sanitized_anchor_name Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-shellwords Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-shuffle Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-siphash Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-spew Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-sync Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-sys Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-termbox Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-testify Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-thrift Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-tools Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-try Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-viper Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-xerrors Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
go-yaml Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
gob2 *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
gobject-introspection gobject-introspection: update to 1.64.0. 2020-03-11 10:09:36 +00:00
golint Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
google-api-go-client Revbump all Go packages after go113 update. 2020-03-21 16:57:00 +00:00
google-glog
googletest Revbump due to package change. 2020-01-10 09:28:41 +00:00
Gorm
gperf all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
gperftools Use /proc/../maps to get shared library information on NetBSD. 2019-11-28 12:19:58 +00:00
gprbuild-aux
gps librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
gputils Fix shell portability 2020-03-27 20:53:52 +00:00
gradle Updated devel/gradle to 4.10.3 2020-01-02 20:10:01 +00:00
grantlee *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
grantlee-qt5 librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
gsoap Fix build with C++11 and OpenSSL 1.1. 2020-03-27 20:53:32 +00:00
gst-plugins0.10-pango librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
gst-plugins1-pango librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
gtexinfo all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
gtl
guile-bytestructures
guile-gcrypt devel/guile-gcrypt: Update to version 0.2.1 2020-01-03 17:17:29 +00:00
guile-git Recursive revbump for libgit2-0.99.0 2020-02-29 11:47:09 +00:00
guile-gnome librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
guile-lib *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
guile-slib *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
guile-www *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
guile22-slib *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
gyp
happy Remove dependency on devel/hs-mtl 2020-01-11 07:54:04 +00:00
haskell-mode
hdevtools Mark hdevtools as broken 2020-01-11 12:41:51 +00:00
hdf Fix portability 2020-03-26 02:36:27 +00:00
hdf5 devel/hdf5: skip some files for the portability check 2020-03-17 22:29:34 +00:00
hdf5-c++ devel/hdf5-c++: Install missing headers 2020-03-14 23:09:48 +00:00
heirloom-getopt
heirloom-libcommon
heirloom-what
hoe devel/hoe: update to 3.22.1 2020-03-08 13:25:18 +00:00
honggfuzz
hptools
hs-ansi-terminal Add missing dependency on devel/hs-colour 2020-01-11 13:08:35 +00:00
hs-asn1-encoding Import asn1-encoding-0.9.6 2020-01-17 00:02:43 +00:00
hs-asn1-parse Import asn1-parse-0.9.5 2020-01-17 00:35:08 +00:00
hs-asn1-types Import asn1-types-0.3.3 2020-01-16 23:53:58 +00:00
hs-async Remove dependency on devel/hs-stm 2020-01-11 10:38:32 +00:00
hs-base-compat Import base-compat-0.11.0 2019-12-31 17:40:50 +00:00
hs-base-compat-batteries hs-base-compat-batteries: Import version 0.11.0 2020-03-30 16:33:17 +00:00
hs-base-orphans Import base-orphans-0.8.1 2019-12-31 17:57:42 +00:00
hs-base-unicode-symbols Update to base-unicode-symbols-0.2.4.2 2019-12-30 23:48:43 +00:00
hs-basement Import basement-0.0.11 2020-01-16 00:38:57 +00:00
hs-bitarray Import bitarray-0.0.1.1 2020-01-17 18:39:29 +00:00
hs-blaze-builder Remove dependency on devel/hs-text 2020-01-11 10:48:40 +00:00
hs-bytestring-builder hs-bytestring-builder: Import version 0.10.8.2.0 2020-03-30 16:34:14 +00:00
hs-call-stack hs-call-stack: Import version 0.2.0 2020-03-30 16:35:08 +00:00
hs-cereal Import cereal-0.5.8.1 from wip 2020-01-16 16:27:58 +00:00
hs-cmdargs Update to cmdargs-0.10.20 2020-01-01 03:01:16 +00:00
hs-code-page Import code-page-0.2 2020-01-19 12:37:21 +00:00
hs-colour Update to colour-2.3.5 2020-01-11 11:44:27 +00:00
hs-conduit Update to conduit-1.3.1.2 2020-01-11 09:04:18 +00:00
hs-control-monad-free hs-control-monad-free: Import version 0.6.2 2020-03-30 16:36:06 +00:00
hs-cpphs Update to cpphs-1.20.8 2020-01-02 03:27:12 +00:00
hs-data-default Update to data-default-0.7.1.1 2019-12-31 07:48:16 +00:00
hs-data-default-class Update to data-default-class-0.1.2.0 2019-12-31 07:17:00 +00:00
hs-data-default-instances-base Remove PLIST; we can no longer use it for Haskell packages 2019-12-31 07:22:44 +00:00
hs-data-default-instances-containers Remove PLIST; we can no longer use it for Haskell packages 2019-12-31 07:26:27 +00:00
hs-data-default-instances-dlist Bump PKGREVISION for hs-dlist-0.8.0.7 2019-12-31 07:35:23 +00:00
hs-data-default-instances-old-locale Add dependency on devel/hs-old-locale 2019-12-31 07:52:08 +00:00
hs-deepseq-generics Fix build with GHC 8.4 2020-01-04 12:09:28 +00:00
hs-dlist Update to dlist-0.8.0.7 2019-12-31 07:33:17 +00:00
hs-echo Import echo-0.1.3 2020-01-18 22:57:04 +00:00
hs-either Remove dependency on devel/hs-mtl 2020-01-11 08:32:25 +00:00
hs-errors Import errors-2.3.0 2020-01-15 07:19:38 +00:00
hs-exceptions Remove dependency on deve/hs-stm 2020-01-11 09:00:30 +00:00
hs-extensible-exceptions Remove PLIST; we can no longer use it for Haskell packages 2019-12-31 08:05:31 +00:00
hs-fail Import fail-4.9.0.0 2019-12-31 14:24:57 +00:00
hs-fgl hs-fgl: Import version 5.7.0.2 2020-03-30 16:36:47 +00:00
hs-file-embed hs-file-embed: Import version 0.0.11.2 2020-03-30 16:39:47 +00:00
hs-fingertree Import fingertree-0.1.4.2 from wip 2020-01-19 13:10:49 +00:00
hs-fsnotify Import fsnotify-0.3.0.1 2020-01-19 13:35:50 +00:00
hs-generic-deriving Import generic-deriving-1.13.1 from wip 2019-12-31 15:49:52 +00:00
hs-ghc-mtl Remove dependency on devel/hs-mtl 2020-01-11 08:05:40 +00:00
hs-ghc-paths Update to ghc-paths-0.1.0.12 2019-12-31 08:12:48 +00:00
hs-hashable Remove dependency on devel/hs-text 2020-01-11 09:31:04 +00:00
hs-hashtables hs-hashtables: Import version 1.2.3.4 2020-03-30 16:40:25 +00:00
hs-haskell-lexer Import haskell-lexer-1.0.2 from wip 2020-01-17 17:18:15 +00:00
hs-haskell-src-exts Update to haskell-src-exts-1.22.0 2020-01-02 04:52:43 +00:00
hs-hint Add missing dependency on sysutils/hs-temporary 2020-01-11 08:18:47 +00:00
hs-hslua-module-system Import hslua-module-system-0.2.1 2020-01-15 13:53:58 +00:00
hs-ipynb Import ipynb-0.1 2020-01-16 13:52:56 +00:00
hs-libffi Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
hs-lifted-base Update to lifted-base-0.2.3.12 2020-01-01 05:12:31 +00:00
hs-lukko Import lukko-0.1.1.1 2020-01-19 01:11:35 +00:00
hs-memory Import memory-0.15.0 2020-01-16 01:00:24 +00:00
hs-mmorph Remove dependency on devel/hs-mtl 2020-01-11 08:20:36 +00:00
hs-monad-control Remove dependency on devel/hs-stm 2020-01-11 10:38:32 +00:00
hs-MonadRandom Remove dependency on devel/hs-mtl 2020-01-11 08:05:40 +00:00
hs-mono-traversable Update to mono-traversable-1.0.15.1 2020-01-11 08:56:16 +00:00
hs-old-locale Fix build with GHC >= 8 2020-01-03 15:42:34 +00:00
hs-Only hs-Only: Import version 0.1 2020-03-30 16:32:25 +00:00
hs-optparse-applicative Import optparse-applicative-0.15.1.0 2020-01-19 15:40:14 +00:00
hs-parser-combinators Import parser-combinators-1.2.1 2020-01-19 14:41:55 +00:00
hs-pretty-show Add missing BUILD_DEPENDS on devel/happy 2020-01-22 00:22:29 +00:00
hs-primitive Remove dependency on devel/hs-mtl 2020-01-11 07:54:04 +00:00
hs-QuickCheck Update to QuickCheck-2.13.2 2020-01-01 03:44:06 +00:00
hs-random Remove PLIST; we can no longer use it for Haskell packages 2020-01-01 03:28:13 +00:00
hs-reflection Update to reflection-2.1.5 2020-01-02 07:16:27 +00:00
hs-resourcet Update to resourcet-1.2.2 2020-01-11 08:26:22 +00:00
hs-safe Update to safe-0.3.18 2020-01-02 07:19:23 +00:00
hs-setlocale Update to setlocale-1.0.0.9 2020-01-02 09:07:04 +00:00
hs-split Fix build with GHC 8.8 2020-01-09 00:41:31 +00:00
hs-splitmix Import splitmix-0.0.3 2020-01-01 03:41:02 +00:00
hs-StateVar Remove dependency on devel/hs-stm 2020-01-11 10:38:32 +00:00
hs-streaming-commons Import streaming-commons-0.2.1.2 2020-01-16 13:06:20 +00:00
hs-syb Update to syb-0.7.1 2020-01-01 03:13:39 +00:00
hs-tabular hs-tabular: Import version 0.2.2.7 2020-03-30 16:46:47 +00:00
hs-tagged Fix build with GHC 8.8 2020-01-09 00:41:31 +00:00
hs-tasty hs-tasty: Import version 1.2.3 2020-03-30 16:51:08 +00:00
hs-tasty-hunit hs-tasty-hunit: Import version 0.10.0.2 2020-03-30 16:51:43 +00:00
hs-terminal-size Import terminal-size-0.3.2.1 2020-01-20 00:48:03 +00:00
hs-tf-random Remove PLIST; we can no longer use it for Haskell packages 2020-01-02 09:13:43 +00:00
hs-th-abstraction Import th-abstraction-0.3.1.0 2019-12-31 15:34:56 +00:00
hs-timeit hs-timeit: Import version 2.0 2020-03-30 16:41:04 +00:00
hs-transformers-base Remove dependency on devel/hs-stm 2020-01-11 10:38:32 +00:00
hs-transformers-compat Remove dependency on devel/hs-transformers 2019-12-31 18:51:27 +00:00
hs-uglymemo hs-uglymemo: Import version 0.1.0.1 2020-03-30 16:41:41 +00:00
hs-unbounded-delays hs-unbounded-delays: Import version 0.1.1.0 2020-03-30 16:42:18 +00:00
hs-uniplate Fix build with recent devel/hs-hashable 2020-01-02 09:18:48 +00:00
hs-unix-compat Import unix-compat-0.5.2 from wip 2020-01-03 06:48:10 +00:00
hs-unliftio-core Fix build with GHC 8.8 2020-01-08 18:57:25 +00:00
hs-unordered-containers Update to unordered-containers 0.2.10.0 2019-12-31 16:26:32 +00:00
hs-utf8-string Fix build with GHC >= 8 2020-01-03 15:42:34 +00:00
hs-utility-ht hs-utility-ht: Import version 0.0.15 2020-03-30 16:42:56 +00:00
hs-uuid-types Remove dependency on devel/hs-text 2020-01-11 09:41:03 +00:00
hs-vault Update to vault-0.3.1.3 2020-01-02 09:31:47 +00:00
hs-vector Fix build with GHC 8.8 2020-01-11 08:50:16 +00:00
hs-vector-algorithms Update to vector-algorithms-0.8.0.3 2020-01-02 10:28:24 +00:00
hs-vector-binary-instances Import vector-binary-instances-0.2.5.1 2020-01-20 01:04:20 +00:00
hs-vector-th-unbox Import vector-th-unbox-0.2.1.7 2020-01-02 11:00:30 +00:00
hs-void Update to void-0.7.3 2020-01-02 10:38:57 +00:00
hs-wizards hs-wizards: Import version 1.0.3 2020-03-30 16:43:35 +00:00
ht *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
hugs-HUnit *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
hugs-unix
hyperscan
idiff all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
idutils all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
imake all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
include-what-you-use include-what-you-use: Update to 0.13 2019-11-26 18:34:31 +00:00
iniparser
intel2gas
intellij-ce-bin
intellij-ue-bin
isect *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
ivykis
jam devel/jam: fix -Wchar-subscripts 2020-03-26 21:19:58 +00:00
java-jna Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
java-subversion subversion: updated to 1.13.0 2020-02-24 16:10:33 +00:00
javacc
javadeps
jd-gui
jdebp-redo
jemalloc devel/jemalloc: remove unknown configure option 2020-03-22 12:53:10 +00:00
jenkins
jenkins-lts
jflex all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
jq
js2-mode
js_of_ocaml all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
jsonnet all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
kafka all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
kapptemplate librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kbookmarks librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kbuild
kcachegrind librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kcmutils librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kconfig librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kcoreaddons librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kcrash librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kde-dev-scripts librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kde-dev-utils librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kdeclarative librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kdesdk-kioslaves *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
kdesdk-strigi-analyzers *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
kdesdk-thumbnailers *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
kdevelop4 *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
kdevplatform *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
kdiff3 librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kdoctools librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
ki18n librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kidletime librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kio librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kitemmodels librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
knotifications librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
knotifyconfig librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
ko-po-check all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
kompare librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kpackage librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kparts librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kpeople librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kpty librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kross librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
krunner librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kservice librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
ktexteditor librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kwayland librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
kyua
lcc
lcdis
lcov *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
ldapsdk
ldpc all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
lemon sqlite3: updated to 3.31.1 2020-01-29 08:33:12 +00:00
lettuce
libappindicator librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
libarena all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libargparse all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libast
libatomic_ops
libbegemot
libbinio *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
libblkid
libbonobo *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
libbonoboui librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
libcbor
libcerf
libcfg+
libcompizconfig librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
libconfig all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
libctl *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
libdaemon
libdatrie
libdazzle *: bump for vala 0.48.0 2020-03-11 09:53:51 +00:00
libdbusmenu-glib *: bump for vala 0.48.0 2020-03-11 09:53:51 +00:00
libdbusmenu-gtk *: bump for vala 0.48.0 2020-03-11 09:53:51 +00:00
libdbusmenu-gtk-doc *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
libdbusmenu-gtk3 *: bump for vala 0.48.0 2020-03-11 09:53:51 +00:00
libdbusmenu-jsonloader *: bump for vala 0.48.0 2020-03-11 09:53:51 +00:00
libdbusmenu-qt *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
libdbusmenu-qt5 librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
libdbusmenu-tools *: bump for vala 0.48.0 2020-03-11 09:53:51 +00:00
libdevq
libdnsres *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
libdockapp
libdshconfig all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libdstr Add libdstr 1.0 2020-02-28 22:04:30 +00:00
libdwarf
libebml all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
libelf
libestr libestr: Update to 0.1.11 2020-03-24 15:28:09 +00:00
libetm
libev libev: Update to 4.33 2020-03-22 16:01:46 +00:00
libevent libevent: fix PR pkg/54983 2020-02-19 15:21:34 +00:00
libewf *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
libexecinfo
libextractor librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
libf2c all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libffcall
libffi Fix build for ILP32 powerpc, which doesn't have 128-bit-length data types. 2020-03-21 16:08:34 +00:00
libfirm *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
libFoundation
libFoundation-examples
libfreefare
libftdi
libftdi1 libftdi1: Update libusb reference in buildlink3 2020-03-27 17:46:53 +00:00
libgcroots
libgee *: bump for vala 0.48.0 2020-03-11 09:53:51 +00:00
libgee0.6 *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
libgetopt
libgit2 *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
libglade librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
libglademm librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
libgnome librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
libgnomemm librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
libgnomeui librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
libgnomeuimm librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
libgphoto2 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
libgsf libgsf: Not tied to a specific GNOME version 2020-04-01 14:34:41 +00:00
libgweather librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
libhandy *: bump for vala 0.48.0 2020-03-11 09:53:51 +00:00
libhfs
libhid
libiberty
libidn libidn: Update to 1.35 2020-01-29 11:02:18 +00:00
libidn2
libindicator librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
libinotify
libite
libixp
libjit
libjudy *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
libkgapi *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
libkomparediff2 librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
liblangtag *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
liblnk
libltdl
libmaa Update to libmaa-1.4.6 2020-03-30 18:39:47 +00:00
libmatchbox
libmcs
libmemcache
libmemcached libmemcached: gnu++0x for alloca 2020-03-16 10:38:09 +00:00
libmemmgr
libmimedir
libmm
libmowgli *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
libmtp libmtp: Update to 1.1.17 2020-03-24 16:58:05 +00:00
libnet10
libnet11
libnfc
libnjb libnjb: Update to 2.2.7 2020-03-24 16:44:41 +00:00
libntlm all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
liboil
liboop
libosip libosip: Update to 5.1.1 2020-03-06 12:52:20 +00:00
libowfat all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libpeas libpeas: update to 1.26.0. 2020-03-10 22:30:30 +00:00
libpgm
libphutil Bump PKGREVISION by changing of default PHP version. 2019-12-09 14:20:54 +00:00
libportlib
libproplist
libpthread_dbg Consistently disable PIC archives. Bump revision. 2019-12-22 22:23:55 +00:00
librdkafka librdkafka: updated to 1.3.0 2020-02-01 20:49:43 +00:00
librelp *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
librfuncs
librlog all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
librxspencer
libsafec
libsexy librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
libsexymm librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
libsigc++ *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
libsigc++1 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
libsigc++3 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
libsigsegv all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
libslang all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libslang2 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libsmi all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libstash
libstatgrab libstatgrab: Update to 0.92 2020-03-24 16:54:37 +00:00
libstree libstree: Update to 0.4.2 2020-03-24 17:15:47 +00:00
libstroke
libtai devel/libtai: remove unnecessary errno hack option 2020-03-22 13:24:00 +00:00
libtar
libtecla libtecla: add missing LDFLAGS, document patch-aa 2020-03-22 13:38:28 +00:00
libthai libthai: Update to 0.1.28 2020-03-24 17:09:26 +00:00
libthrift *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:47:57 +00:00
libthrift_c_glib *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
libtool all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
libtool-base
libtool-fortran
libtool-info
libts
libusb *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
libusb-compat
libusb1 Translate EWOULDBLOCK to LIBUSB_ERROR_TIMEOUT on NetBSD. 2019-12-22 17:06:39 +00:00
libuuid libuuid package does not depend on python, so disable finding it. 2020-03-14 09:59:01 +00:00
libuv libuv: updated to 1.35.0 2020-03-12 16:12:47 +00:00
libuxre
libview *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
libvolume_id
libwhisker2
libwnck librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
libwnck3 librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
libxenserver *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
libzen
libzookeeper
linenoise
lld all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
lldb llvm: updated to 9.0.1 2019-12-29 15:31:21 +00:00
lmdbg
locktests
log4cplus all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
log4cxx *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
log4shib
lokalize librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
ltsa
lua-alt-getopt
lua-bitlib
lua-BitOp all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
lua-coxpcall all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
lua-cqueues *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
lua-filesystem all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
lua-gi Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
lua-ljsyscall
lua-lpeg
lua-lrexlib
lua-lrexlib-onig
lua-lrexlib-pcre
lua-lrexlib-posix
lua-mode
lua-penlight (devel/lua-penlight) Updated 1.5.4 to 1.7.0 2020-02-15 05:50:37 +00:00
lua-posix lua-posix: Remove upstreamed patch that no longer applies 2020-02-08 15:32:33 +00:00
lua-rocks
lua-std-_debug (devel/lua-std-_debug) Updated to 1.0.1 2020-02-15 05:54:35 +00:00
lua-std-normalize
lua-stdlib
lua-thrift
lutok
lwp lwp: Update to 2.8 2020-03-24 17:59:20 +00:00
lxqt-build-tools librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
m4 all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
m17n-lib all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
mad-flute *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
magit
makedepend all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
makedepf90
maketool
man-pages
mantis all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
mate-common librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
matio all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
mcpp
mdds mdds: Update to 1.5.0 2020-02-05 13:26:09 +00:00
mdds1.2 *: Recursive revbump from devel/boost-libs 2020-01-12 20:19:52 +00:00
meld librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
mell
memcached memcached: updated to 1.5.21 2020-01-22 18:53:13 +00:00
menhir Updated devel/menhir to version 20190924. 2020-01-14 22:04:26 +00:00
mercurial
meson meson: update to 0.54.0. 2020-04-01 14:51:05 +00:00
mk-configure *** empty log message *** 2020-03-30 14:10:55 +00:00
mkcmd
mm-common
MoarVM devel/MoarVM: skip portability check for release target 2020-03-14 13:00:03 +00:00
mono-addins
mono-tools librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
monodevelop librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
monodevelop-database librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
monotone devel/monotone: fix REPLACE_SH 2020-03-27 16:42:26 +00:00
monotone-server
monotone-viz librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
mph
msgpack
mustach devel/mustach: set install_name to fix macOS build 2019-12-29 21:46:59 +00:00
myrepos all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
nana all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
nasm all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
nbpatch all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ncc
ncurses ncurses: Apply Debian patch to fix tmux with screen-256color. 2020-03-30 08:53:42 +00:00
ncursesw ncursesw: update to 6.2. 2020-03-04 14:04:51 +00:00
netbeans-ide
netbsd-iscsi-lib netbsd-iscsi-lib: fix installation on Linux 2020-03-22 14:24:59 +00:00
netcdf *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
netcdf-cxx *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
netcdf-fortran netcdf-fortran: Fix f90 PLIST. While here, silence some pkglint warnings. 2020-03-26 11:31:48 +00:00
newfile *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
ninja-build devel/ninja-build: remove obsolete SUBST block 2020-03-18 00:05:18 +00:00
noweb all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
npapi-sdk
npth
nqc *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
nsis all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
nspr nspr: Update to 4.25 2020-02-05 03:26:52 +00:00
nspr-reference
nss nss: Update to 3.51 2020-03-18 13:22:10 +00:00
ObjectiveLib all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
objfw
ocaml-angstrom
ocaml-astring
ocaml-async
ocaml-async_extra
ocaml-async_kernel
ocaml-async_rpc_kernel
ocaml-async_unix
ocaml-base Updated devel/ocaml-base to version 0.13.0. 2020-01-16 12:39:32 +00:00
ocaml-base64
ocaml-base_bigstring
ocaml-base_quickcheck Updated devel/ocaml-base_quickcheck to version 0.13.0. 2020-01-16 13:31:13 +00:00
ocaml-batteries Updated devel/ocaml-batteries to verion 2.11.0. 2020-03-12 11:12:45 +00:00
ocaml-bigarray-compat Added devel/ocaml-bigarray-compat 1.0.0, a bigarray compatibility library 2020-01-24 16:20:47 +00:00
ocaml-bigstringaf Updated devel/ocaml-bigstringaf to version 0.6.0. 2020-01-24 16:25:41 +00:00
ocaml-bin_prot
ocaml-biniou Updated devel/ocaml-biniou to version 1.2.1. 2020-01-31 11:32:30 +00:00
ocaml-bos all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ocaml-checkseum
ocaml-cmdliner
ocaml-compiler-libs Updated devel/ocaml-compiler-libs to version 0.12.0. 2020-01-14 22:14:42 +00:00
ocaml-configurator
ocaml-core Updated devel/ocaml-core to version 0.13.0. 2020-01-17 09:33:45 +00:00
ocaml-core_kernel Updated devel/ocaml-core_kernel to version 0.13.0. 2020-01-16 15:31:15 +00:00
ocaml-cppo Updated devel/ocaml-cppo to version 1.6.6. 2020-01-23 13:11:14 +00:00
ocaml-cstruct
ocaml-deriving-ocsigen
ocaml-digestif
ocaml-duff
ocaml-dune Updated OCAML_FINDLIB_DIRS variable in devel/ocaml-dune. 2020-01-17 10:42:42 +00:00
ocaml-encore
ocaml-eqaf
ocaml-extlib
ocaml-fieldslib Updated devel/ocaml-fieldslib to version 0.13.0. 2020-01-16 13:29:57 +00:00
ocaml-findlib
ocaml-fmt
ocaml-fpath
ocaml-git Needs ocaml-cohttp. 2020-01-10 21:11:35 +00:00
ocaml-hex
ocaml-jane-street-headers Updated devel/ocaml-jane-street-headers to deal with dune 2. 2020-01-17 09:19:30 +00:00
ocaml-jbuilder
ocaml-js-build-tools
ocaml-jst-config
ocaml-logs
ocaml-lru
ocaml-lwt
ocaml-lwt_camlp4
ocaml-lwt_glib *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
ocaml-lwt_log
ocaml-lwt_ppx
ocaml-lwt_react
ocaml-lwt_ssl *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:47:57 +00:00
ocaml-migrate-parsetree Updated devel/ocaml-migrate-parsetree to version 1.5.0. 2020-01-29 08:28:44 +00:00
ocaml-mmap
ocaml-oasis
ocaml-ocplib-endian
ocaml-optcomp
ocaml-optint
ocaml-parsexp
ocaml-ppx_assert Updated devel/ocaml-ppx_assert to version 0.13.0. 2020-01-16 13:23:05 +00:00
ocaml-ppx_base
ocaml-ppx_bench Updated devel/ocaml-ppx_bench to version 0.13.0. 2020-01-16 13:26:32 +00:00
ocaml-ppx_bin_prot Updated devel/ocaml-ppx_bin_prot to version 0.13.0. 2020-01-16 13:39:34 +00:00
ocaml-ppx_cold Added package devel/ocaml-ppx_cold, a cold path annotation replacer. 2020-01-16 13:18:13 +00:00
ocaml-ppx_compare Updated devel/ocaml-ppx_compare to version 0.13.0. 2020-01-16 09:09:20 +00:00
ocaml-ppx_custom_printf
ocaml-ppx_derivers Updated devel/ocaml-ppx_derivers to version 1.2.1. 2020-01-17 09:37:32 +00:00
ocaml-ppx_deriving
ocaml-ppx_enumerate Updated devel/ocaml-ppx_enumerate to version 0.13.0. 2020-01-16 09:19:56 +00:00
ocaml-ppx_expect Updated devel/ocaml-ppx_expect to version 0.13.0. 2020-01-16 14:20:56 +00:00
ocaml-ppx_fail
ocaml-ppx_fields_conv Updated devel/ocaml-ppx_fields_conv to version 0.13.0. 2020-01-16 12:54:38 +00:00
ocaml-ppx_hash Updated devel/ocaml-ppx_hash to version 0.13.0. 2020-01-16 10:07:40 +00:00
ocaml-ppx_here Updated devel/ocaml-ppx_here to version 0.13.0. 2020-01-16 12:58:31 +00:00
ocaml-ppx_inline_test Updated devel/ocaml-ppx_inline_test to version 0.13.0. 2020-01-16 13:24:41 +00:00
ocaml-ppx_jane Updated devel/ocaml-ppx_jane to version 0.13.0. 2020-01-16 14:10:26 +00:00
ocaml-ppx_let Updated devel/ocaml-ppx_let to version 0.13.0. 2020-01-16 10:20:11 +00:00
ocaml-ppx_module_timer Updated devel/ocaml-ppx_module_timer to version 0.13.0. 2020-01-16 14:28:31 +00:00
ocaml-ppx_optcomp Updated devel/ocaml-ppx_optcomp to version 0.13.0. 2020-01-16 14:01:01 +00:00
ocaml-ppx_optional Updated devel/ocaml-ppx_optional to version 0.13.0. 2020-01-16 14:03:16 +00:00
ocaml-ppx_pipebang
ocaml-ppx_sexp_conv Updated devel/ocaml-ppx_sexp_conv to version 0.13.0. 2020-01-16 09:52:10 +00:00
ocaml-ppx_sexp_message Updated devel/ocaml-ppx_sexp_message to version 0.13.0. 2020-01-16 13:03:19 +00:00
ocaml-ppx_sexp_value
ocaml-ppx_stable
ocaml-ppx_tools
ocaml-ppx_tools_versioned
ocaml-ppx_typerep_conv Updated devel/ocaml-ppx_typerep_conv to version 0.13.0. 2020-01-16 14:06:43 +00:00
ocaml-ppx_variants_conv Updated devel/ocaml-ppx_variants_conv to version 0.13.0. 2020-01-16 13:37:46 +00:00
ocaml-ppxfind
ocaml-ppxlib Updated devel/ocaml-ppxlib to version 0.12.0. 2020-01-14 20:48:09 +00:00
ocaml-psq
ocaml-re Added depenency to devel/ocaml-re and revbump. 2020-01-24 16:04:51 +00:00
ocaml-react all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ocaml-reactiveData
ocaml-resource-pooling
ocaml-result Updated devel/ocaml-result to version 1.4. 2020-01-24 09:16:26 +00:00
ocaml-rresult
ocaml-seq
ocaml-sexplib
ocaml-sexplib0 Updated devel/ocaml-sexplib0 to version 0.13.0. 2020-01-24 16:15:30 +00:00
ocaml-spawn
ocaml-splittable_random Updated devel/ocaml-splittable_random to version 0.13.0. 2020-01-16 13:27:56 +00:00
ocaml-stdio Updated devel/ocaml-stdio to version 0.13.0. 2020-01-16 12:44:03 +00:00
ocaml-stringext Updated devel/ocaml-stringext to version 1.6.0. 2020-01-24 16:27:41 +00:00
ocaml-type_conv
ocaml-typerep Updated devel/ocaml-typerep to version 0.13.0. 2020-01-16 14:24:08 +00:00
ocaml-variantslib
ocaml-yojson
ocamlbuild
ocamlgraph librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
ocamlify all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ocamlmod all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ode all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ogre *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
okteta *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
omake
open-vcdiff
opengrok *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
openocd
openrcs
orc
ossp-uuid
p5-accessors
p5-accessors-fast
p5-Acme-Damn
p5-Acme-PlayCode
p5-Algorithm-Annotate
p5-Algorithm-C3
p5-Algorithm-CheckDigits
p5-Algorithm-Dependency
p5-Algorithm-Diff
p5-Algorithm-HowSimilar
p5-Algorithm-Merge
p5-Algorithm-Permute
p5-aliased
p5-Alien-Base-ModuleBuild (devel/p5-Alien-Base-ModuleBuild) Updated to 1.14 2020-02-22 12:36:33 +00:00
p5-Alien-Build (devel/p5-Alien-Build) Updated 2.12 to 2.17 2020-03-21 12:22:48 +00:00
p5-Alien-Packages
p5-Alien-SDL librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
p5-AnnoCPAN-Perldoc
p5-Any-Moose
p5-AnyEvent
p5-AnyEvent-AIO
p5-AnyEvent-IRC
p5-AnyEvent-RabbitMQ
p5-AnyEvent-XMPP
p5-App-Cache
p5-App-CLI
p5-App-Cmd
p5-App-cpanminus
p5-App-cpanoutdated
p5-App-FatPacker
p5-App-perlbrew (devel/p5-App-perlbrew) Updated to 0.88 2020-02-22 12:44:14 +00:00
p5-App-Prove-Plugin-ProgressBar
p5-App-Prove-Plugin-ProgressBar-Each
p5-AppConfig
p5-AppConfig-Std
p5-Array-Compare
p5-Array-Diff
p5-Array-RefElem
p5-asa
p5-Async-Interrupt
p5-AtExit
p5-Attribute-Lexical
p5-autobox
p5-autobox-Core
p5-Autodia
p5-autodie
p5-AutoLoader
p5-autovivification
p5-AutoXS-Header
p5-B-Compiling
p5-B-Debug
p5-B-Hooks-EndOfScope
p5-B-Hooks-OP-Annotation
p5-B-Hooks-OP-Check
p5-B-Hooks-OP-Check-EntersubForCV
p5-B-Hooks-OP-Check-StashChange
p5-B-Hooks-OP-PPAddr
p5-B-Hooks-Parser
p5-B-Keywords (devel/p5-B-Keywords) Updated to 1.21 2020-01-01 01:35:32 +00:00
p5-B-Utils
p5-BackPAN-Index
p5-bareword-filehandles
p5-Bit-Vector
p5-boolean
p5-BSD-Resource
p5-Cache *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
p5-Cache-Cache *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
p5-Cache-FastMmap
p5-Cache-LRU
p5-Cache-Memcached
p5-Cache-Memcached-Fast
p5-Cache-Simple-TimedExpiry
p5-Canary-Stability
p5-capitalization
p5-Capture-Tiny
p5-Carp
p5-Carp-Always
p5-Carp-Assert
p5-Carp-Assert-More
p5-Carp-Clan
p5-Carp-REPL
p5-Carton
p5-Check-ISA
p5-CHI
p5-circular-require
p5-CLASS
p5-Class-Accessor
p5-Class-Accessor-Chained
p5-Class-Accessor-Grouped
p5-Class-Accessor-Lite
p5-Class-Accessor-Named
p5-Class-Adapter
p5-Class-Autouse
p5-Class-Base
p5-Class-C3
p5-Class-C3-Adopt-NEXT
p5-Class-C3-Componentised
p5-Class-C3-XS
p5-Class-Container
p5-Class-Data-Accessor
p5-Class-Data-Inheritable
p5-Class-ErrorHandler
p5-Class-Factory
p5-Class-Factory-Util
p5-Class-Field
p5-Class-Fields
p5-Class-Gomor
p5-Class-Inner
p5-Class-InsideOut
p5-Class-Inspector
p5-Class-ISA
p5-Class-Load
p5-Class-Load-XS
p5-Class-Loader
p5-Class-MakeMethods
p5-Class-Method-Modifiers
p5-Class-MethodMaker
p5-Class-Mix
p5-Class-ObjectTemplate
p5-Class-OOorNO
p5-Class-ReturnValue
p5-Class-Singleton
p5-Class-Std
p5-Class-Throwable
p5-Class-Tiny
p5-Class-Trigger
p5-Class-Unload
p5-Class-Virtual
p5-Class-WhiteHole
p5-Class-XML
p5-Class-XPath
p5-Class-XSAccessor
p5-Clone
p5-Clone-Choose
p5-Clone-Fast
p5-Clone-PP
p5-common-sense
p5-Compress-PPMd
p5-Compress-Raw-Bzip2 (devel/p5-Compress-Raw-Bzip2) Updated to 2.093 2020-01-01 03:07:18 +00:00
p5-Compress-Raw-Zlib (devel/p5-Compress-Raw-Zlib) Updated to 2.093 2020-01-01 03:09:21 +00:00
p5-Config-Any
p5-Config-Any-Merge
p5-Config-Auto
p5-Config-AutoConf (devel/p5-Config-AutoConf) Updated to 0.318 2020-02-22 13:27:39 +00:00
p5-Config-File
p5-Config-Find
p5-Config-General all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
p5-Config-GitLike (devel/p5-Config-GitLike) Updated to 1.18 2020-03-21 12:29:01 +00:00
p5-Config-Grammar
p5-Config-INI
p5-Config-INI-Reader-Ordered
p5-Config-IniFiles
p5-Config-MVP
p5-Config-MVP-Reader-INI
p5-Config-Onion p5-Config-Onion: fill in DESCR 2020-03-23 07:42:07 +00:00
p5-Config-Properties
p5-Config-Std
p5-Config-Tiny
p5-Const-Fast
p5-constant-def
p5-Context-Preserve
p5-Contextual-Return
p5-Convert-Binary-C
p5-Coro
p5-CPAN
p5-CPAN-Changes
p5-CPAN-Checksums
p5-CPAN-Common-Index
p5-CPAN-DistnameInfo
p5-CPAN-FindDependencies
p5-CPAN-Inject
p5-CPAN-Meta
p5-CPAN-Meta-Check
p5-CPAN-Meta-Requirements
p5-CPAN-Meta-YAML
p5-CPAN-Mini
p5-CPAN-ParseDistribution
p5-CPAN-Perl-Releases (devel/p5-CPAN-Perl-Releases) Updated to 5.020200220 2020-02-22 13:18:33 +00:00
p5-CPAN-Reporter
p5-CPAN-Uploader
p5-CPANPLUS *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
p5-curry
p5-Curses
p5-Curses-UI
p5-Curses-UI-POE
p5-Cwd-Guard
p5-Data-Alias
p5-Data-Binary
p5-Data-Buffer
p5-Data-Compare (devel/p5-Data-Compare) Updated to 1.27 2019-11-27 12:15:58 +00:00
p5-Data-Denter
p5-Data-Dump
p5-Data-Dump-Streamer
p5-Data-Dumper
p5-Data-Dumper-Concise
p5-Data-Dumper-Names
p5-Data-GUID
p5-Data-Hierarchy
p5-Data-IEEE754
p5-Data-Integer
p5-Data-MessagePack (devel/p5-Data-MessagePack) Updated to 1.01 2020-03-21 12:49:05 +00:00
p5-Data-Munge
p5-Data-ObjectDriver (devel/p5-Data-ObjectDriver) Updated to 0.19 2020-03-14 12:45:41 +00:00
p5-Data-OptList
p5-Data-Page
p5-Data-Page-Pageset
p5-Data-Pageset
p5-Data-Peek p5-Data-Peek: update test dependency 2020-02-25 01:32:30 +00:00
p5-Data-Perl (devel/p5-Data-Perl) Updated to 0.002011 2020-02-22 13:34:16 +00:00
p5-Data-Printer
p5-Data-Random
p5-Data-Record
p5-Data-Section
p5-Data-Section-Simple
p5-Data-Serializer (devel/p5-Data-Serializer) Add or Convert more TEST_DEPENDS 2020-02-22 14:05:16 +00:00
p5-Data-ShowTable
p5-Data-Stag
p5-Data-Structure-Util
p5-Data-Taxi
p5-Data-TemporaryBag
p5-Data-Uniqid
p5-Data-UUID
p5-Data-UUID-Base64URLSafe
p5-Data-Validate-IP
p5-Data-Visitor
p5-Date-Business
p5-Date-Calc
p5-Date-Calc-XS
p5-Date-Manip (devel/p5-Date-Manip) Updated from 6.79 to 6.81. (+info 6.78 to 6.79) 2020-03-21 13:03:27 +00:00
p5-Date-Simple
p5-Debug-Client
p5-Debug-ShowStuff
p5-Declare-Constraints-Simple
p5-Devel-Autoflush
p5-Devel-BeginLift
p5-Devel-Caller
p5-Devel-Caller-IgnoreNamespaces
p5-Devel-CheckBin
p5-Devel-CheckCompiler
p5-Devel-CheckLib
p5-Devel-CheckOS (devel/p5-Devel-CheckOS) Updated to 1.83 2020-02-22 14:09:21 +00:00
p5-Devel-Confess
p5-Devel-Cover
p5-Devel-Cycle
p5-Devel-Declare
p5-Devel-Dumpvar
p5-Devel-ebug
p5-Devel-EvalContext
p5-Devel-Events
p5-Devel-Events-Objects
p5-Devel-FindPerl
p5-Devel-FindRef
p5-Devel-Gladiator
p5-Devel-GlobalDestruction
p5-Devel-Hide (devel/p5-Devel-Hide) Updated to 0.0013 2020-02-22 14:14:59 +00:00
p5-Devel-Leak
p5-Devel-Leak-Object (devel/p5-Devel-Leak-Object) Updated to 1.02 2020-03-21 13:06:41 +00:00
p5-Devel-LexAlias
p5-Devel-NYTProf
p5-Devel-OverloadInfo
p5-Devel-OverrideGlobalRequire
p5-Devel-PartialDump
p5-Devel-PatchPerl (devel/p5-Devel-PatchPerl) Updated 1.80 to 1.90 2020-03-21 13:24:06 +00:00
p5-Devel-PPPort (devel/p5-Devel-PPPort) Updated to 3.57 2020-03-21 13:08:46 +00:00
p5-Devel-Pragma
p5-Devel-Profile
p5-Devel-Refactor
p5-Devel-Refcount
p5-Devel-REPL
p5-Devel-Size
p5-Devel-SmallProf
p5-Devel-StackTrace
p5-Devel-StackTrace-AsHTML
p5-Devel-StackTrace-WithLexicals
p5-Devel-Symdump
p5-Devel-Trace
p5-Devel-TraceUse
p5-Dir-Self
p5-Dist-CheckConflicts
p5-Dist-Zilla (devel/p5-Dist-Zilla) Updated to 6.014 2020-03-21 14:04:56 +00:00
p5-Dist-Zooky
p5-enum
p5-Env-Path
p5-Error (devel/p5-Error) Updated to 0.17029 2020-03-21 21:56:12 +00:00
p5-EV p5-EV: update to 4.32 to fix build on Linux 2020-03-15 19:30:54 +00:00
p5-Eval-Closure
p5-Eval-LineNumbers
p5-Event
p5-Event-ExecFlow
p5-Event-RPC *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
p5-ex-lib
p5-Exception-Class
p5-Exception-Handler
p5-Expect
p5-Expect-Simple
p5-experimental
p5-Exporter-Lite
p5-Exporter-Tiny
p5-ExtUtils-AutoInstall
p5-ExtUtils-CBuilder (devel/p5-ExtUtils-CBuilder) Updated to 0.28.02.34 2020-03-21 21:54:02 +00:00
p5-ExtUtils-CChecker
p5-ExtUtils-Command
p5-ExtUtils-Config
p5-ExtUtils-CppGuess (devel/p5-ExtUtils-CppGuess) Correction on paragraph related, no logic change 2020-03-21 22:51:03 +00:00
p5-ExtUtils-Depends *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
p5-ExtUtils-F77
p5-ExtUtils-Helpers
p5-ExtUtils-InstallPaths
p5-ExtUtils-LibBuilder
p5-ExtUtils-MakeMaker (devel/p5-ExtUtils-MakeMaker) Updated to 7.44 2020-03-21 14:18:46 +00:00
p5-ExtUtils-MakeMaker-Coverage
p5-ExtUtils-MakeMaker-CPANfile
p5-ExtUtils-Manifest
p5-ExtUtils-ModuleMaker
p5-ExtUtils-ModuleMaker-TT
p5-ExtUtils-ParseXS
p5-ExtUtils-PkgConfig *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
p5-ExtUtils-XSBuilder
p5-ExtUtils-XSpp
p5-FFI-CheckLib (devel/p5-FFI-CheckLib) Updated to 0.26 2020-03-21 23:44:01 +00:00
p5-File-BaseDir
p5-File-Binary
p5-File-BOM
p5-File-ChangeNotify
p5-File-chdir
p5-File-ConfigDir
p5-File-DesktopEntry
p5-File-DirCompare
p5-File-DirSync
p5-File-Find-Object (devel/p5-File-Find-Object) Updated to 0.3.5 2020-03-21 23:48:46 +00:00
p5-File-Find-Rule
p5-File-Find-Rule-Age
p5-File-Find-Rule-Perl
p5-File-Find-Rule-Permissions
p5-File-Find-Rule-PPI
p5-File-Find-Rule-VCS
p5-File-Flat
p5-File-Flock
p5-File-FlockDir
p5-File-HomeDir
p5-File-LibMagic
p5-File-Listing
p5-File-MimeInfo
p5-File-Modified
p5-File-Next
p5-File-NFSLock
p5-File-Path
p5-File-Path-Expand
p5-File-Path-Tiny
p5-File-PathConvert
p5-File-Policy
p5-File-pushd
p5-File-Save-Home
p5-File-Share
p5-File-ShareDir
p5-File-ShareDir-Install
p5-File-ShareDir-ProjectDistDir
p5-File-Slurp
p5-File-Slurp-Tiny
p5-File-Slurper
p5-File-Temp
p5-File-Tempdir
p5-File-Touch
p5-File-Type
p5-File-Util
p5-File-Which
p5-FileHandle-Fmode
p5-FileHandle-Unget
p5-Filesys-Notify-Simple
p5-Find-Lib
p5-FindBin-libs
p5-forks
p5-Format-Human-Bytes
p5-FreezeThaw
p5-Function-Parameters
p5-Future
p5-Getopt-ArgvFile
p5-Getopt-Euclid
p5-Getopt-Long
p5-Getopt-Long-Descriptive
p5-Getopt-Mixed
p5-Getopt-Simple
p5-Getopt-Tabular
p5-gettext
p5-Git-CPAN-Patch
p5-Git-Repository
p5-Git-Repository-Plugin-AUTOLOAD
p5-Git-Version-Compare
p5-Git-Wrapper
p5-GitLab-API-v3
p5-GitLab-API-v4 (devel/p5-GitLab-API-v4) Updated to 0.23 2019-11-27 12:32:24 +00:00
p5-Glib-Object-Introspection *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
p5-glib2 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
p5-Gnome2 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
p5-Gnome2-GConf *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
p5-Graph
p5-Graph-ReadWrite
p5-Gravatar-URL
p5-Gtk2-GladeXML *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
p5-Guard
p5-Hash-Case
p5-Hash-FieldHash
p5-Hash-Flatten
p5-Hash-Merge
p5-Hash-Merge-Simple
p5-Hash-MoreUtils
p5-Hash-MultiValue
p5-Hash-Util-FieldHash-Compat
p5-Heap
p5-Hook-LexWrap
p5-IMDB-Film
p5-Import-Into
p5-Importer
p5-inc
p5-inc-latest
p5-indirect
p5-Inline
p5-Inline-C
p5-InlineX-C2XS
p5-Internals
p5-IO-AIO
p5-IO-All
p5-IO-Async (devel/p5-IO-Async) Updated to 0.75 2020-01-01 00:41:29 +00:00
p5-IO-Capture
p5-IO-CaptureOutput
p5-IO-Compress
p5-IO-Digest
p5-IO-Event
p5-IO-Handle-Util
p5-IO-HTML
p5-IO-InSitu
p5-IO-Interactive
p5-IO-LockedFile
p5-IO-Multiplex
p5-IO-Null
p5-IO-Pager
p5-IO-Pipeline
p5-IO-Pipely
p5-IO-Prompt
p5-IO-Prompter
p5-IO-String
p5-IO-stringy
p5-IO-Stty
p5-IO-Tee
p5-IO-TieCombine
p5-IO-Tty p5-IO-Tty: Update to 1.14 2020-03-22 21:02:34 +00:00
p5-IO-Util
p5-IO-Zlib
p5-IPC-Cache
p5-IPC-Cmd
p5-IPC-DirQueue
p5-IPC-PubSub
p5-IPC-Run
p5-IPC-Run3
p5-IPC-Shareable
p5-IPC-SharedCache
p5-IPC-ShareLite
p5-IPC-Signal
p5-IPC-System-Simple
p5-IPC-SysV
p5-LDAP
p5-LEOCHARRE-CLI2
p5-LEOCHARRE-Debug
p5-LEOCHARRE-Dir
p5-Lexical-Persistence
p5-Lexical-SealRequireHints
p5-lib-abs
p5-List-AllUtils p5-List-AllUtils: Update to 0.16 2020-03-22 21:05:32 +00:00
p5-List-MoreUtils
p5-List-MoreUtils-XS
p5-List-Pairwise
p5-List-SomeUtils
p5-List-SomeUtils-XS
p5-List-UtilsBy
p5-local-lib
p5-Locale-Msgfmt
p5-Locale-PO
p5-Log-Agent
p5-Log-Any
p5-Log-Any-Adapter-Callback
p5-Log-Any-Adapter-Dispatch
p5-Log-Any-Adapter-Log4perl
p5-Log-Any-Adapter-Screen
p5-Log-Any-Adapter-TAP
p5-Log-Dispatch
p5-Log-Dispatch-Array
p5-Log-Dispatch-Config
p5-Log-Dispatch-DBI
p5-Log-Dispatch-FileRotate
p5-Log-Dispatch-Perl
p5-Log-Dispatchouli
p5-Log-Handler
p5-Log-Log4perl *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
p5-Log-LogLite
p5-Log-Message
p5-Log-Message-Simple
p5-Log-Report
p5-Log-Report-Optional
p5-Log-Trace
p5-Mac-Carbon
p5-Mac-SystemDirectory
p5-Make
p5-Memoize all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
p5-Memoize-ExpireLRU
p5-Memoize-Memcached
p5-Menlo
p5-Menlo-Legacy
p5-MetaCPAN-API
p5-MetaCPAN-Client
p5-Method-Signatures
p5-Method-Signatures-Simple
p5-Mixin-ExtraFields
p5-Mixin-ExtraFields-Param
p5-Mixin-Linewise
p5-Mo
p5-Modern-Perl
p5-Module-Build
p5-Module-Build-Tiny
p5-Module-Build-WithXSpp
p5-Module-Build-XSUtil
p5-Module-Compile (devel/p5-Module-Compile) Updated to 0.38 2020-01-01 04:36:28 +00:00
p5-Module-CoreList (devel/p5-Module-CoreList) Updated to 5.20191220 2020-01-01 04:39:24 +00:00
p5-Module-CPANfile
p5-Module-CPANTS-Analyse
p5-Module-Dependency
p5-Module-ExtractUse
p5-Module-Find Needs bsdtar to extract. 2020-01-10 21:11:50 +00:00
p5-Module-FromPerlVer
p5-Module-Implementation
p5-Module-Install
p5-Module-Install-AuthorRequires
p5-Module-Install-AuthorTests
p5-Module-Install-GithubMeta
p5-Module-Install-ManifestSkip
p5-Module-Install-PadrePlugin
p5-Module-Install-ReadmeFromPod
p5-Module-Install-Repository
p5-Module-Install-RTx
p5-Module-Install-Substitute
p5-Module-Install-XSUtil
p5-Module-Load
p5-Module-Manifest
p5-Module-Manifest-Skip
p5-Module-Metadata
p5-Module-Pluggable
p5-Module-Refresh
p5-Module-Runtime
p5-Module-Runtime-Conflicts
p5-Module-ScanDeps
p5-Module-Starter
p5-Module-Starter-PBP
p5-Module-Util
p5-Module-Versions
p5-Module-Versions-Report
p5-Mojo-IOLoop-ForkCall
p5-Moo
p5-Moos
p5-Moose (devel/p5-Moose) Updated to 2.2012 2020-01-01 05:09:22 +00:00
p5-Moose-Autobox
p5-Moose-Policy
p5-MooseX-Aliases
p5-MooseX-App
p5-MooseX-App-Cmd
p5-MooseX-Attribute-Chained
p5-MooseX-AttributeHelpers
p5-MooseX-Attributes-Curried
p5-MooseX-ClassAttribute
p5-MooseX-CompileTime-Traits
p5-MooseX-ConfigFromFile
p5-MooseX-Daemonize (devel/p5-MooseX-Daemonize) Updated to 0.22 2020-01-01 05:14:22 +00:00
p5-MooseX-Declare
p5-MooseX-Emulate-Class-Accessor-Fast
p5-MooseX-FollowPBP
p5-MooseX-Getopt
p5-MooseX-Has-Options
p5-MooseX-InsideOut
p5-MooseX-LazyRequire
p5-MooseX-MarkAsMethods
p5-MooseX-Meta-TypeConstraint-ForceCoercion
p5-MooseX-Method-Signatures
p5-MooseX-MethodAttributes
p5-MooseX-MultiInitArg
p5-MooseX-NonMoose
p5-MooseX-Object-Pluggable
p5-MooseX-OneArgNew
p5-MooseX-Param
p5-MooseX-Params-Validate
p5-MooseX-POE
p5-MooseX-Role-Parameterized
p5-MooseX-Role-Tempdir
p5-MooseX-Role-WithOverloading
p5-MooseX-SemiAffordanceAccessor
p5-MooseX-SetOnce
p5-MooseX-SimpleConfig
p5-MooseX-Singleton
p5-MooseX-StrictConstructor
p5-MooseX-Traits
p5-MooseX-Traits-Pluggable
p5-MooseX-Types
p5-MooseX-Types-Common
p5-MooseX-Types-JSON
p5-MooseX-Types-LoadableClass
p5-MooseX-Types-LogAny
p5-MooseX-Types-Path-Class
p5-MooseX-Types-Perl
p5-MooseX-Types-Stringlike
p5-MooseX-Types-Structured
p5-MooseX-Types-URI
p5-MooX-ClassAttribute
p5-MooX-Cmd
p5-MooX-ConfigFromFile
p5-MooX-File-ConfigDir
p5-MooX-HandlesVia
p5-MooX-late (devel/p5-MooX-late) Convert BUILD_DEPENDS to TEST_DEPENDS 2020-01-01 05:42:06 +00:00
p5-MooX-Locale-Passthrough
p5-MooX-Log-Any
p5-MooX-Options
p5-MooX-Roles-Pluggable
p5-MooX-StrictConstructor
p5-MooX-Types-MooseLike
p5-MooX-Types-MooseLike-Numeric
p5-Mouse
p5-MouseX-Getopt
p5-MouseX-NativeTraits
p5-MouseX-Types
p5-MouseX-Types-Path-Class
p5-MRO-Compat
p5-multidimensional
p5-namespace-autoclean
p5-namespace-clean
p5-Net-CIDR
p5-Net-LDAP-Batch
p5-Net-LDAP-Class
p5-Net-LDAP-Server-Test
p5-Net-LDAP-SID
p5-Net-Netmask
p5-NEXT
p5-Object-Accessor
p5-Object-Declare
p5-Object-Event
p5-Object-InsideOut
p5-Object-Pluggable
p5-Object-Realize-Later
p5-Object-Signature
p5-OLE-Storage_Lite
p5-OOTools
p5-Ouch
p5-Package-Constants
p5-Package-DeprecationManager
p5-Package-Generator
p5-Package-Stash
p5-Package-Stash-XS
p5-Package-Variant
p5-PadWalker
p5-pango librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
p5-PAR
p5-PAR-Dist
p5-Parallel-ForkManager
p5-Parallel-Prefork
p5-Params-Classify
p5-Params-Coerce
p5-Params-Util
p5-Params-Validate
p5-Params-ValidationCompiler
p5-parent
p5-Parse-CPAN-Meta
p5-Parse-CPAN-Packages
p5-Parse-ErrorString-Perl
p5-Parse-ExuberantCTags
p5-Parse-Method-Signatures
p5-Parse-PMFile (devel/p5-Parse-PMFile) Updated to 0.42 2020-01-01 05:17:29 +00:00
p5-Parse-RecDescent
p5-Parse-Yapp
p5-PatchReader
p5-Path-Class
p5-Path-Class-File-Stat
p5-Path-Dispatcher
p5-Path-Dispatcher-Declarative
p5-Path-FindDev
p5-Path-IsDev
p5-Path-Iter
p5-PathTools
p5-Pegex Update to 0.75. From the changelog: 2020-02-14 05:58:54 +00:00
p5-Perl-APIReference
p5-Perl-Critic (devel/p5-Perl-Critic) Updated to 1.136 2020-01-01 05:39:06 +00:00
p5-perl-headers
p5-Perl-MinimumVersion
p5-Perl-PrereqScanner
p5-Perl-PrereqScanner-NotQuiteLite Update to 0.9909 2020-01-07 13:01:16 +00:00
p5-Perl-Tidy p5-Perl-Tidy: Update to 20200110 2020-03-25 11:18:31 +00:00
p5-Perl-Version
p5-Perl4-CoreLibs
p5-Perl6-Export
p5-Perl6-Export-Attrs
p5-Perl6-Junction
p5-Perl6-Slurp
p5-PerlIO-eol
p5-PerlIO-gzip
p5-PerlIO-utf8_strict
p5-PerlIO-via-Bzip2
p5-PerlIO-via-dynamic
p5-PerlIO-via-symlink
p5-PerlIO-via-Timeout
p5-PerlX-Maybe
p5-PHP-Serialization
p5-pip
p5-Pod-Usage
p5-POE
p5-POE-Component-Cron
p5-POE-Component-Pluggable
p5-POE-Component-Schedule
p5-POE-Component-Syndicator
p5-POE-Test-Loops
p5-POEx-Types
p5-PPI
p5-PPI-PowerToys
p5-PPI-XS
p5-PPIx-Regexp
p5-PPIx-Utilities
p5-prefork
p5-Probe-Perl
p5-Proc-Background
p5-Proc-Daemon
p5-Proc-InvokeEditor
p5-Proc-PID-File
p5-Proc-Pidfile
p5-Proc-ProcessTable devel/p5-Proc-ProcessTable: remove nonexistent file 2020-03-22 20:58:24 +00:00
p5-Proc-Queue
p5-Proc-Simple
p5-Proc-Wait3
p5-Proc-WaitStat
p5-PV
p5-Python-Serialise-Marshal
p5-Readonly
p5-Readonly-XS
p5-Ref-Util
p5-Ref-Util-XS
p5-Regexp-Assemble
p5-Regexp-MatchContext
p5-Regexp-Parser
p5-Regexp-Shellish
p5-Regexp-Trie
p5-Reply
p5-Return-MultiLevel
p5-Return-Value
p5-Role-Basic
p5-Role-HasMessage
p5-Role-Identifiable
p5-Role-Tiny
p5-Rose-Object
p5-RT-Authen-ExternalAuth
p5-Safe-Hole
p5-Safe-Isa
p5-Scalar-Defer
p5-Scalar-List-Utils p5-Scalar-List-Utils: Update to 1.54 2020-03-22 21:21:45 +00:00
p5-Scalar-Util-Refcount
p5-Schedule-RateLimiter
p5-Scope-Guard
p5-Scope-Upper
p5-SDL librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
p5-Search-Elasticsearch
p5-Set-Array
p5-Set-IntSpan
p5-Set-Object
p5-Set-Scalar
p5-Shell-Config-Generate
p5-Shell-Guess
p5-Shell-Perl
p5-ShipIt
p5-Signal-Mask
p5-signatures
p5-Smart-Comments
p5-Software-License
p5-Sort-Key
p5-Sort-Maker
p5-Sort-Naturally
p5-Sort-Versions
p5-Specio
p5-Spiffy
p5-Spoon
p5-Storable
p5-Stream-Buffered
p5-strictures
p5-String-Escape
p5-String-Format
p5-String-PerlIdentifier
p5-String-Print
p5-String-Util
p5-Struct-Dumb
p5-Sub-Exporter
p5-Sub-Exporter-ForMethods
p5-Sub-Exporter-GlobExporter
p5-Sub-Exporter-Progressive
p5-Sub-Identify
p5-Sub-Info
p5-Sub-Install
p5-Sub-Installer
p5-Sub-Name
p5-Sub-Override
p5-Sub-Quote
p5-Sub-Uplevel
p5-subversion subversion: updated to 1.13.0 2020-02-24 16:10:33 +00:00
p5-SUPER
p5-SVN-Class
p5-SVN-Dump
p5-SVN-Mirror
p5-SVN-Notify
p5-SVN-Simple
p5-Symbol-Global-Name
p5-syntax
p5-Syntax-Keyword-Junction
p5-Sys-Syscall
p5-System-Command
p5-Taint-Util
p5-TAP-Formatter-HTML
p5-TAP-Harness-Archive
p5-Task-Weaken
p5-Tee
p5-Template-Plugin-Handy
p5-Template-Plugin-HashMerge
p5-Template-Plugin-ListMoreUtils
p5-Template-Plugin-ListUtil
p5-Template-Plugin-VMethods
p5-Term-Animation
p5-Term-ANSIColor
p5-Term-Cap
p5-Term-Encoding
p5-Term-ProgressBar
p5-Term-ProgressBar-Quiet
p5-Term-ProgressBar-Simple
p5-Term-Prompt
p5-Term-ReadKey
p5-Term-ReadLine
p5-Term-ReadLine-Perl
p5-Term-ReadLine-TTYtter
p5-Term-ReadPassword
p5-Term-Screen
p5-Term-Shell
p5-Term-ShellUI
p5-Term-Size
p5-Term-Size-Any
p5-Term-Size-Perl
p5-Term-Table
p5-Term-UI
p5-Test-Aggregate
p5-Test-API
p5-Test-Approx
p5-Test-Assertions
p5-Test-Base
p5-Test-BDD-Cucumber
p5-Test-Bits
p5-Test-CheckDeps
p5-Test-CheckManifest
p5-Test-Class
p5-Test-ClassAPI
p5-Test-CleanNamespaces
p5-Test-Cmd
p5-Test-Command-Simple
p5-Test-Compile
p5-Test-Continuous
p5-Test-CPAN-Meta
p5-Test-CPAN-Meta-JSON
p5-Test-CPAN-Meta-YAML
p5-Test-Deep
p5-Test-DependentModules
p5-Test-Differences
p5-Test-Dir
p5-Test-DistManifest
p5-Test-Distribution
p5-Test-EOL
p5-Test-Exception
p5-Test-Exit devel/p5-Test-Exit: import p5-Test-Exit-0.11 2020-03-21 23:36:28 +00:00
p5-Test-Expect
p5-Test-FailWarnings
p5-Test-Fatal
p5-Test-File
p5-Test-File-Contents
p5-Test-File-ShareDir
p5-Test-Fixture-DBIC-Schema
p5-Test-Harness
p5-Test-HexDifferences
p5-Test-HexString
p5-Test-HTTP-LocalServer
p5-Test-Identity
p5-Test-InDistDir
p5-Test-Inline
p5-Test-Inter
p5-Test-Kwalitee
p5-Test-LeakTrace
p5-Test-LectroTest
p5-Test-LoadAllModules
p5-Test-Log4perl
p5-Test-LongString
p5-Test-Manifest
p5-Test-Memory-Cycle
p5-Test-MinimumVersion
p5-Test-Mock-LWP
p5-Test-MockModule
p5-Test-MockObject
p5-Test-Modern
p5-Test-More-Behaviour
p5-Test-More-UTF8
p5-Test-Most
p5-Test-Needs
p5-Test-NiceDump
p5-Test-NoTabs
p5-Test-NoWarnings
p5-Test-Object
p5-Test-Output
p5-Test-Perl-Critic
p5-Test-Pod
p5-Test-Pod-Coverage
p5-Test-Pod-Spelling-CommonMistakes
p5-Test-POE-Client-TCP
p5-Test-POE-Server-TCP
p5-Test-Refcount
p5-Test-Reporter
p5-Test-Requires
p5-Test-Requires-Git
p5-Test-Roo
p5-Test-Script
p5-Test-Script-Run
p5-Test-SharedFork
p5-Test-Simple
p5-Test-Spec
p5-Test-Spelling
p5-Test-Stream
p5-Test-SubCalls
p5-Test-Taint
p5-Test-TempDir
p5-Test-TempDir-Tiny
p5-Test-TinyMocker
p5-Test-Toolbox
p5-Test-Trap
p5-Test-Unit
p5-Test-UseAllModules
p5-Test-utf8
p5-Test-Version
p5-Test-Warn
p5-Test-Warnings Update to 0.028 2020-01-07 13:10:20 +00:00
p5-Test-Weaken
p5-Test-Without-Module
p5-Test-WWW-Selenium
p5-Test-YAML-Meta
p5-Test-YAML-Valid
p5-Test2-Plugin-NoWarnings
p5-Test2-Suite
p5-TheSchwartz
p5-thrift
p5-Throwable
p5-Tie-Array-AsHash
p5-Tie-Array-Sorted
p5-Tie-Cache
p5-Tie-Cache-LRU
p5-Tie-Cache-LRU-Expires
p5-Tie-Cycle
p5-Tie-Function
p5-Tie-IxHash
p5-Tie-LLHash
p5-Tie-RefHash
p5-Tie-RefHash-Weak
p5-Tie-RegexpHash
p5-Tie-Simple
p5-Tie-ToObject
p5-Tree-DAG_Node
p5-Tree-R
p5-Tree-Simple
p5-Tree-Simple-VisitorFactory
p5-Try-Tiny
p5-TryCatch
p5-Type-Tiny Update to 1.006000 2019-12-06 13:38:53 +00:00
p5-Type-Tiny-XS
p5-Types-Serialiser
p5-UNIVERSAL-can
p5-UNIVERSAL-isa
p5-UNIVERSAL-moniker
p5-UNIVERSAL-require
p5-UUID-Tiny
p5-Variable-Magic
p5-VCP
p5-VCP-Dest-svk
p5-version
p5-Want
p5-WeakRef
p5-Wx-Perl-DataWalker librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
p5-XSLoader
p5-XXX Initial import of p5-XXX, which exports a function called XXX that you 2020-01-23 16:23:24 +00:00
p8-platform
palmpower
pango librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
pangomm librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
pangox-compat librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
papaya
pardiff *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
patch all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
patchelf
patchutils
pcc-libs
pccts
pcl-cvs
pcre pcre: updated to 8.44 2020-02-13 07:55:34 +00:00
pcre++ all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
pcre-ocaml Updated devel/pcre-ocaml to version 7.4.3. 2020-01-17 10:31:41 +00:00
pcre2 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
pdcurses all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
pear-Console_CommandLine
pedisassem
phabricator Bump PKGREVISION by changing of default PHP version. 2019-12-09 14:20:54 +00:00
php-composer devel/php-composer: Import version 1.10.1 2020-03-14 04:26:39 +00:00
php-gearman *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
php-gettext
php-gmp
php-igbinary
php-libawl
php-memcache
php-memcached
php-mode
php-opcache
php-pcntl
php-posix
php-pthreads
php-raphf
php-raphf2 Drop php71 support 2019-12-16 16:30:13 +00:00
php-shmop
php-sysvmsg
php-sysvsem
php-sysvshm
php-xcache
php-xdebug devel/php-xdebug: update to 2.9.4 2020-03-24 15:01:55 +00:00
phpstorm-bin
physfs all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
picasm Fix obvious code bug. Bump revision. 2020-03-18 17:52:39 +00:00
picopb
picotrace picotrace: Upgrade to 20200318 2020-03-18 15:45:41 +00:00
picp
picprg
pilrc *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
pipestatus
pkg-config all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
pkgconf
ply
pmccabe
poco Use newer OpenSSL APIs 2020-03-27 02:08:11 +00:00
polly all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
popt
poxml librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
prcs *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
ProjectCenter
protobuf protobuf: update to 3.11.4. 2020-03-22 18:28:43 +00:00
protobuf-c protobuf-c: remove unused patch 2020-01-17 21:10:04 +00:00
pstreams *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
pth all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
pthread-sem
pvs all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
pwlib *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:47:57 +00:00
py-absl-py Update py-absl-py to 0.9.0. 2020-01-14 12:14:30 +00:00
py-aiofiles
py-angr py-angr: update py-angr and dependencies (all from the angr project) to 8.20.1.7 2020-01-09 14:02:31 +00:00
py-anytree py-anytree: updated to 2.8.0 2020-01-15 09:03:39 +00:00
py-apipkg
py-appdirs
py-archinfo py-angr: update py-angr and dependencies (all from the angr project) to 8.20.1.7 2020-01-09 14:02:31 +00:00
py-argcomplete py-argcomplete: updated to 1.11.1 2020-02-11 17:21:26 +00:00
py-argh
py-argparse
py-args
py-astor py-astor: updated to 0.8.1 2019-12-16 10:18:54 +00:00
py-astroid
py-async-timeout
py-async_generator
py-at-spi
py-at-spi2 *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
py-atomicwrites
py-atpublic
py-attrs
py-automat py-automat: updated to 0.8.0 2020-01-23 10:20:22 +00:00
py-autopep8 py-autopep8: updated to 1.5 2020-01-20 19:50:33 +00:00
py-babel py-babel: updated to 2.8.0 2020-01-22 21:16:36 +00:00
py-backcall
py-backports py-backports: simplify Makefile 2019-12-13 09:08:01 +00:00
py-backports.functools_lru_cache
py-backports.os py-backports.os: added version 0.1.1 2019-12-13 09:40:06 +00:00
py-backports.shutil_get_terminal_size
py-backports_abc
py-bcolz
py-behave
py-binaryornot
py-blessings
py-blinker
py-boost py-boost: Prune -lutil on SunOS. 2020-01-24 15:36:39 +00:00
py-bugzilla
py-buildbot py-buildbot*: updated to 2.6.0 2020-02-19 19:07:18 +00:00
py-buildbot-console-view py-buildbot*: updated to 2.6.0 2020-02-19 19:07:18 +00:00
py-buildbot-grid-view py-buildbot*: updated to 2.6.0 2020-02-19 19:07:18 +00:00
py-buildbot-pkg py-buildbot*: updated to 2.6.0 2020-02-19 19:07:18 +00:00
py-buildbot-waterfall-view py-buildbot*: updated to 2.6.0 2020-02-19 19:07:18 +00:00
py-buildbot-worker py-buildbot*: updated to 2.6.0 2020-02-19 19:07:18 +00:00
py-buildbot-www py-buildbot-www: needs py-yaml during build 2020-03-23 09:44:44 +00:00
py-cached-property
py-cachetools py-cachetools: update to 4.0.0. 2020-01-09 14:20:28 +00:00
py-capstone
py-case
py-cffi Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
py-chai
py-characteristic
py-checker *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
py-cheetah py-cheetah: add PYVERSSUFFIX to binarites; cleanup 2020-02-01 19:56:21 +00:00
py-cheetah3 py-cheetah3: added version 3.2.4 2020-02-01 19:55:16 +00:00
py-cle py-angr: update py-angr and dependencies (all from the angr project) to 8.20.1.7 2020-01-09 14:02:31 +00:00
py-click py-click: updated to 7.1.1 2020-03-10 08:25:35 +00:00
py-click-log
py-click-threading
py-clickclick
py-clint
py-codestyle
py-cogapp
py-compizconfig librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
py-configargparse py-configargparse: updated to 1.0 2020-01-27 12:57:21 +00:00
py-configobj
py-configparser py-configparser: needs setuptools 2020-03-15 19:23:45 +00:00
py-constantly
py-constants
py-construct
py-contextlib2 py-contextlib2: updated to 0.6.0 2019-12-15 11:18:32 +00:00
py-contextvars py-contextvars: http -> https 2020-01-08 20:12:02 +00:00
py-cookiecutter py-cookiecutter: updated to 1.7.0 2020-01-14 21:37:58 +00:00
py-coverage py-coverage: updated to 5.0.4 2020-03-17 11:04:13 +00:00
py-cparser py-cparser: updated to 2.20 2020-03-04 18:24:55 +00:00
py-crayons
py-cubes
py-curses Always extract the full Python distfile for modules. 2020-01-08 13:44:41 +00:00
py-cursespanel Always extract the full Python distfile for modules. 2020-01-08 13:44:41 +00:00
py-curtsies
py-cyordereddict
py-cython py-cython: updated to 0.29.15 2020-02-18 16:44:22 +00:00
py-d2to1
py-daemon py-daemon: updated to 2.2.4 2019-12-05 14:51:01 +00:00
py-daemonize
py-darcsver
py-dash py-dash: updated to 4.7.6 2019-12-14 10:52:18 +00:00
py-ddt
py-decorator
py-Deprecated devel/py-Deprecated: Import version 1.2.7 2020-01-05 17:53:53 +00:00
py-deprecation
py-dialog *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
py-dialog2 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
py-distorm3
py-distro
py-doc8
py-docopt
py-docstyle
py-doctor
py-dogpile-cache
py-dotenv py-dotenv: updated to 0.12.0 2020-03-21 19:41:55 +00:00
py-dulwich py-dulwich: updated to 0.19.15 2020-02-01 20:45:10 +00:00
py-editorconfig-core all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-entrypoints
py-enum34 py-enum34: updated to 1.1.9 2020-02-25 08:56:41 +00:00
py-exam
py-execnet
py-expressions
py-extras
py-extratools
py-fakefs py-fakefs: updated to 3.7.2 2020-03-03 05:58:24 +00:00
py-faker py-faker: updated to 4.0.1 2020-02-24 16:20:14 +00:00
py-falcon all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-fann2
py-fasteners
py-fastimport
py-filebytes
py-filechunkio
py-filelock
py-fixtures
py-flake8 devel/py-flake8: fix TEST_DEPENDS for py27 2020-03-15 13:45:07 +00:00
py-flake8-docstrings
py-flake8-import-order
py-flake8-polyfill
py-flakes
py-flaky
py-flexmock
py-flufl.i18n
py-flufl.lock
py-flufl.testing
py-freezegun py-freezegun: updated to 0.3.15 2020-02-19 09:38:03 +00:00
py-func_timeout py-func_timeout: fix PLIST for python 2.x 2020-03-12 07:40:58 +00:00
py-funcparserlib
py-funcsigs
py-functools32
py-future py-future: provide correct PLIST 2019-12-15 11:13:37 +00:00
py-futures
py-game
py-gcovr
py-generate
py-gflags
py-gitinspector
py-gitinspector-devel
py-gobject *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
py-gobject-shared Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
py-gobject3 py-gobject3*: update to 3.36.0: 2020-03-22 18:36:17 +00:00
py-gobject3-common py-gobject3*: update to 3.36.0: 2020-03-22 18:36:17 +00:00
py-google-api-core devel/py-google-api-core: import py-google-api-core-1.16.0 2020-03-16 14:27:25 +00:00
py-google-apputils
py-googleapis-common-protos devel/py-googleapis-common-protos: import py-googleapis-common-protos-1.51.0 2020-03-16 14:16:43 +00:00
py-grako
py-greenlet
py-guppy3 py-guppy3: updated to 3.0.9 2019-12-15 14:49:38 +00:00
py-h5py all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-hamcrest
py-hash
py-hg-evolve
py-hg-fastimport
py-hg-git all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
py-hglib
py-hglist
py-hgnested
py-hgtools
py-hyperscan
py-hypothesis py-hypothesis: updated to 4.53.3 2019-12-15 11:28:53 +00:00
py-idle Always extract the full Python distfile for modules. 2020-01-08 13:44:41 +00:00
py-importlib-metadata *: get py-zipp via versioned_dependencies.mk 2020-03-12 07:35:22 +00:00
py-importlib-resources py-importlib-resources: updated to 1.3.1 2020-03-15 23:14:40 +00:00
py-incremental
py-InlineEgg
py-intervaltree
py-iowait
py-ipaddr
py-ipykernel py-ipykernel: updated to 5.1.4 2020-01-28 08:04:20 +00:00
py-ipython py-ipython: updated to 7.13.0 2020-03-03 05:56:20 +00:00
py-ipython5 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-ipython_genutils all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-iso-639
py-iso3166 py-iso3166: updated to 1.0.1 2020-01-16 10:08:31 +00:00
py-isort
py-jaraco.classes
py-jaraco.functools
py-jaraco.itertools py-jaraco.itertools: only for python >= 3.6 2020-03-12 07:45:44 +00:00
py-jaraco_util devel/py-jaraco_util: remove nonexistent file from REPLACE_PYTHON 2020-03-22 22:36:02 +00:00
py-jersey
py-joblib py-joblib: updated to 0.14.1 2019-12-14 10:54:16 +00:00
py-jupyter_client
py-jupyter_core py-jupyter_core: updated to 4.6.3 2020-03-17 20:13:36 +00:00
py-kafka-python
py-kaitaistruct all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-kjbuckets *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
py-lama
py-lazr.config
py-lazr.delegates
py-lazy-object-proxy
py-libevent-rpcgen
py-libmc
py-limits py-limits: updated to 1.4.1 2020-01-16 10:08:57 +00:00
py-line_profiler devel/py-line_profiler: Fix build with python38 2019-12-18 04:49:47 +00:00
py-linecache2
py-llvmlite py-llvmlite: updated to 0.31.0 2020-01-14 16:22:33 +00:00
py-lockfile
py-logan
py-logbook py-logbook: updated to 1.5.3 2020-01-03 11:49:58 +00:00
py-logilab-astng
py-logilab-common
py-lru-dict
py-lupa
py-macholib py-macholib: updated to 1.14 2020-03-15 22:58:14 +00:00
py-mako py-mako: updated to 1.1.2 2020-03-02 10:34:12 +00:00
py-mando
py-manticore
py-mccabe
py-memcached
py-memory-profiler
py-mercurial py-mercurial: update to 5.3.1. 2020-03-11 09:29:10 +00:00
py-minimock
py-mixbox
py-mmh3
py-mock
py-modulegraph
py-more-itertools py-more-itertools: updated to 8.2.0 2020-02-01 20:59:25 +00:00
py-more-itertools2
py-mox
py-msgpack
py-multipledispatch
py-newt
py-nose
py-nose-exclude
py-nose2 py-nose2: updated to 0.9.2 2020-02-02 05:59:01 +00:00
py-nosexcover
py-ode *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
py-olefile all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-open-vcdiff
py-Optik *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
py-ordered-set
py-oset
py-packaging
py-parameterized py-parameterized: fix building 2019-11-29 09:46:36 +00:00
py-ParamUnittest
py-path.py
py-pathlib
py-pathlib2
py-pathspec py-pathspec: updated to 0.7.0 2020-01-08 15:20:18 +00:00
py-pbr py-pbr: updated to 5.4.4 2020-02-12 07:54:23 +00:00
py-pebble py-pebble: updated to 4.5.0 2020-02-16 20:36:09 +00:00
py-pep8
py-pexpect py-pexpect: updated to 4.8.0 2020-01-22 21:24:57 +00:00
py-pip
py-pkgconfig
py-pkginfo
py-pluggy py-pluggy: update to 0.13.1nb1. 2020-03-12 07:30:48 +00:00
py-ply
py-polib
py-pqueue
py-prefixspan
py-pretend
py-prompt_toolkit
py-prompt_toolkit2 py-prompt_toolkit2: updated to 3.0.5 2020-03-30 13:07:12 +00:00
py-proteus all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
py-protobuf {py-}protobuf: updated to 3.11.3 2020-02-06 15:57:41 +00:00
py-py py-py: updated to 1.8.1 2020-01-03 12:33:19 +00:00
py-py2app
py-pydispatcher *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
py-pyelftools
py-pygit2 py-pygit2: update to 1.1.1nb1. 2020-03-19 17:03:51 +00:00
py-pylint devel/py-pylint: fix typo in test program filename 2020-03-22 22:50:52 +00:00
py-pylint-plugin-utils
py-Pympler
py-pyobjc
py-pyobjc-core Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
py-pyobjc-framework-Accounts
py-pyobjc-framework-AddressBook
py-pyobjc-framework-AppleScriptKit
py-pyobjc-framework-AppleScriptObjC
py-pyobjc-framework-ApplicationServices
py-pyobjc-framework-Automator
py-pyobjc-framework-AVFoundation
py-pyobjc-framework-AVKit
py-pyobjc-framework-CalendarStore
py-pyobjc-framework-CFNetwork
py-pyobjc-framework-CloudKit
py-pyobjc-framework-Cocoa
py-pyobjc-framework-Collaboration
py-pyobjc-framework-ColorSync
py-pyobjc-framework-Contacts
py-pyobjc-framework-ContactsUI
py-pyobjc-framework-CoreBluetooth
py-pyobjc-framework-CoreData
py-pyobjc-framework-CoreLocation
py-pyobjc-framework-CoreML
py-pyobjc-framework-CoreServices
py-pyobjc-framework-CoreSpotlight
py-pyobjc-framework-CoreText
py-pyobjc-framework-CoreWLAN
py-pyobjc-framework-CryptoTokenKit
py-pyobjc-framework-DictionaryServices
py-pyobjc-framework-DiskArbitration
py-pyobjc-framework-EventKit
py-pyobjc-framework-ExceptionHandling
py-pyobjc-framework-ExternalAccessory
py-pyobjc-framework-FinderSync
py-pyobjc-framework-FSEvents
py-pyobjc-framework-GameCenter
py-pyobjc-framework-GameController
py-pyobjc-framework-GameKit
py-pyobjc-framework-GameplayKit
py-pyobjc-framework-ImageCaptureCore
py-pyobjc-framework-InputMethodKit
py-pyobjc-framework-InstallerPlugins
py-pyobjc-framework-InstantMessage
py-pyobjc-framework-Intents
py-pyobjc-framework-IOSurface
py-pyobjc-framework-iTunesLibrary
py-pyobjc-framework-LatentSemanticMapping
py-pyobjc-framework-LaunchServices
py-pyobjc-framework-libdispatch
py-pyobjc-framework-LocalAuthentication
py-pyobjc-framework-MapKit
py-pyobjc-framework-MediaAccessibility
py-pyobjc-framework-MediaLibrary
py-pyobjc-framework-MediaPlayer
py-pyobjc-framework-MetalKit
py-pyobjc-framework-ModelIO
py-pyobjc-framework-MultipeerConnectivity
py-pyobjc-framework-NetFS
py-pyobjc-framework-NetworkExtension
py-pyobjc-framework-NotificationCenter
py-pyobjc-framework-OpenDirectory
py-pyobjc-framework-Photos
py-pyobjc-framework-PhotosUI
py-pyobjc-framework-PreferencePanes
py-pyobjc-framework-PubSub
py-pyobjc-framework-QTKit
py-pyobjc-framework-Quartz
py-pyobjc-framework-SafariServices
py-pyobjc-framework-SceneKit
py-pyobjc-framework-ScreenSaver
py-pyobjc-framework-ScriptingBridge
py-pyobjc-framework-SearchKit
py-pyobjc-framework-Security
py-pyobjc-framework-SecurityInterface
py-pyobjc-framework-ServiceManagement
py-pyobjc-framework-Social
py-pyobjc-framework-SpriteKit
py-pyobjc-framework-StoreKit
py-pyobjc-framework-SyncServices
py-pyobjc-framework-SystemConfiguration
py-pyobjc-framework-Vision
py-pyobjc-framework-WebKit
py-pyparsing py-pyparsing: updated to 2.4.6 2020-01-03 12:47:22 +00:00
py-Pyro py-Pyro: updated to 4.77 2019-12-11 14:45:17 +00:00
py-pyrsistent py-pyrsistent: updated to 0.15.7 2020-01-22 19:14:41 +00:00
py-pysha3
py-pysvn *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
py-pyte Needs py-test-runner. 2019-12-19 22:12:57 +00:00
py-pytemplate
py-python-slugify
py-pyutil
py-pyvex Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
py-queuelib
py-quixote
py-radon py-radon: 4.1.0 2020-02-02 06:06:11 +00:00
py-random2 py-random2: add version 1.0.1 2019-11-27 21:12:39 +00:00
py-rauth
py-readlike
py-readline Always extract the full Python distfile for modules. 2020-01-08 13:44:41 +00:00
py-rednose
py-reparser
py-repoze.lru
py-requests py-requests: updated to 2.23.0 2020-02-21 06:42:59 +00:00
py-requests-file
py-requests-ftp
py-requests-futures
py-requests-mock
py-requests-toolbelt
py-requests-unixsocket py-requests-unixsocket: needs py-pbr during build 2020-03-23 10:21:41 +00:00
py-restructuredtext_lint
py-retry_decorator
py-rope
py-rply
py-ruamel-base
py-ruamel-ordereddict py-ruamel-ordereddict: updated to 0.4.14 2020-01-03 08:27:43 +00:00
py-ruamel-yaml py-ruamel-yaml: updated to 0.16.10 2020-02-19 09:41:50 +00:00
py-ruamel-yaml-clib py-ruamel-yaml-clib: Import py-ruamel-yaml-clib-0.2.0 as devel/py-ruamel-yaml-clib 2019-12-17 10:05:23 +00:00
py-scandir
py-selectors2
py-semantic_version py-semantic_version: updated to 2.8.4 2020-03-20 09:31:27 +00:00
py-serpent
py-setuptools py-setuptools: update to 44.0.0. 2020-01-08 17:32:25 +00:00
py-setuptools-rust devel/py-setuptools-rust: Import version 0.10.6 2019-12-16 01:12:28 +00:00
py-setuptools_scm py-setuptools_scm: updated to 3.5.0 2020-02-14 10:12:01 +00:00
py-setuptools_scm_git_archive
py-setuptools_trial
py-simplegeneric
py-singledispatch
py-sortedcontainers
py-Spans
py-speaklater
py-stem py-stem: update to 1.8.0. 2020-01-30 23:32:23 +00:00
py-stevedore py-stevedore: updated to 1.32.0 2020-02-12 07:56:54 +00:00
py-stompclient
py-stsci.distutils
py-subprocess32
py-subversion subversion: updated to 1.13.0 2020-02-24 16:10:33 +00:00
py-subvertpy *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
py-sure
py-sysctl
py-termcolor
py-test
py-test-assume
py-test-asyncio
py-test-cache
py-test-cov
py-test-fixture-config
py-test-flake8
py-test-forked
py-test-isort
py-test-localserver
py-test-mock py-test-mock: updated to 2.0.0 2020-01-27 13:05:07 +00:00
py-test-pylint
py-test-pythonpath
py-test-random-order py-test-random-order: added version 1.0.4 2020-01-29 21:43:02 +00:00
py-test-randomly py-test-randomly: updated to 3.1.0 2019-12-13 11:20:31 +00:00
py-test-relaxed
py-test-rerunfailures py-test-rerunfailures: updated 8.0 2019-12-16 10:25:11 +00:00
py-test-runner
py-test-shutil
py-test-sugar
py-test-testmon
py-test-timeout py-test-timeout: updated to 1.3.4 2020-01-07 08:48:43 +00:00
py-test-utils
py-test-virtualenv
py-test-watch
py-test-xdist py-test-xdist: updated to 1.31.0 2020-01-03 11:44:04 +00:00
py-test-xprocess py-test-xprocess: needs py-setuptools_scm during build 2020-03-23 09:48:37 +00:00
py-test5 py-test5: updated to 5.3.5 2020-01-30 19:44:13 +00:00
py-testpath
py-testrepository
py-testresources
py-testscenarios
py-testtools
py-thrift
py-tlsh
py-toolz
py-tortoisehg librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
py-tox
py-traceback2
py-traitlets all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
py-treq
py-tryton py-tryton*: put python-2.7 restriction only in those packages where it belongs 2020-03-13 20:20:48 +00:00
py-trytond py-tryton*: put python-2.7 restriction only in those packages where it belongs 2020-03-13 20:20:48 +00:00
py-txaio py-txaio: updated to 20.3.1 2020-03-23 10:06:24 +00:00
py-txgithub
py-txrequests
py-typed-ast py-typed-ast: updated to 1.4.1 2020-01-16 08:25:25 +00:00
py-typing
py-typing-extensions
py-unit *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
py-unitgui *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
py-unittest-mixins
py-unittest2
py-unittest2pytest
py-urwid
py-usb
py-uuid
py-uvloop
py-vcversioner
py-vine
py-virtualenv py-virtualenv: match PLIST to 16.7.9 update 2020-01-23 22:59:42 +00:00
py-visitor
py-wcwidth py-wcwidth: updated to 0.1.9 2020-03-30 13:06:05 +00:00
py-wheel py-wheel: updated to 0.34.2 2020-02-01 20:19:44 +00:00
py-whichcraft
py-windbg
py-wrapt py-wrapt: updated to 1.12.1 2020-03-17 20:05:53 +00:00
py-xdg py-xdg: Update to 0.26 2020-03-25 11:30:48 +00:00
py-xdis py-xdis: updated to 4.2.4 2020-03-31 16:26:13 +00:00
py-xopen
py-zanata-python-client
py-zc.lockfile
py-zconfig
py-zope.deferredimport
py-zope.deprecation
py-zope.exceptions
py-zope.hookable
py-zope.testing
py-ZopeComponent
py-ZopeConfiguration
py-ZopeEvent
py-ZopeI18NMessageid
py-ZopeInterface
py-ZopeSchema
py-ZopeTestrunner
pycharm-bin
python-mode
pythontidy
qbzr
qconf librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
qjson *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
qof *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
qore-uuid-module *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
qtscriptgenerator *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
quilt all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
R-assertthat
R-BH
R-bindr
R-bit
R-bit64
R-blob
R-callr (devel/R-callr) Updated to 3.4.1, 'make test' does not pass yet 2020-01-26 14:07:54 +00:00
R-checkmate
R-cli
R-cliapp (devel/R-cliapp) Fix [check-interpreter.mk] issue. 2020-01-26 14:02:18 +00:00
R-clipr
R-covr (devel/R-covr) Updated from 3.3.1 to 3.4.0 2020-01-13 10:17:24 +00:00
R-crayon
R-cyclocomp (devel/R-cyclocomp) import R-cyclocomp-1.1.0 2020-02-10 14:18:23 +00:00
R-desc
R-devtools Add missing DEPENDS+= R-covr-[0-9]* 2020-02-13 13:22:52 +00:00
R-evaluate
R-fansi
R-fs
R-git2r
R-glue
R-ini
R-inline
R-IRdisplay
R-IRkernel
R-iterators
R-lazyeval
R-lintr (devel/R-lintr) Convert TEST_DEPENDS to DEPENDS 2020-02-13 13:25:05 +00:00
R-magrittr
R-memoise
R-mockery devel/R-mockery: import R-mockery-0.4.2 2020-01-13 09:17:00 +00:00
R-pkgbuild (devel/R-pkgbuild) Updated from 1.0.4 to 1.0.6 2020-02-11 00:00:16 +00:00
R-pkgconfig
R-pkgload
R-plogr
R-prettycode devel/R-prettycode: import R-prettycode-1.1.0 2020-01-13 01:51:57 +00:00
R-proto
R-purrr
R-R6
R-rcmdcheck
R-Rcpp devel/R-Rcpp: remove nonexistent dependency R-rbenchmark 2020-03-15 13:34:37 +00:00
R-rematch
R-remotes
R-repr
R-rex
R-rio
R-rlang (devel/R-rlang) Updated 0.4.0 to 0.4.4 (R-testthat needs new version) 2020-02-15 06:04:41 +00:00
R-roxygen2
R-rprojroot
R-RUnit devel/R-RUnit: import R-RUnit-0.4.32 2020-01-11 07:05:15 +00:00
R-rversions devel/R-rversions: import R-rversions-2.0.1 2020-02-09 11:56:43 +00:00
R-sessioninfo
R-tcltk2
R-testthat (devel/R-testthat) Fix build, two DEPENDS+ were missing 2020-02-22 08:12:08 +00:00
R-tidyselect
R-usethis
R-uuid
R-whisker
R-withr
R-xfun
radamsa
radare2 *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
radare2-cutter librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
ragel ragel: fix unportable test(1) operator in test run script 2020-03-12 17:36:35 +00:00
rainbow-delimiters-el
range-v3 range-v3: Don't install modulemap file 2020-03-31 10:49:49 +00:00
rapidsvn librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
ratfor
RBTools
rcs
rdp all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
re2 re2: Update to 2020-01-01 2020-02-26 16:20:43 +00:00
re2c all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
readline
rebar
rebar3
refinecvs
remake *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
Renaissance
reposurgeon
rgbds
ropper
roundup *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
rox-lib *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
rpc2
rscode *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
rsltc
rt-mysql
rt-pgsql
rt4
rttr all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
rubigen Bump PKGREVISION 2020-03-20 15:08:56 +00:00
ruby-abstract
ruby-activejob51 devel/ruby-activejob51: update to 5.1.7 2020-03-20 15:26:27 +00:00
ruby-activejob52 devel/ruby-activejob52: update to 5.2.4.2 2020-03-20 15:38:57 +00:00
ruby-activejob60 Restrict some more rails packages to Ruby 2.5+ 2020-03-21 23:51:40 +00:00
ruby-activemodel51 devel/ruby-activemodel51: update to 5.1.7 2020-03-20 15:25:50 +00:00
ruby-activemodel52 devel/ruby-activemodel52: update to 5.2.4.2 2020-03-20 15:38:30 +00:00
ruby-activemodel60 Restrict some more rails packages to Ruby 2.5+ 2020-03-21 23:51:40 +00:00
ruby-activestorage52 devel/ruby-activestorage52: update to 5.2.4.2 2020-03-20 15:41:59 +00:00
ruby-activestorage60 Restrict some more rails packages to Ruby 2.5+ 2020-03-21 23:51:40 +00:00
ruby-activesupport51 devel/ruby-activesupport51: update to 5.1.7 2020-03-20 15:25:14 +00:00
ruby-activesupport52 devel/ruby-activesupport52: update to 5.2.4.2 2020-03-20 15:37:38 +00:00
ruby-activesupport60 Restrict some more rails packages to Ruby 2.5+ 2020-03-21 23:51:40 +00:00
ruby-algorithms
ruby-amstd
ruby-assistance
ruby-atk *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
ruby-backports devel/ruby-backports: update to 3.17.0 2020-03-08 13:28:18 +00:00
ruby-bindata devel/ruby-bindata: update to 2.4.6 2020-03-08 13:29:54 +00:00
ruby-bit-struct
ruby-blankslate
ruby-bsearch
ruby-byaccr
ruby-byebug devel/ruby-byebug: update to 11.1.1 2020-02-05 14:42:16 +00:00
ruby-c21e devel/ruby-c21e: update to update to 2.0.0 2020-01-18 16:33:30 +00:00
ruby-celluloid
ruby-celluloid-essentials
ruby-celluloid-extras
ruby-celluloid-fsm
ruby-celluloid-pool
ruby-celluloid-supervision
ruby-classy_hash
ruby-cmd
ruby-concurrent-ruby devel/ruby-concurrent-ruby: update to 1.1.6 2020-03-08 13:32:01 +00:00
ruby-contracts
ruby-cucumber-core devel/ruby-cucumber-core: update to 6.0.0 2020-03-15 17:27:54 +00:00
ruby-cucumber-expressions devel/ruby-cucumber-expressions: update to 8.3.0. 2020-01-18 15:20:26 +00:00
ruby-cucumber-messages devel/ruby-cucumber-messages: update to 10.0.3 2020-03-15 17:24:53 +00:00
ruby-cucumber-tag_expressions devel/ruby-cucumber-tag_expressions: update to 2.0.2 2020-01-18 15:25:55 +00:00
ruby-cucumber-wire devel/ruby-cucumber-wire: update to 2.0.1 2020-03-23 15:33:40 +00:00
ruby-curses devel/ruby-curses: update to 1.3.2 2020-01-16 14:30:24 +00:00
ruby-daemon_controller
ruby-deep_merge devel/ruby-deep_merge: add version 1.2.1 package 2020-01-16 13:58:20 +00:00
ruby-delayer ruby-delayer: update to 1.1.2. 2020-02-16 04:00:52 +00:00
ruby-delayer-deferred ruby-delayer-deferred: update to 2.1.3. 2020-02-16 03:58:28 +00:00
ruby-dep
ruby-deprecated
ruby-dhaka
ruby-diva devel/ruby-diva: add USE_LANGUAGES 2020-03-23 15:34:38 +00:00
ruby-docile
ruby-eet *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
ruby-equatable
ruby-eventmachine *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
ruby-extlib
ruby-facade
ruby-fast_gettext devel/ruby-fast_gettext: update to 2.0.2 2020-03-08 13:36:38 +00:00
ruby-ffi Revbump packages depending on libffi after .so version change. 2020-03-08 16:42:24 +00:00
ruby-ffi-compiler all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
ruby-ffi-yajl devel/ruby-ffi-yajl: update to 2.3.3 2020-01-20 15:33:37 +00:00
ruby-fiddle devel/ruby-fiddle: reset PKGREVISION 2020-04-01 15:29:11 +00:00
ruby-filesize
ruby-flexmock
ruby-forwardable-extended
ruby-gemcutter
ruby-getopt
ruby-gettext ruby-gettext doesn't support Ruby 2.4. 2020-03-20 00:57:59 +00:00
ruby-gettext-activerecord Bump PKGREVISION 2020-03-20 15:08:08 +00:00
ruby-gettext-rails Bump PKGREVISION 2020-03-20 15:08:08 +00:00
ruby-gettext-setup ruby-gettext doesn't support Ruby 2.4. 2020-03-20 00:57:59 +00:00
ruby-gettext_i18n_rails devel/ruby-gettext_i18n_rails: update to 1.8.1 2020-03-08 13:48:34 +00:00
ruby-gio2 *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
ruby-glib2 *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
ruby-globalid Bump PKGREVISION 2020-03-20 15:08:56 +00:00
ruby-gobject-introspection *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
ruby-google-protobuf devel/ruby-google-protobuf: update to 3.11.4 2020-03-08 14:15:48 +00:00
ruby-hashery all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
ruby-heckle
ruby-highline
ruby-hike
ruby-hike1
ruby-hocon devel/ruby-hocon: update to 1.3.0 2020-01-16 15:31:19 +00:00
ruby-i18n devel/ruby-i18n: update to 1.8.2 2020-02-05 14:55:14 +00:00
ruby-i18n12
ruby-idn
ruby-iniparse devel/ruby-iniparse: add USE_LANGUAGES 2020-03-08 14:19:09 +00:00
ruby-inline
ruby-instance_storage
ruby-io-like devel/ruby-io-like: update to 0.3.1 2020-03-08 14:20:32 +00:00
ruby-kgio regen. I hope I'm not wrong 2020-01-23 13:35:45 +00:00
ruby-lazy_priority_queue
ruby-libyajl2
ruby-little-plugger
ruby-locale Add USE_LANGUAGES 2020-03-23 15:36:04 +00:00
ruby-locale-rails
ruby-lockfile
ruby-log4r
ruby-logging
ruby-loquacious
ruby-marcel
ruby-memcache
ruby-memoist Add USE_LANGUAGES 2020-03-23 15:36:04 +00:00
ruby-mercenary ruby-mercenary: revert update to 0.4.0, jekyll insists on <0.4 2020-01-27 12:04:13 +00:00
ruby-metaclass
ruby-metaid
ruby-metasm devel/ruby-metasm: update to 1.0.4 2020-03-23 15:42:31 +00:00
ruby-middleware devel/ruby-middleware: add PLIST 2020-01-18 16:11:29 +00:00
ruby-minitest devel/ruby-minitest: update to 5.14.0 2020-01-16 15:35:43 +00:00
ruby-mixlib-authentication devel/ruby-mixlib-authentication: update to 3.0.6 2020-03-24 17:48:28 +00:00
ruby-mixlib-cli devel/ruby-mixlib-cli: update to 2.1.5 2020-03-24 17:49:49 +00:00
ruby-mixlib-config devel/ruby-mixlib-config: update to 3.0.6 2020-03-24 17:46:11 +00:00
ruby-mixlib-log devel/ruby-mixlib-log: update to 3.0.8 2020-03-24 17:51:09 +00:00
ruby-mixlib-shellout devel/ruby-mixlib-shellout: update to 3.0.9 2020-03-24 17:52:35 +00:00
ruby-mkrf
ruby-mocha devel/ruby-mocha: update to 1.11.2 2020-01-16 15:37:57 +00:00
ruby-mode
ruby-msgpack devel/ruby-msgpack: update to 1.3.3 2020-02-05 14:56:57 +00:00
ruby-multi_test
ruby-mustache
ruby-native-package-installer
ruby-ncurses
ruby-necromancer devel/ruby-necromancer: update to 0.6.0 2020-03-15 17:09:41 +00:00
ruby-needle
ruby-nenv
ruby-octokit devel/ruby-octokit: update to 4.17.0 2020-03-15 15:55:53 +00:00
ruby-ole
ruby-open4
ruby-pango librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
ruby-parseconfig
ruby-parser devel/ruby-parser: update to 3.14.2 2020-03-08 14:42:38 +00:00
ruby-parsetree
ruby-parslet devel/ruby-parslet: update to 2.0.0 2020-03-08 14:45:06 +00:00
ruby-pastel devel/ruby-pastel: add version 0.7.3 package 2020-01-19 14:37:02 +00:00
ruby-pathname2
ruby-pathutil devel/ruby-pathutil: update to 0.16.2 2020-03-08 14:51:11 +00:00
ruby-pkg-config devel/ruby-pkg-config: update to 1.4.1 2020-03-08 14:52:54 +00:00
ruby-polyglot
ruby-posix-spawn
ruby-power_assert devel/ruby-power_assert: update to 1.1.7 2020-03-23 16:01:57 +00:00
ruby-priority-queue
ruby-protobuf-cucumber Bump PKGREVISION 2020-03-20 15:09:58 +00:00
ruby-racc devel/ruby-racc: update to 1.4.6 2020-02-05 15:10:14 +00:00
ruby-railties51 devel/ruby-railties51: update to 5.1.7 2020-03-20 15:30:09 +00:00
ruby-railties52 devel/ruby-railties52: update to 5.2.4.2 2020-03-20 15:43:05 +00:00
ruby-railties60 Restrict some more rails packages to Ruby 2.5+ 2020-03-21 23:51:40 +00:00
ruby-randexp
ruby-rb-fsevent
ruby-rb-inotify devel/ruby-rb-inotify: update to 0.10.1 2020-03-08 15:08:37 +00:00
ruby-rb-kqueue
ruby-rbtree
ruby-rcsparse
ruby-rd-mode
ruby-readline Drop support for ruby22. 2020-03-15 16:42:10 +00:00
ruby-redmine devel/ruby-redmine: update to 4.0.6 2020-03-15 16:00:55 +00:00
ruby-redmine-flatly-light-theme devel/ruby-redmine-flatly-light-theme: update to 0.2.4 2020-03-15 16:23:57 +00:00
ruby-redmine-gitmike-theme devel/ruby-redmine-gitmike-theme: update to 1.2.0 2020-03-15 16:28:26 +00:00
ruby-redmine-minimalflat-theme
ruby-redmine-red-andy-theme
ruby-redmine_bootstrap_kit devel/ruby-redmine_bootstrap_kit: avoid using obsolete rdoc options 2020-03-30 10:24:33 +00:00
ruby-redmine_code_review all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ruby-redmine_jenkins
ruby-redmine_lightbox2
ruby-redmine_startpage
ruby-redmine_theme_changer all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ruby-redmine_work_time
ruby-ref
ruby-regexp_parser devel/ruby-regexp_parser: update to 1.7.0 2020-03-08 15:12:55 +00:00
ruby-rgl (devel/ruby-rgl) Fix build by updating PLIST 2019-12-28 00:32:23 +00:00
ruby-ronn
ruby-rspec
ruby-rspec-core devel/ruby-rspec-core: udpate to 3.9.1 2020-01-16 15:45:20 +00:00
ruby-rspec-expectations devel/ruby-rspec-expectations: update to 3.9.1 2020-03-15 17:01:52 +00:00
ruby-rspec-its
ruby-rspec-logsplit
ruby-rspec-mocks devel/ruby-rspec-mocks: update to 3.9.1 2020-01-16 15:47:49 +00:00
ruby-rspec-rails Bump PKGREVISION 2020-03-20 15:08:56 +00:00
ruby-rspec-support devel/ruby-rspec-support: update to 3.9.2 2020-01-16 15:43:46 +00:00
ruby-rspec_junit_formatter devel/ruby-rspec_junit_formatter: revert previous update 2020-02-06 01:12:32 +00:00
ruby-ruby2_keywords devel/ruby-ruby2_keywords: update to 0.0.2 2020-01-16 15:59:49 +00:00
ruby-rugged devel/ruby-rugged: update to 0.99.0 2020-03-15 17:05:59 +00:00
ruby-SDL
ruby-semantic_puppet
ruby-setup
ruby-sexp-processor devel/ruby-sexp-processor: update to 4.14.1 2020-03-08 15:18:45 +00:00
ruby-shoulda-context
ruby-shoulda-matchers devel/ruby-shoulda-matchers: update to 3.1.3 2020-03-20 15:12:43 +00:00
ruby-simple_uuid
ruby-simplecov devel/ruby-simplecov: update to 0.18.5 2020-03-08 15:25:04 +00:00
ruby-simplecov-html devel/ruby-simplecov-html: update to 0.12.2 2020-03-08 15:21:48 +00:00
ruby-simpleidn
ruby-spruz
ruby-stomp devel/ruby-stomp: update to 1.4.9 2020-01-16 16:02:07 +00:00
ruby-stream
ruby-subexec
ruby-subversion subversion: updated to 1.13.0 2020-02-24 16:10:33 +00:00
ruby-templater
ruby-term-ansicolor
ruby-termcolor
ruby-test-spec
ruby-test-unit devel/ruby-test-unit: update to 3.3.5 2020-01-16 16:04:14 +00:00
ruby-test-unit-notify
ruby-thor devel/ruby-thor: update to 1.0.1 2020-03-24 18:30:19 +00:00
ruby-thrift
ruby-thrift_client all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
ruby-tins devel/ruby-tins: update to 1.24.1 2020-03-08 15:37:23 +00:00
ruby-tomlrb devel/ruby-tomlrb: update to 1.3.0 2020-03-23 15:56:26 +00:00
ruby-tty-box devel/ruby-tty-box: add version 0.5.0 package 2020-01-19 14:46:25 +00:00
ruby-tty-color devel/ruby-tty-color: update to 0.5.1 2020-03-08 15:29:52 +00:00
ruby-tty-cursor devel/ruby-tty-cursor: update to 0.7.1 2020-03-08 15:31:16 +00:00
ruby-tty-prompt devel/ruby-tty-prompt: update to 0.21.0 2020-03-15 17:12:59 +00:00
ruby-tty-reader devel/ruby-tty-reader: add version 0.7.0 package 2020-01-19 14:53:44 +00:00
ruby-tty-screen devel/ruby-tty-screen: update to 0.7.1 2020-03-08 15:32:22 +00:00
ruby-turn
ruby-uglifier
ruby-uuidtools
ruby-validatable
ruby-wisper devel/ruby-wisper: add version 2.0.1 package 2020-01-19 15:01:47 +00:00
ruby-wmi-lite devel/ruby-wmi-lite: update to 1.0.5 2020-03-08 15:39:43 +00:00
ruby-zeitwerk devel/ruby-zeitwerk: update to 2.3.0 2020-03-23 16:06:45 +00:00
ruby-zookeeper
ruby2ruby
rubymine-bin
rudiments *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
rvm
sablecc
samurai devel/samurai: Update to 1.0 2020-01-01 01:04:28 +00:00
scintilla *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
scmcvs all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
scons scons: updated to 3.1.2 2020-01-09 11:52:35 +00:00
sdcc *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
sdcc3 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
SDL *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
SDL-intro-en
SDL-intro-ko
SDL2 SDL2: Remove CONFIGURE_ARGS duplicate 2020-03-30 10:18:48 +00:00
SDL_gfx
SDL_Pango librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
SDL_ttf all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
SDLmm all: migrate some SourceForge homepage URLs back from https to http 2020-01-26 05:26:08 +00:00
semantic *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
semi
sfslite sfslite: not -Werror -safe with GCC 9.3.0 2020-03-16 00:00:45 +00:00
sgb devel/sgb: Update HOMEPAGE 2020-01-29 16:04:04 +00:00
shtk
shunit2
silc-toolkit
skalibs Update to 2.9.1.0. From the changelog: 2019-12-15 19:03:51 +00:00
slib devel/slib: Follow redirect for HOMEPAGE/MSSTER_SITES 2020-02-19 14:33:00 +00:00
slibtool
sloccount
smake smake: Update to 1.3nb9 2020-03-04 11:31:55 +00:00
sml-mode
snappy all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
snappy-java10
sofia-sip *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
SOPE *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
SOPE4 *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
sparse
sparsehash *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
spdlog spdlog: Fix typo in DESCR 2020-02-07 12:08:40 +00:00
spiff all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
spin
splint all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
st *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
startbug1
stfl
stgit
subversion subversion: skip portability checks for unused files 2020-03-14 14:13:02 +00:00
subversion-base subversion-base: add option for plaintext password storage, default off. 2020-03-30 11:44:10 +00:00
sunifdef
svk all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
svn-bisect
swig
swig2
swig3
syncdir all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
sysexits
tailor
talloc talloc: updated to 2.3.1 2019-12-30 09:25:52 +00:00
tavrasm Add missing dependency on generated files. Build as C++03. 2019-12-19 22:13:48 +00:00
tcl-tclcl *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
tclap *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
tcllib
tclreadline *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
teem
tet3
tevent tevent: updated to 0.10.2 2019-12-30 09:26:34 +00:00
tex-doclicense tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-doclicense-doc tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-etoolbox all: migrate several HOMEPAGEs to https 2020-01-18 23:30:13 +00:00
tex-etoolbox-doc all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-l3backend tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-l3backend-doc tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-l3experimental tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-l3kernel tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-l3kernel-doc tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-l3packages tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-l3packages-doc tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-latexbug all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-latexbug-doc all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-lualibs all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-lualibs-doc all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tex-luatexbase tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-luatexbase-doc tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-multido tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-multido-doc tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-pgfopts tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-pgfopts-doc tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-pst-uml tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-pst-uml-doc tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-tlshell tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-tlshell-doc tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-xifthen tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
tex-xifthen-doc tex-*: add TEXLIVE_UNVERSIONED=yes 2019-12-06 19:13:21 +00:00
threadweaver librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
thrift all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tig
tinycthread
tkcon
tkcvs
tkdiff
tl-expected devel: Add tl-expected 2020-03-31 10:03:35 +00:00
tla
tlsh
tmake
topgit all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
tpasm
tradcpp all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
transifex-client devel/transifex-client: update to 0.13.7 2020-02-08 16:00:27 +00:00
tre
treecc all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
trio
tvision
ucl all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ucommon *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
ucpp
umbrello librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
undebt
unidiff
unittest-cpp
uno
userspace-rcu
uthash all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
valgrind all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
vanessa_adt
vanessa_logger
vanessa_socket
vera++ *: Recursive revbump from devel/boost-libs 2020-01-12 20:19:52 +00:00
verifast librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
visualvm
vtcl *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:22 +00:00
waf waf: Avoid installing libraries to ${PREFIX}/lib[32,64] 2020-03-26 15:14:04 +00:00
wayland wayland: don't claim support on non-EGL platforms. 2020-03-28 08:58:25 +00:00
wayland-protocols wayland-protocols: Update to 1.20 2020-03-15 16:05:53 +00:00
woboq_codebrowser
xa65 xa65: update to 2.3.10. 2020-02-05 09:12:19 +00:00
xdelta
xdelta3
xfce4-conf librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
xfce4-dev-tools librsvg: update bl3.mk to remove libcroco in rust case 2020-03-10 22:08:37 +00:00
xmake
xorg-util-macros all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
xsd *: Recursive revbump from devel/boost-libs 2020-01-12 20:19:52 +00:00
xxgdb
xxhash
yajl all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
yarn yarn: updated to 1.22.4 2020-03-10 09:14:31 +00:00
yasm
z80-asm all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
ZenTest
zlib all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
zookeeper all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
zzuf
Makefile devel: Add range-v3 2020-03-31 10:43:54 +00:00