pkgsrc/devel
adam 5477c810c6 cmake cmake-gui: updated to 3.24.1
CMake 3.24.1
  automoc: avoid compiler warnings in linker-warning-silencing code
  FindThreads: Skip check for -pthread flag when targeting the MSVC ABI
  IPO: Do not use -flto=auto with GCC 10.x on Windows
  export: Restore exclusion of private shared library dependencies from checks
  MinGW: Restore using windres when toolchain-prefixed name is not available
  FindVulkan: Restore tolerance of unknown FATAL_ERROR component
  Help: Add 3.24 release note about FindVulkan component enforcement
  TI compiler: Add support for COMPILE_WARNING_AS_ERROR target property
  Help: List compiler IDs supported by COMPILE_WARNING_AS_ERROR
  Help: A missing cross-reference to --compile-no-warning-as-error


CMake 3.24 Release Notes
************************

Changes made since CMake 3.23 include the following.

New Features
============

Presets
-------

* "cmake-presets(7)" files now support schema version "5".

* "cmake-presets(7)" files now support a "${pathListSep}" macro, which
  expands to ":" or ";" based on the platform.

* "cmake-presets(7)" files gained support for specifying a
  "testOutputTruncation" field in test presets, which specifies the
  truncation mode once the maximum test output size has been reached.

Generators
----------

* The "Green Hills MULTI" generator now generates build rules to re-
  run CMake if any CMake files are updated.

* The Visual Studio Generators now support "SYSTEM" headers when using
  VS 2019 Update 11 or later.

Command-Line
------------

* "cmake(1)" gained the "--fresh" command-line option to remove any
  existing "CMakeCache.txt" file and associated "CMakeFiles/"
  directory, when configuring a build tree, thus starting a new
  configuration as if the build tree were freshly created.

* "cmake(1)" gained the "--compile-no-warning-as-error" command-line
  option which causes the effects of the "COMPILE_WARNING_AS_ERROR"
  target property and "CMAKE_COMPILE_WARNING_AS_ERROR" variable to be
  ignored.

* The "cmake(1)" "--trace=json-v1" trace format gained fields
  "global_frame" and "line_end".

* The "cmake(1)" "-E" commands "cat" and "env" learned to respect a
  double dash ("--") argument that acts as a delimiter indicating the
  end of options. Any following arguments are treated as
  operands/positional arguments, even if they begin with a dash "-"
  character.

* The "cmake(1)" "-E tar" command gained the "--touch" option to keep
  the current local timestamp instead of extracting file timestamps
  from the archive.

Compilers
---------

* LLVM's flang Fortran compiler is now supported on some platforms,
  with compiler id "LLVMFlang".

* ADSP compiler support (SHARC and Blackfin) now covers both CCES and
  VDSP++ installations, with required configuration now done in the
  compiler module itself rather than the "Generic-ADSP" platform
  module.

Platforms
---------

* A dedicated "ADSP" platform has been added to replace the existing
  "Generic-ADSP" implementation. This features automatic detection of
  the latest CCES/VDSP++ install and compiler selection ("cc21k" vs.
  "ccblkfn") based off of the "CMAKE_SYSTEM_PROCESSOR" variable.

Commands
--------

* The "cmake_host_system_information()" command, on Windows, gained a
  "QUERY WINDOWS_REGISTRY" mode. See its Query Windows registry
  section.

* The "cmake_language()" command gained a new
  "SET_DEPENDENCY_PROVIDER" sub-command.  When a dependency provider
  is set, calls to "find_package()" and "FetchContent_MakeAvailable()"
  can be redirected through a custom command, which can choose to
  fulfill the request directly, modify how the request is processed,
  or leave it to be fulfilled by the built-in implementation.  See
  Dependency Providers.

* The "file(DOWNLOAD)" command gained options "RANGE_START" and
  "RANGE_END" to specify a range of bytes to download.  This can be
  useful for downloading parts of big binary files.

* The "find_file()", "find_path()", "find_library()",
  "find_program()", and "find_package()" commands gained the
  "NO_CMAKE_INSTALL_PREFIX" option to control searching
  "CMAKE_INSTALL_PREFIX".

* The "find_file()", "find_path()", "find_library()",
  "find_program()", and "find_package()" commands gained the ability
  to specify which Windows Registry views must be queried.

* The "find_package()" command gained a "GLOBAL" option that allows
  for the promotion of imported targets to global scope for the
  duration of the "find_package()" call.

* The "if()" command gained the capability to compare paths by using
  the "PATH_EQUAL" operator.  See policy "CMP0139".

Variables
---------

* The "CMAKE_COLOR_DIAGNOSTICS" variable was added to control color
  diagnostics generated by compilers.  This variable also controls
  color build system messages with Makefile Generators, replacing
  "CMAKE_COLOR_MAKEFILE".

  The "CMAKE_COLOR_DIAGNOSTICS" environment variable was added to set
  a default value for "CMAKE_COLOR_DIAGNOSTICS".

* The "CMAKE_COMPILE_WARNING_AS_ERROR" variable and corresponding
  "COMPILE_WARNING_AS_ERROR" target property were added to enable
  compilation with a compiler-specific flag to treat warnings as
  errors, such as "-Werror".

* The "CMAKE_CUDA_ARCHITECTURES" variable and associated
  "CUDA_ARCHITECTURES" target property now support the special
  "native" value to compile for the architectures(s) of the host's
  GPU(s).

* The "CMAKE_FIND_PACKAGE_TARGETS_GLOBAL" variable was added to toggle
  behavior of the "find_package()" command's new "GLOBAL" option.

* The "CMAKE_FIND_USE_INSTALL_PREFIX" variable was added to toggle
  behavior of the "find_file()", "find_library()", "find_path()",
  "find_package()", and "find_program()" commands' new
  "NO_CMAKE_INSTALL_PREFIX" option.

* The "CMAKE_PROJECT_TOP_LEVEL_INCLUDES" variable was added to allow
  injecting custom code at the site of the first "project()" call,
  after the host and target platform details have been determined.

* The "CMAKE_TRY_COMPILE_NO_PLATFORM_VARIABLES" variable was added to
  tell the "try_compile()" command not to pass any platform variables
  to the test project.

* The "CMAKE_VERIFY_INTERFACE_HEADER_SETS" variable and corresponding
  "VERIFY_INTERFACE_HEADER_SETS" target property were added to enable
  build rules that verify all headers in header sets can be used on
  their own.

* The "CMAKE_VS_NO_COMPILE_BATCHING" variable and corresponding
  "VS_NO_COMPILE_BATCHING" target property were added to tell Visual
  Studio Generators whether to disable compiler parallelism and call
  the compiler with one source file at a time.

* The "CMAKE_WATCOM_RUNTIME_LIBRARY" variable and
  "WATCOM_RUNTIME_LIBRARY" target property were introduced to select
  the runtime library used by compilers targeting the Watcom ABI. See
  policy "CMP0136".

* The "CMAKE_XCODE_XCCONFIG" variable and corresponding
  "XCODE_XCCONFIG" target property were added to tell the "Xcode"
  generator to handle "xcconfig" files.

Properties
----------

* The "INTERFACE_LINK_LIBRARIES_DIRECT" and
  "INTERFACE_LINK_LIBRARIES_DIRECT_EXCLUDE" target properties were
  added to express usage requirements affecting a consumer's direct
  link dependencies.

* The "INTERFACE_HEADER_SETS_TO_VERIFY" target property was added to
  specify which header sets should be verified by
  "VERIFY_INTERFACE_HEADER_SETS".

* The "LINK_LIBRARIES" target property now supports the
  "$    " generator expression. See policy "CMP0131".

* The "VS_DOTNET_STARTUP_OBJECT" target property was added to tell
  Visual Studio Generators which startup class shall be used when the
  program or project is executed. This is necessary when more than one
  "static void Main(string[])" function signature is available in a
  managed .NET project.

Modules
-------

* The "ExternalProject" module "ExternalProject_Add()" command gained
  a new "DOWNLOAD_EXTRACT_TIMESTAMP" option for controlling whether
  the timestamps of extracted contents are set to match those in the
  archive when the "URL" download method is used. Policy "CMP0135" was
  added to enable the option by default.

* The "FetchContent" module and the "find_package()" command now
  support integration capabilities:

  * "FetchContent_MakeAvailable()" can now try to satisfy a dependency
    by calling "find_package()" first.  A new
    "FETCHCONTENT_TRY_FIND_PACKAGE_MODE" variable controls whether
    this is done by default for all dependencies, is opt-in per
    dependency, or is disabled entirely.

  * "find_package()" can be re-routed to call
    "FetchContent_MakeAvailable()" instead.  A new read-only
    "CMAKE_FIND_PACKAGE_REDIRECTS_DIR" variable points to a directory
    where config package files can be located to facilitate these re-
    routed calls.

* The "FindJNI" module now provides imported targets.

* The "FindMatlab" module "matlab_add_mex()" function gained a
  "NO_IMPLICIT_LINK_TO_MATLAB_LIBRARIES" option to disable automatic
  linking of MATLAB libraries.

* The "FindVulkan" module now supports components to select which
  VulkanSDK tool and libraries to find in addition to the Vulkan SDK
  headers and library.

* The "FindZLIB" gained a new "ZLIB_USE_STATIC_LIBS" variable to
  search only for static libraries.

Generator Expressions
---------------------

* The "LINK_LIBRARY" generator expression was added to manage how
  libraries are specified during the link step. The
  "CMAKE__LINK_LIBRARY_USING_" and
  "CMAKE_LINK_LIBRARY_USING_" variables are used to define
  features usable by the "LINK_LIBRARY" generator expression.
  Moreover, the "LINK_LIBRARY_OVERRIDE" and
  "LINK_LIBRARY_OVERRIDE_   " target properties are available to
  resolve incompatible features.

  The "LINK_LIBRARY" generator expression can link frameworks in
  various ways when targeting "Apple" platforms. The following
  features were added:

  * "FRAMEWORK"

  * "NEEDED_FRAMEWORK"

  * "REEXPORT_FRAMEWORK"

  * "WEAK_FRAMEWORK"

  The "LINK_LIBRARY" generator expression can link libraries in
  various ways when targeting "Apple" platforms. The following
  features were added:

  * "NEEDED_LIBRARY"

  * "REEXPORT_LIBRARY"

  * "WEAK_LIBRARY"

  The "LINK_LIBRARY" generator expression gained the feature
  "WHOLE_ARCHIVE" to force load of all members in a static library.
  This feature is supported on the following target platforms:

  * all "Apple" variants

  * "Linux"

  * all "BSD" variants

  * "SunOS"

  * "Windows"

  * "CYGWIN"

  * "MSYS"

* The "LINK_GROUP" generator expression was added to manage the
  grouping of libraries during the link step.  The
  "CMAKE__LINK_GROUP_USING_" and
  "CMAKE_LINK_GROUP_USING_" variables are used to define
  features usable with the "LINK_GROUP" generator expression. This
  release defines the "RESCAN" feature, which can be used to handle
  circular references among static libraries when using toolchains for
  Linux, BSD, SunOS and GNU toolchains for Windows.

* The "PATH" generator expression was added to manage paths.

* The "PATH_EQUAL" generator expression was added to manage path
  comparisons.

* The "TARGET_BUNDLE_DIR_NAME" generator expression was added to
  evaluate to the name of the bundle directory for a given bundle
  target.

CTest
-----

* "ctest(1)" gained a "--test-output-truncation" option (and
  corresponding "CTEST_CUSTOM_TEST_OUTPUT_TRUNCATION" variable) to
  specify the truncation mode once the maximum test output size has
  been reached. Possible values are "tail" (default), "middle" or
  "head".

CPack
-----

* The "CPack WIX Generator" gained a new variable,
  "CPACK_WIX_ARCHITECTURE", to specify the installer architecture in
  order to support computers running Windows for ARM.

* CPack now supports the "CPACK_THREADS" option for "zstd" compression
  when compiled with libarchive 3.6 or higher.  It is supported by
  official CMake binaries available on cmake.org.

Deprecated and Removed Features
===============================

* The "CPack" module no longer enables the SLA by default in the
  "CPack DragNDrop Generator".  See policy "CMP0133" and the
  "CPACK_DMG_SLA_USE_RESOURCE_FILE_LICENSE" variable.

* The deprecated "CPack PackageMaker Generator" has been removed.

* The "FindGLUT" module no longer provides the undocumented
  "GLUT_LIBRARY" and "GLUT_INCLUDE_PATH" result variables.

Other Changes
=============

* CMake no longer sets environment variables like "CC", "CXX", etc.
  when enabling the corresponding language during the first CMake run
  in a build directory.  See policy "CMP0132".

* The "CheckIPOSupported" module "check_ipo_supported()" command now
  uses the caller's "CMAKE__FLAGS" and
  "CMAKE__FLAGS_" values. See policy "CMP0138".

* The "MSYS Makefiles" and "MinGW Makefiles" generators, when a
  compiler is not explicitly specified, now select the first compiler
  (of any name) found in directories listed by the "PATH" environment
  variable.

* The "try_compile()" command whole-project signature now propagates
  platform variables.  See policy "CMP0137".

* The "while()" command now diagnoses errors during condition
  evaluation.  See policy "CMP0130".

* The precompiled macOS binaries provided on cmake.org no longer
  attach a SLA to the ".dmg" packages.  This was removed because macOS
  12 deprecated the tools used to attach ".dmg" resources.
2022-08-22 19:08:10 +00:00
..
abseil abseil: update comment 2022-07-06 15:27:01 +00:00
accerciser Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
acme
acr
acunia-jam
adacurses
adocman *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
aegis *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
afl
afl++ *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
ald
alex
allegro
allegro5 Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
amtk Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
anjuta Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
ant-contrib
apache-ant
apache-ant15
apache-ant19
apache-ivy
apache-maven
apel apel: allow emacs28 2022-08-22 07:39:09 +00:00
apenwarr-redo *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
appdata-tools *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
appstream-glib Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
apr
apr-util
arcanist *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
arena
argp
argtable
as31
asio
aslc86k
asm2html
asmfmt Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
astyle
at-spi
at-spi2-atk
at-spi2-core *: Remove hardcoded -liconv / -lintl on SunOS. 2022-08-09 12:08:27 +00:00
atf
atk
atkmm *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
atkmm2.36 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
autoconf *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
autoconf-archive
autoconf213 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
autoconf269 devel: Import autoconf269, autoconf version 2.69. 2022-08-04 12:31:41 +00:00
autogen *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
automake *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
automake14 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
automoc4
autosetup
avl
avltree
bam
bats
bcc
bfg
bglibs *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
bin86
binaryen binaryen: update to 109. 2022-06-15 10:22:46 +00:00
binutils binutils: update to 2.39. 2022-08-06 09:49:32 +00:00
bison devel/bison: do not suggest nls option on Darwin 2022-07-05 00:15:09 +00:00
blame
blib
blosc
bmake
bmkdep
boa-constructor *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
boehm-gc
boost-build
boost-docs
boost-headers
boost-jam
boost-libs
boost-mpi
bpython *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
breezy devel/breezy: add dependency on py-fastbencode. 2022-07-27 18:52:41 +00:00
buddy
bugzilla *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
bugzilla3 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
bullet
byacc *: drop maintainership for packages not related to toolchains and ELF. 2022-06-27 15:29:13 +00:00
bzr *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
bzr-explorer *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
bzr-gtk *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
bzrtools *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
c++gsl
calltree-perl *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
capnproto
capstone
catch catch: latest version on the 1.x legacy branch is 1.12.2, update to that 2022-08-19 00:01:00 +00:00
catch2 *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
cbindgen cbindgen: update to 0.24.3 2022-08-04 00:54:06 +00:00
cbrowser
ccache *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
cdecl
cdk
cervisia Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
cfitsio
cflow
cflow-mode Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
cfr
cgdb
cgen
check
chmlib
chrpath
clib
clion-bin *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
clisp-pcre
clisp-syscalls
clisp-wildcard
clisp-zlib
cloc *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
cmake cmake cmake-gui: updated to 3.24.1 2022-08-22 19:08:10 +00:00
cmake-fedora
cmake-gui cmake: updated to 3.23.2 2022-05-26 08:53:59 +00:00
cmake-mode cmake-mode: hook into cmake's Makefile.common 2022-08-17 13:28:10 +00:00
cmocka
cmockery2 *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
cmph
cobol-mode Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
coccinelle *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
coconut
cogito *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
colordiff *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
commit-patch *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
compiz-bcop
compizconfig-backend-gconf
concurrencykit ck: update to 0.6.0. 2022-07-25 19:47:45 +00:00
conftest Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
confuse
cook *: Remove hardcoded -liconv / -lintl on SunOS. 2022-08-09 12:08:27 +00:00
cppcheck cppcheck: update to 2.8 2022-08-22 07:53:17 +00:00
cppunit
cpputest
cproto
cpu_features cpu_features: stub some things to make it build on arm 2022-05-13 18:19:07 +00:00
cpuflags
cqual *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
cre2
creduce *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
cscope
cssc
ctemplate *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
cunit
cut
cutter cutter: Use OPSYS_VERSION 2022-05-24 13:01:02 +00:00
cvise *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
cvs-fast-export *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
cvs2cl *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
cvs2html *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
cvs2svn *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
cvsclone
cvsd *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
cvsdiff2patch
cvsgraph
cvslock
cvsps
cvsps3
cvsup-bin
cvsup-gui-bin
cvsutils *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
cvsync
cxref
cxxopts
darcs *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
darts
dconf *: recursive bump for graphics/graphviz 5.0.0 2022-07-22 17:07:10 +00:00
dconf-editor Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
ddd *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
debugcon_printf
deepstate *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
deepstate-afl *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
deepstate-honggfuzz *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
deepstate-libfuzzer *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
deforaos-asm deforaos-asm: depend on latest gtk-doc and fix PLIST for it 2022-06-09 07:44:49 +00:00
deforaos-coder Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
deforaos-configure deforaos-configure: register x11/deforaos-locker as a user 2022-07-11 01:38:20 +00:00
deforaos-cpp deforaos-cpp: fix PLIST for fixed gtk-doc 2022-06-07 07:37:58 +00:00
deforaos-libsystem
dejagnu
delta *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
dev86
devhelp Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
device-driver-doc-de
devIL
dia2code
diff-so-fancy *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
diffbreaker Diffbreaker 0.4 2022-07-13 11:48:05 +00:00
difftastic devel/difftastic: update to 0.32.0 2022-08-08 11:52:54 +00:00
diffuse *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
diffutils
distcc distcc: updated to 3.4 2022-06-04 18:54:38 +00:00
distcc-pump *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
distccmon-gnome Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
distccmon-gtk Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
dlcompat
dmake
dmalloc dmalloc: honor LDFLAGS, fixes RELRO build. 2022-05-15 04:39:56 +00:00
doc++ *: Remove hardcoded -liconv / -lintl on SunOS. 2022-08-09 12:08:27 +00:00
dolphin-plugins Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
dotconf *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
doxygen doxygen: add build fix from upstream 2022-08-16 12:12:03 +00:00
doxymacs Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
dumpet
easygit *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
ecb Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
eclipse
ecore
edcommon
editline
editorconfig-core
eet
egypt *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
eina
eio
electric-fence
elf
elfcat
elfio
elfsh
elftoolchain
elib Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
emacs-ilisp Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
emacs20-elib Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
empty
epydoc *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
erlang-base64url
erlang-cache_tab
erlang-ezlib
erlang-fs
erlang-mqtree
errcheck Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
error
ETL *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
etrace *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
exctags
exempi
ExmanIDE *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
extra-cmake-modules extra-cmake-modules: does not need any languages 2022-08-12 08:26:31 +00:00
fann *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
fastdep
fhist
fifechan Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
fifengine Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
flatbuffers
flatzebra
flex
flexdock
flim Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
florist
floskell hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
fortran-utils
fossil Update devel/fossil to 2.19 2022-07-31 09:57:08 +00:00
fourmolu hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
frama-c Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
frink
fromcvs *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
ftnchek
g-wrap
gccmakedep
GConf *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
GConf-ui
gconfmm *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
gcvs *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
gdb *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
gdb7 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
gdbus-codegen glib2 glib2-tools gdbus-codegen: updated to 2.72.3 2022-08-04 11:35:01 +00:00
gdl Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
geany Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
gearmand
generate
gengetopt
gentle
gettext
gettext-asprintf
gettext-lib libXpm: Add USE_EXPLICIT_LIBDEPS, set to no. 2022-08-11 13:37:24 +00:00
gettext-m4
gettext-tools
gflags
gflib
giblib devel/giblib: Fix for graphics/imlib2 update 2022-07-29 05:58:10 +00:00
gindent
git git: updated to 2.37.2 2022-08-12 08:06:22 +00:00
git-base git: updated to 2.37.2 2022-08-12 08:06:22 +00:00
git-cliff devel/git-cliff: downgrade to 0.8.1 2022-08-22 18:16:48 +00:00
git-contrib
git-cvs
git-docs git: updated to 2.37.0 2022-07-06 11:53:59 +00:00
git-filter-repo *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
git-gitk
git-lfs Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
git-remote-hg *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
git-svn
gitolite *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
gitui devel/gitui: update to 0.21.0 2022-08-18 08:09:10 +00:00
glade Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
glib
glib2 *: Remove hardcoded -liconv / -lintl on SunOS. 2022-08-09 12:08:27 +00:00
glib2-tools glib2*: update to 2.72.2 2022-07-24 21:24:55 +00:00
glibmm *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
glibmm2.68 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
global *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
gmake *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
gmp gmp: add rpath to pkg-config file 2022-07-21 10:17:21 +00:00
gmtk *: Recursive revbump from audio/pulseaudio 2022-07-02 16:53:03 +00:00
gnatpython *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
gnome-common
gnustep-base
gnustep-examples
gnustep-make
gnustep-objc
gnustep-objc-lf2
go-check Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-ed25519 Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-flags-svent Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-gocode Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-golang-lru Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-gopkgs Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-goptlib Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-goreturns Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-gox Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-impl Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-logrus Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-nbreader Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-protobuf Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-pty Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-review Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-siphash Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-staticcheck Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-sys Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-tools Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-wire Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
go-xerrors Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
gob2
gobject-introspection *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
golangci-lint Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
golint Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
gomodifytags Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
google-glog
googletest googletest: update to 1.12.1. 2022-07-03 13:36:45 +00:00
gopls gopls: update to 0.9.4. 2022-08-22 11:05:49 +00:00
goredo Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
Gorm
got
gotests Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
gperf
gperftools gperftools: updated to 2.10 2022-07-22 08:34:45 +00:00
gprbuild-aux
gputils
gradle
grantlee
grantlee-qt5 *: Recursive revbump from audio/pulseaudio 2022-07-02 16:53:03 +00:00
gsoap
gst-plugins0.10-pango
gst-plugins1-pango
gtexinfo *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
gtl
guile-bytestructures
guile-gcrypt guile-gcrypt: rename the distfile to a distinguished name 2022-08-17 12:01:11 +00:00
guile-git guile-git: regen distinfo, checksum changed. 2022-05-23 21:52:54 +00:00
guile-gnome Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
guile-lib
guile-slib
guile-www
guile22-slib
guile30-slib
gyp *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
happy
haskell-language-server *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
haskell-mode Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
hdf
hdf5 hdf5 and hdf5-c++: fix up the threads option 2022-07-22 14:50:32 +00:00
hdf5-c++ hdf5 and hdf5-c++: fix up the threads option 2022-07-22 14:50:32 +00:00
heirloom-getopt
heirloom-libcommon
heirloom-what
hlint *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hoe devel/hoe: update to 3.24.0 2022-08-11 13:58:30 +00:00
honggfuzz
hptools
hs-ansi-terminal
hs-asn1-encoding
hs-asn1-parse
hs-asn1-types
hs-assoc
hs-async
hs-async-pool
hs-atomic-write
hs-auto-update
hs-base-compat hs-base-compat: update to 0.12.2. 2022-08-18 18:21:15 +00:00
hs-base-compat-batteries hs-base-compat-batteries: update to 0.12.2. 2022-08-18 18:26:47 +00:00
hs-base-orphans hs-base-orphans: update to 0.8.7. 2022-08-18 18:28:30 +00:00
hs-base-unicode-symbols
hs-basement
hs-basic-prelude hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-bitarray
hs-bitvec devel/hs-bitvec: import hs-bitvec-1.1.3.0 2022-08-22 10:06:14 +00:00
hs-blaze-builder
hs-blaze-textual hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-bytestring-builder
hs-Cabal-syntax
hs-call-stack
hs-cborg hs-cborg: update to 0.2.7.0. 2022-08-22 10:25:08 +00:00
hs-cereal
hs-chunked-data hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-classy-prelude *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-cmdargs
hs-code-page
hs-colour
hs-conduit *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-conduit-extra *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-constraints
hs-constraints-extras
hs-control-monad-free
hs-cpphs
hs-data-default
hs-data-default-class
hs-data-default-instances-base
hs-data-default-instances-containers
hs-data-default-instances-dlist
hs-data-default-instances-old-locale
hs-data-fix
hs-data-ordlist
hs-deepseq-generics
hs-deferred-folds hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-dependent-map
hs-dependent-sum
hs-dlist
hs-dlist-instances
hs-echo
hs-either
hs-enclosed-exceptions
hs-errors
hs-extensible-exceptions
hs-fail
hs-fgl
hs-file-embed
hs-filtrable
hs-fingertree
hs-fmlist
hs-focus
hs-foldl hs-foldl: allow building with hs-vector 0.14 2022-08-22 10:15:40 +00:00
hs-foundation
hs-fsnotify
hs-generic-deriving hs-generic-deriving: update to 1.14.2. 2022-08-18 18:38:18 +00:00
hs-generic-lens
hs-generic-lens-core
hs-generically devel/hs-generically: import hs-generically-0.1 2022-08-19 12:10:41 +00:00
hs-ghc-check
hs-ghc-exactprint
hs-ghc-lib-parser
hs-ghc-lib-parser-ex
hs-ghc-paths
hs-ghc-trace-events
hs-ghcide *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-githash
hs-gitrev
hs-half
hs-hashable hs-hashable: update to 1.4.1.0. 2022-08-18 18:43:35 +00:00
hs-hashtables hs-hashtables: allow building with hs-vector 0.14. 2022-08-22 10:17:39 +00:00
hs-haskell-lexer
hs-haskell-src-exts
hs-heapsize hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-hie-bios *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-hie-compat
hs-hiedb hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-hinotify
hs-hint
hs-hls-alternate-number-format-plugin *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-hls-call-hierarchy-plugin *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-hls-explicit-imports-plugin *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-hls-floskell-plugin *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-hls-fourmolu-plugin *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-hls-graph hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-hls-module-name-plugin *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-hls-oumolu-plugin *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-hls-plugin-api hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-hls-pragmas-plugin *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-hls-qualify-imported-names-plugin *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-hls-refine-imports-plugin *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-hls-selection-range-plugin *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-hslua-module-system
hs-hslua-module-version
hs-implicit-hie *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-implicit-hie-cradle *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-indexed-traversable
hs-indexed-traversable-instances hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-ipynb hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-keys
hs-lens hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-lens-family-core
hs-libffi
hs-lifted-async
hs-lifted-base
hs-list-t hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-ListLike hs-ListLike: update to 4.7.7. 2022-08-22 10:28:48 +00:00
hs-logict
hs-lpeg
hs-lsp hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-lsp-types hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-lukko
hs-managed
hs-memory
hs-microlens
hs-microlens-ghc
hs-microlens-mtl
hs-microlens-platform hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-microlens-th
hs-mmap
hs-mmorph
hs-monad-control
hs-monad-dijkstra
hs-monad-logger *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-monad-loops
hs-MonadRandom
hs-mono-traversable *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-mono-traversable-instances *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-mtl-compat
hs-mutable-containers *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-old-locale
hs-OneTuple
hs-Only
hs-optional-args
hs-optparse-applicative
hs-optparse-simple
hs-ordered-containers
hs-pandoc-lua-marshal hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-parallel
hs-parser-combinators
hs-pattern-arrows
hs-pointed
hs-pretty-show
hs-pretty-simple
hs-primitive hs-primitive: update to 0.7.4.0. 2022-08-18 18:56:35 +00:00
hs-primitive-extras hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-primitive-unlifted
hs-protolude
hs-psqueues
hs-QuickCheck
hs-random hs-random: update to 1.2.1.1. 2022-08-18 19:00:48 +00:00
hs-random-shuffle
hs-refact
hs-reflection
hs-repline
hs-resourcet
hs-retry
hs-rio hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-rio-orphans *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-safe
hs-safe-exceptions
hs-say
hs-semialign hs-semialign: fix build with hs-vector 0.14 2022-08-20 09:46:04 +00:00
hs-semver-range *: bump for hs-vector-algorithms buildlink3.mk change 2022-08-22 10:13:21 +00:00
hs-serialise hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-setlocale
hs-shelly
hs-some
hs-sorted-list
hs-split
hs-splitmix
hs-StateVar
hs-stm-chans
hs-stm-containers hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-stm-hamt hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-storable-record
hs-storable-tuple
hs-streaming-commons
hs-strict
hs-syb
hs-tabular
hs-tagged
hs-tasty
hs-tasty-hunit
hs-terminal-size
hs-tf-random
hs-th-abstraction hs-th-abstraction: update to 0.4.4.0. 2022-08-18 19:10:18 +00:00
hs-th-compat
hs-th-env
hs-th-lift
hs-th-lift-instances hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-these
hs-timeit
hs-transformers-base
hs-transformers-compat hs-transformers-compat: update to 0.7.2. 2022-08-18 19:12:12 +00:00
hs-turtle hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-type-equality
hs-uglymemo
hs-unbounded-delays
hs-uniplate
hs-unix-compat
hs-unliftio
hs-unliftio-core
hs-unordered-containers ## [0.2.19.1] – April 2022 2022-08-18 19:16:58 +00:00
hs-utf8-string
hs-utility-ht
hs-uuid
hs-uuid-types
hs-vault
hs-vector hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-vector-algorithms hs-vector-algorithms: update to 0.9.0.1. 2022-08-22 10:11:27 +00:00
hs-vector-binary-instances hs-vector-binary-instances: fix build with hs-vector 0.14 2022-08-22 10:30:17 +00:00
hs-vector-instances hs-vector-instances: allow building against hs-vector 0.14 2022-08-22 09:58:12 +00:00
hs-vector-stream hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
hs-vector-th-unbox hs-vector-th-unbox: allow building with hs-vector 0.14 2022-08-22 10:32:15 +00:00
hs-versions
hs-void
hs-with-utf8
hs-witherable hs-witherable: fix build with hs-vector 0.14 2022-08-20 09:38:58 +00:00
hs-wizards
hs-word8
ht
hugs-HUnit
hugs-unix
hyperscan
idiff
idutils
imake
include-what-you-use devel/include-what-you-use: llvm update 2022-08-12 08:56:01 +00:00
iniparser
intel2gas
intellij-ce-bin *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
intellij-ue-bin *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
isect
ivykis *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
jam
java-jna java-jna: fix default builds 2022-06-06 01:12:56 +00:00
java-subversion *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
javacc
javadeps
jd-gui
jdebp-redo
jemalloc *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
jenkins
jenkins-lts
jflex
jq
js2-mode Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
js_of_ocaml Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
js_of_ocaml-ocamlbuild Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
jsonnet
kafka
kapptemplate Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
kbookmarks Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
kbuild *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
kcachegrind Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
kcmutils Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
kconfig *: Recursive revbump from audio/pulseaudio 2022-07-02 16:53:03 +00:00
kcoreaddons *: Recursive revbump from audio/pulseaudio 2022-07-02 16:53:03 +00:00
kcrash
kde-dev-scripts *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
kde-dev-utils Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
kdeclarative Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
kdesdk-kioslaves *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
kdesdk-strigi-analyzers
kdesdk-thumbnailers
kdevelop4 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
kdevplatform *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
kdiff3 Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
kdoctools *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
ki18n *: Recursive revbump from audio/pulseaudio 2022-07-02 16:53:03 +00:00
kidletime
kio Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
kio-extras Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
kitemmodels *: Recursive revbump from audio/pulseaudio 2022-07-02 16:53:03 +00:00
knotifications Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
knotifyconfig Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
ko-po-check *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
kompare Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
kpackage *: Recursive revbump from audio/pulseaudio 2022-07-02 16:53:03 +00:00
kparts Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
kpeople
kpty
kross Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
krunner Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
kservice
ktexteditor Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
kwayland Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
kyua
lazygit Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
lcc
lcdis
lcov *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
ldapsdk *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
ldpc
leahneukirchen-redo
lemon sqlite3: updated to 3.39.2 2022-07-22 07:05:55 +00:00
lettuce *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
libadwaita libadwaita: update to 1.1.3. 2022-07-29 16:39:50 +00:00
libantlr3c
libappindicator Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
libarena
libargparse
libast
libatomic libatomic: update to 12.2.0. 2022-08-22 11:16:35 +00:00
libatomic-links
libatomic_ops
libbegemot
libbinio *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
libblkid
libbonobo *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
libbonoboui Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
libbsd libbsd: mark as not for *BSD 2022-08-15 22:56:37 +00:00
libcbor libcbor: do not build examples 2022-08-05 20:21:21 +00:00
libcerf
libcfg+
libcompizconfig *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
libconfig *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
libctl
libcutl
libdaemon
libdatrie
libdazzle Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
libdbusmenu-glib *: recursive bump for graphics/graphviz 5.0.0 2022-07-22 17:07:10 +00:00
libdbusmenu-gtk *: recursive bump for graphics/graphviz 5.0.0 2022-07-22 17:07:10 +00:00
libdbusmenu-gtk-doc
libdbusmenu-gtk3 Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
libdbusmenu-jsonloader *: recursive bump for graphics/graphviz 5.0.0 2022-07-22 17:07:10 +00:00
libdbusmenu-qt
libdbusmenu-qt5
libdbusmenu-tools *: recursive bump for graphics/graphviz 5.0.0 2022-07-22 17:07:10 +00:00
libdeflate *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
libdevq
libdivsufsort
libdnsres
libdockapp
libdshconfig
libdstr
libdwarf
libebml
libelf
libepoll-shim libepoll-shim: take out CFLAGS from the pkg-config file 2022-08-07 23:29:49 +00:00
libestr *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
libetm
libev
libevent
libewf libewf: avoid using inline 2022-06-22 10:29:02 +00:00
libexecinfo
libextractor Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
libf2c
libffcall
libffi *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
libfirm *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
libFoundation
libFoundation-examples
libfreefare
libftdi
libftdi1 *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
libgcroots *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
libgee *: recursive bump for graphics/graphviz 5.0.0 2022-07-22 17:07:10 +00:00
libgee0.6
libgetopt
libgit2 *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
libglade
libglademm *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
libgnome Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
libgnomemm Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
libgnomeui Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
libgnomeuimm Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
libgnt
libgphoto2
libgsf *: Remove hardcoded -liconv / -lintl on SunOS. 2022-08-09 12:08:27 +00:00
libgtextutils *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
libgweather Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
libhandy Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
libhandy1 Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
libhfs
libhid *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
libiberty
libidn libidn: update to 1.41. 2022-07-14 13:15:03 +00:00
libidn2 libidn2: update to 2.3.3. 2022-07-17 08:33:16 +00:00
libindicator Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
libinotify
libite
libixp
libjit
libjudy
libkgapi *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
libkomparediff2 Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
liblangtag liblangtag: update to 0.6.4. 2022-07-14 13:17:22 +00:00
liblnk
libltdl
libmaa
libmatchbox libmatchbox: fix png library name. 2022-07-27 18:35:30 +00:00
libmemcache
libmemcached
libmemmgr
libmimedir
libmm
libmowgli
libmpack
libmtp *: Remove hardcoded -liconv / -lintl on SunOS. 2022-08-09 12:08:27 +00:00
libnet
libnet10
libnet11
libnfc
libnjb
libntlm *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
liboil
liboop
libosip
libowfat
libpeas Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
libpgm *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
libphutil
libportlib
libproplist
librdkafka
librelp
librfuncs
librlog
librxspencer
libsafec *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
libsexy
libsexymm
libsigc++ libsigc++*: update HOMEPAGE, previous one is something unrelated now 2022-07-25 19:22:22 +00:00
libsigc++1 libsigc++*: update HOMEPAGE, previous one is something unrelated now 2022-07-25 19:22:22 +00:00
libsigc++3 libsigc++3: update to 3.2.0. 2022-07-25 19:45:35 +00:00
libsigsegv *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
libslang
libslang2
libsmi
libstash
libstatgrab *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
libstree
libstroke
libstubborn
libtai
libtar
libtecla
libtermkey
libthai
libthrift *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
libthrift_c_glib *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
libtool libtool: Remove hardcoded compiler objects on SunOS. 2022-08-04 12:23:21 +00:00
libtool-base libtool: Unbreak the 2.4.7 update. 2022-08-03 13:06:31 +00:00
libtool-fortran libtool: Unbreak the 2.4.7 update. 2022-08-03 13:06:31 +00:00
libtool-info libtool*: update to 2.4.7 2022-07-26 16:15:26 +00:00
libts
libunit
libusb
libusb-compat
libusb1
libuuid
libuv libuv: updated to 1.44.2 2022-07-15 13:16:36 +00:00
libuxre
libview
libvolume_id libvolume_id: add --tag to our local libtool patches 2022-07-28 09:12:45 +00:00
libvterm01 *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
libwhisker2 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
libwnck
libwnck3 Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
libxenserver
libxtend devel/libxtend: Update to 0.1.6 2022-06-11 19:39:33 +00:00
libyang
libyang2
libzen *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
libzookeeper
linenoise
lld llvm ecosystem: bump up some GCC_REQD 2022-08-14 12:13:03 +00:00
lldb lldb: provide more specific failure message for NetBSD < 9.99.22 2022-08-18 23:55:26 +00:00
lmdbg
locktests
log4cplus *: Remove hardcoded -liconv / -lintl on SunOS. 2022-08-09 12:08:27 +00:00
log4cxx
log4shib
lokalize Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
ltsa
lua-alt-getopt
lua-ansicolors
lua-argparse
lua-basexx
lua-binaryheap
lua-bit32
lua-BitOp
lua-busted
lua-cliargs
lua-compat53
lua-cov
lua-coxpcall
lua-cqueues
lua-enum
lua-epnf
lua-event
lua-fifo
lua-filesystem
lua-fun
lua-gi
lua-inspect
lua-linenoise
lua-ljsyscall
lua-loadkit
lua-lpeg
lua-lpeg-patterns
lua-lrexlib
lua-lrexlib-onig
lua-lrexlib-pcre
lua-lrexlib-posix
lua-luassert
lua-luv
lua-mediator
lua-mimetypes
lua-mode lua-mode: convert to github.mk 2022-08-17 12:43:43 +00:00
lua-moses
lua-mpack
lua-penlight
lua-posix
lua-repl
lua-rings
lua-rocks
lua-safer
lua-say
lua-sdl2 Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
lua-std-_debug
lua-std-normalize
lua-stdlib
lua-system
lua-term
lua-thrift *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
lua-vstruct
lutok
lwp
lxqt-build-tools *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
m4 Use older register names on MacOS X 10.4 "Tiger", taken from MacPorts 2022-05-24 14:43:03 +00:00
m17n-lib
mad-flute mad-flute: remove MASTER_SITES and HOMEPAGE, dead 2022-07-31 18:04:55 +00:00
magit Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
makedepend
makedepf90
maketool
man-pages
mantis
mate-common Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
matio
mcpp
mdds
mdds1.2
meld Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
mell Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
memcached memcached: updated to 1.6.16 2022-08-04 12:26:19 +00:00
menhir Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
mercurial mercurial: reset PKGREVISION for 6.2 update 2022-07-17 18:31:06 +00:00
meson meson: updated to 0.63.1 2022-08-15 08:19:39 +00:00
metslib *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
mimalloc *: drop maintainership for packages not related to toolchains and ELF. 2022-06-27 15:29:13 +00:00
mk-configure
mkcmd
mm-common *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
MoarVM *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
mob Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
mold mold: update to 1.4.1. 2022-08-19 08:59:48 +00:00
monotone *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
monotone-server
mph
msgpack
mustach mustach: switch to USE_GITLAB. 2022-05-24 11:58:58 +00:00
myrepos *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
nana
nancy Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
nasm *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
nbpatch
ncc *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
ncurses ncurses: restore pkg-config dependency 2022-07-25 21:47:53 +00:00
ncursesw
netbeans-ide *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
netbsd-iscsi-lib
netcdf
netcdf-cxx
netcdf-fortran
newfile
ninja-build ninja-build: updated to 1.11.0 2022-05-27 12:22:35 +00:00
ninka *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
noweb
npapi-sdk *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
npth
nqc
nsis
nspr nspr: update to 4.34.1. 2022-08-10 10:16:24 +00:00
nspr-reference
nss nss: update to 3.82. 2022-08-19 16:34:54 +00:00
ObjectiveLib
objfw objfw: Fix build and tests under NetBSD 2022-08-15 14:56:04 +00:00
ocaml-angstrom Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-astring Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-async Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-async_extra Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-async_kernel Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-async_rpc_kernel Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-async_unix Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-base Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-base64 Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-base_bigstring Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-base_quickcheck Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-batteries Updated devel/ocaml-batteries to version 3.5.1. 2022-05-30 09:52:47 +00:00
ocaml-bigarray-compat Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-bigstringaf More build fixes for mef@ 2022-05-30 09:47:34 +00:00
ocaml-bin_prot Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-biniou Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-bos ocaml-bos: update to 0.2.1. 2022-06-03 08:00:09 +00:00
ocaml-checkseum Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-cmdliner Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-compiler-libs Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-core Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-core_kernel Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-core_unix ocaml-core_unix: fix build on SunOS 2022-08-19 12:42:34 +00:00
ocaml-cppo Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
ocaml-csexp Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
ocaml-cstruct Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-digestif Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-duff ocaml-duff: update to 0.5. 2022-06-03 09:30:01 +00:00
ocaml-dune Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
ocaml-dune-configurator Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
ocaml-encore Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-eqaf Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-expect_test_helpers_core Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-extlib Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-fieldslib Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-findlib Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
ocaml-fmt Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-fpath Updated devel/ocaml-fpath to v0.7.3. 2022-05-30 09:11:17 +00:00
ocaml-git Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
ocaml-hex Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-hmap Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-hxd Added devel/ocaml-hxd, a hex dump library for OCaml. 2022-06-20 08:16:58 +00:00
ocaml-int_repr Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-intrinsics Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-jane-street-headers Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-js-build-tools Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-jst-config Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ke Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-logs Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-lru Updated devel/ocaml-lru to version 0.3.0. 2022-06-17 13:01:24 +00:00
ocaml-lwt ocaml-lwt: avoid clash with system headers 2022-08-17 19:20:30 +00:00
ocaml-lwt_glib Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
ocaml-lwt_log Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
ocaml-lwt_ppx Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-lwt_react Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-lwt_ssl Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
ocaml-migrate-parsetree Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-mirage-flow Added devel/ocaml-mirage-flow, flow implementations for Mirage 2022-06-13 08:12:02 +00:00
ocaml-mmap Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-oasis Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
ocaml-ocplib-endian Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-optint Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-parsexp Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_assert Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_base Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_bench Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_bin_prot Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_cold Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_compare Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_custom_printf Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_derivers Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
ocaml-ppx_deriving Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_disable_unused_warnings Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_enumerate Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_expect Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_fail Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_fields_conv Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
ocaml-ppx_fixed_literal Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_hash Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_here Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_ignore_instrumentation Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_inline_test Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_jane Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_let Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_log Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_module_timer Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_optcomp Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_optional Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_pipebang Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_sexp_conv Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_sexp_message Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_sexp_value Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_stable Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_string Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_tools Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_typerep_conv Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppx_variants_conv Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-ppxlib Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-psq Updated devel/ocaml-psq to version 0.2.0. 2022-06-13 09:10:05 +00:00
ocaml-re *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
ocaml-react Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-reactiveData Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-resource-pooling Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
ocaml-result Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
ocaml-rresult Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-seq Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-sexp_pretty Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-sexplib Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-sexplib0 Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-spawn Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-splittable_random Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-stdio Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-stdlib-shims (devel/ocaml-stdlib-shims) regen PLST for new environment, fix build. 2022-05-28 07:33:09 +00:00
ocaml-stringext Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
ocaml-typerep Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-variantslib Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocaml-yojson Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocamlbuild Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
ocamlgraph Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocamlify Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ocamlmod Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
ode
ogre
okteta
omake Recursive revbump associated with update of ocaml. 2022-05-24 18:51:47 +00:00
opa Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
open-vcdiff
opengrok
openocd
openrcs
orc
ormolu
ossp-uuid *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-accessors *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-accessors-fast *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Acme-Damn *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Acme-PlayCode *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Algorithm-Annotate *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Algorithm-Backoff *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Algorithm-C3 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Algorithm-CheckDigits *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Algorithm-Dependency *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Algorithm-Diff *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Algorithm-HowSimilar *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Algorithm-Merge *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Algorithm-Permute *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-aliased *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Alien-Base-ModuleBuild *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Alien-Build *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Alien-Packages *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Alien-SDL Bump everything affected by the jpeg.buildlink3.mk fix. 2022-07-14 23:46:18 +00:00
p5-AnnoCPAN-Perldoc *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Any-Moose *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-AnyEvent *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-AnyEvent-AIO *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-AnyEvent-IRC *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-AnyEvent-RabbitMQ *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-AnyEvent-XMPP *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-App-Cache *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-App-CLI *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-App-Cmd *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-App-cpanminus *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-App-cpanoutdated *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-App-FatPacker *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-App-perlbrew *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-App-Prove-Plugin-ProgressBar *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-App-Prove-Plugin-ProgressBar-Each *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-AppConfig *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-AppConfig-Std *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Array-Compare *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Array-Diff *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Array-RefElem *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-asa *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Async-Interrupt *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-AtExit *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Attribute-Lexical *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-autobox *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-autobox-Core *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Autodia *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-autovivification *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-AutoXS-Header *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-B-Compiling *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-B-COW *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-B-Debug *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-B-Hooks-EndOfScope *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-B-Hooks-OP-Annotation *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-B-Hooks-OP-Check *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-B-Hooks-OP-Check-EntersubForCV *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-B-Hooks-OP-Check-StashChange *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-B-Hooks-OP-PPAddr *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-B-Hooks-Parser *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-B-Keywords *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-B-Utils *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-BackPAN-Index *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-bareword-filehandles *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Bit-Vector *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-boolean *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-BSD-Resource *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Cache *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Cache-Cache *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Cache-FastMmap *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Cache-LRU *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Cache-Memcached *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Cache-Memcached-Fast *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Cache-Simple-TimedExpiry *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Canary-Stability *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-capitalization *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Capture-Tiny *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Carp *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Carp-Always *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Carp-Assert *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Carp-Assert-More *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Carp-Clan *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Carp-REPL *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Carton *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Check-ISA *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-CHI *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-circular-require *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-CLASS *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Accessor *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Accessor-Chained *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Accessor-Grouped *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Accessor-Lite *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Accessor-Named *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Adapter *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Autouse *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Base *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-C3 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-C3-Adopt-NEXT *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-C3-Componentised *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-C3-XS *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Container *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Data-Accessor *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Data-Inheritable *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-ErrorHandler *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Factory *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Factory-Util *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Field *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Fields *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Gomor *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Inner *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-InsideOut *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Inspector *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-ISA *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Load *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Load-XS *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Loader *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-MakeMethods *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Method-Modifiers *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-MethodMaker *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Mix *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-ObjectTemplate *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-OOorNO *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Refresh *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-ReturnValue *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Singleton *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Std *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Throwable *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Tiny *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Trigger *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Unload *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-Virtual *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-WhiteHole *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-XML *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-XPath *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Class-XSAccessor *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-CLI-Osprey *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Clone *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Clone-Choose *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Clone-Fast *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Clone-PP *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-common-sense *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Compiler-Lexer *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Compress-PPMd *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Config-Any *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Config-Any-Merge *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Config-Auto *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Config-AutoConf *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Config-File *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Config-Find *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Config-General *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Config-GitLike *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Config-Grammar *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Config-INI *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Config-INI-Reader-Ordered *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Config-IniFiles *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Config-MVP *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Config-MVP-Reader-INI *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Config-Onion *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Config-Properties *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Config-Std *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Config-Tiny *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Const-Fast *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-constant-def *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-constant-defer *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Context-Preserve *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Contextual-Return *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Convert-Binary-C *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Coro *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-CPAN-Changes *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-CPAN-Checksums *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-CPAN-Common-Index *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-CPAN-DistnameInfo *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-CPAN-FindDependencies *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-CPAN-Inject *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-CPAN-Meta-Check *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-CPAN-Mini *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-CPAN-ParseDistribution *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-CPAN-Perl-Releases *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-CPAN-Reporter *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-CPAN-Uploader *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-CPANPLUS *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-curry *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Curses *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Curses-UI *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Curses-UI-POE *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Cwd-Guard *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Alias *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Binary *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Buffer *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Compare *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Denter *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Dump *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Dump-Streamer *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Dumper *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Dumper-Concise *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Dumper-Names *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-GUID *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Hierarchy *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-IEEE754 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Integer *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-MessagePack *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Munge *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-ObjectDriver *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-OptList *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Page *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Page-Pageset *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Pageset *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Peek *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Perl *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Printer *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Random *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Record *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Section *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Section-Simple *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Serializer *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-ShowTable *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Stag *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Structure-Util *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Taxi *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-TemporaryBag *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Uniqid *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-UUID *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-UUID-Base64URLSafe *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Validate-IP *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Data-Visitor *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Date-Business *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Date-Calc *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Date-Calc-XS *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Date-Manip Update to 6.88 2022-07-16 00:06:40 +00:00
p5-Date-Simple *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Debug-Client *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Debug-ShowStuff *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Declare-Constraints-Simple *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Autoflush *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-CallChecker *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Caller *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Caller-IgnoreNamespaces *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-CallParser *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-CheckBin *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-CheckCompiler *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-CheckLib Restore patch lost in previous update, needed to keep p5-Crypt-DH-GMP 2022-07-28 18:45:03 +00:00
p5-Devel-CheckOS Update to 1.93 2022-07-16 00:35:07 +00:00
p5-Devel-Confess *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Cover *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Cycle *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Declare *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Dumpvar *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-ebug *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-EvalContext *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Events *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Events-Objects *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-FindPerl Update to 0.016 2022-07-16 01:37:40 +00:00
p5-Devel-FindRef *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Gladiator *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-GlobalDestruction *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Hide *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Leak *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Leak-Object *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-LexAlias *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-NYTProf *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-OverloadInfo *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-OverrideGlobalRequire *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-PartialDump *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-PatchPerl *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Pragma *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Profile *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Refactor *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Refcount *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-REPL Update to 1.003029 2022-07-16 03:33:28 +00:00
p5-Devel-Size *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-SmallProf *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-StackTrace *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-StackTrace-AsHTML *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-StackTrace-WithLexicals *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Symdump *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-Trace *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Devel-TraceUse *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Dir-Self *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Dist-CheckConflicts *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Dist-Zilla Update to 6.025 2022-07-16 07:23:15 +00:00
p5-Dist-Zooky *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-DynaLoader-Functions *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-enum *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Env-Path *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Error *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-EV *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Eval-Closure *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Eval-LineNumbers *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Event *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Event-ExecFlow *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Event-RPC *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-ex-lib *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Exception-Class *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Exception-Handler *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Expect *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Expect-Simple *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Exporter-Declare *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Exporter-Lite Update to 0.09 2022-07-16 07:46:50 +00:00
p5-Exporter-Tiny *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-ExtUtils-AutoInstall *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-ExtUtils-CChecker *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-ExtUtils-Config *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-ExtUtils-CppGuess Update to 0.26 2022-07-16 08:22:25 +00:00
p5-ExtUtils-Depends *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-ExtUtils-F77 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-ExtUtils-Helpers *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-ExtUtils-InstallPaths *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-ExtUtils-LibBuilder *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-ExtUtils-MakeMaker-CPANfile *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-ExtUtils-ModuleMaker *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-ExtUtils-ModuleMaker-TT *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-ExtUtils-PkgConfig *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-ExtUtils-XSBuilder *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-ExtUtils-XSpp *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Fennec-Lite *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-FFI-CheckLib *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-BaseDir *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Binary *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-BOM *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-ChangeNotify *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-chdir *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-ConfigDir *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-DesktopEntry *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-DirCompare *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-DirSync *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Find-Object *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Find-Rule *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Find-Rule-Age *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Find-Rule-Perl *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Find-Rule-Permissions *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Find-Rule-PPI *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Find-Rule-VCS *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Flat *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Flock *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-FlockDir *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-HomeDir *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-LibMagic *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Listing *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-MimeInfo *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Modified *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Next *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-NFSLock *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Path-Expand *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Path-Tiny *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-PathConvert *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Policy *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-pushd *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Save-Home *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Share Update to 0.27 2022-07-31 08:22:42 +00:00
p5-File-ShareDir *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-ShareDir-Install *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-ShareDir-ProjectDistDir *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Slurp *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Slurp-Tiny *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Slurper *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Tempdir *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Touch *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Type *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Util *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Valet *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-File-Which *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-FileHandle-Fmode *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-FileHandle-Unget *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Filesys-Notify-Simple *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Find-Lib *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-FindBin-libs *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-forks *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Format-Human-Bytes *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-FreezeThaw *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Function-Parameters *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Future *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Getopt-ArgvFile *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Getopt-Euclid *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Getopt-Long-Descriptive *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Getopt-Mixed *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Getopt-Simple *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Getopt-Tabular *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-gettext *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Git-CPAN-Patch *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Git-Repository *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Git-Repository-Plugin-AUTOLOAD *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Git-Version-Compare *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Git-Wrapper *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-GitLab-API-v3 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-GitLab-API-v4 p5-GitLab-API-v4: update to 0.26 2022-08-22 08:01:15 +00:00
p5-Glib-Object-Introspection *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-glib2 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Gnome2 Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
p5-Gnome2-GConf *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Graph *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Graph-ReadWrite *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Gravatar-URL *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Gtk2-GladeXML *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Guard *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Hash-Case *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Hash-FieldHash *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Hash-Flatten *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Hash-Merge *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Hash-Merge-Simple *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Hash-MoreUtils *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Hash-MultiValue *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Hash-Util-FieldHash-Compat *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Heap *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Hook-LexWrap *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IMDB-Film *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Import-Into *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Importer *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-inc *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-inc-latest *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-indirect *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Inline *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Inline-C *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-InlineX-C2XS *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Internals *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-AIO *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-All *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-Async *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-Capture *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-CaptureOutput *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-Digest *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-Event *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-Handle-Util *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-HTML *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-InSitu *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-Interactive *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-LockedFile *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-Multiplex *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-Null *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-Pager *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-Pipeline *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-Pipely *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-Prompt *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-Prompter *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-String *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-stringy *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-Stty *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-Tee *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-TieCombine *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-Tty *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IO-Util *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IPC-Cache *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IPC-DirQueue *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IPC-PubSub *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IPC-Run *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IPC-Run3 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IPC-Shareable *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IPC-SharedCache *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IPC-ShareLite *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IPC-Signal *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-IPC-System-Simple *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-JSONSchema-Validator *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-LEOCHARRE-CLI2 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-LEOCHARRE-Debug *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-LEOCHARRE-Dir *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Lexical-Persistence *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Lexical-SealRequireHints *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-lib-abs *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-List-AllUtils *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-List-MoreUtils *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-List-MoreUtils-XS *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-List-Pairwise *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-List-SomeUtils *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-List-SomeUtils-XS *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-List-UtilsBy *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-local-lib *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Locale-Msgfmt *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Locale-PO *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Agent *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Any *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Any-Adapter-Callback *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Any-Adapter-Dispatch *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Any-Adapter-Log4perl *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Any-Adapter-Screen *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Any-Adapter-TAP *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Dispatch *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Dispatch-Array *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Dispatch-Config *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Dispatch-DBI *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Dispatch-FileRotate *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Dispatch-Perl *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Dispatchouli *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Handler *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Log4perl *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-LogLite *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Message *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Message-Simple *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Report *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Report-Optional *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Log-Trace *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Mac-Carbon *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Mac-SystemDirectory *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Make *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Memoize-ExpireLRU *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Memoize-Memcached *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Menlo *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Menlo-Legacy *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Meta-Builder *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MetaCPAN-API *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MetaCPAN-Client *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Method-Signatures *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Method-Signatures-Simple *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Metrics-Any *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Mixin-ExtraFields *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Mixin-ExtraFields-Param *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Mixin-Linewise *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Mo *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Mock-Quick *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Modern-Perl (devel/p5-Modern-Perl) Updated 1.20200211 to 1.20220515 2022-07-15 14:38:09 +00:00
p5-Module-Build *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Build-Tiny *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Build-WithXSpp *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Build-XSUtil *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Compile *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-CPANfile *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-CPANTS-Analyse *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Dependency *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-ExtractUse *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Find *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-FromPerlVer *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Implementation *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Install *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Install-AuthorRequires *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Install-AuthorTests *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Install-GithubMeta *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Install-ManifestSkip *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Install-PadrePlugin *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Install-ReadmeFromPod *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Install-Repository *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Install-RTx *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Install-Substitute *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Install-XSUtil *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Manifest *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Manifest-Skip *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Pluggable *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Refresh *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Runtime *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Runtime-Conflicts *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-ScanDeps *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Starter *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Starter-PBP *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Util *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Versions *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Module-Versions-Report *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Mojo-IOLoop-ForkCall *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Moo *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Moos *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Moose p5-Moose: fix typo "can to" in DESCR, re-wrap description 2022-07-30 06:49:04 +00:00
p5-Moose-Autobox *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Moose-Policy *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Aliases *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-App *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-App-Cmd *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-ArrayRef *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Attribute-Chained *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-AttributeHelpers *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Attributes-Curried *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-ClassAttribute *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-CompileTime-Traits *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-ConfigFromFile *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Daemonize *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Declare *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Emulate-Class-Accessor-Fast *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-FollowPBP *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Getopt *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Has-Options *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-InsideOut *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-LazyRequire *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-MarkAsMethods *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Meta-TypeConstraint-ForceCoercion *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Method-Signatures *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-MethodAttributes *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-MultiInitArg *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-NonMoose *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Object-Pluggable *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-OneArgNew *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Param *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Params-Validate *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-POE *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Role-Parameterized *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Role-Tempdir *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Role-WithOverloading *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-SemiAffordanceAccessor *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-SetOnce *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-SimpleConfig *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Singleton *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-StrictConstructor *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Traits *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Traits-Pluggable *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Types *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Types-Common *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Types-JSON *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Types-LoadableClass *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Types-LogAny *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Types-Path-Class *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Types-Perl *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Types-Stringlike *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Types-Structured *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooseX-Types-URI *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooX-ClassAttribute *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooX-Cmd *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooX-ConfigFromFile *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooX-File-ConfigDir *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooX-HandlesVia *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooX-late *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooX-Locale-Passthrough *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooX-Log-Any *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooX-Options *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooX-Roles-Pluggable *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooX-StrictConstructor *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooX-Types-MooseLike *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooX-Types-MooseLike-Numeric *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MooX-TypeTiny *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Mouse *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MouseX-Getopt *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MouseX-NativeTraits *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MouseX-Types *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MouseX-Types-Path-Class *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-MRO-Compat *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-multidimensional *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-namespace-autoclean *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-namespace-clean *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Net-CIDR *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Net-LDAP-Batch *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Net-LDAP-Class *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Net-LDAP-Server-Test *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Net-LDAP-SID *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Net-Netmask *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Object-Accessor *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Object-Declare *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Object-Event *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Object-InsideOut *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Object-Pluggable *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Object-Realize-Later *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Object-Signature *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-OLE-Storage_Lite *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-OOTools *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Ouch *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Package-Constants *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Package-DeprecationManager *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Package-Generator *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Package-Stash *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Package-Stash-XS *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Package-Variant *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PadWalker *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-pango *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PAR *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PAR-Dist *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PAR-Packer *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Parallel-ForkManager *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Parallel-Prefork *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Params-Classify *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Params-Coerce *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Params-Util *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Params-Validate *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Params-ValidationCompiler *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Parse-CPAN-Packages *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Parse-Distname *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Parse-ErrorString-Perl *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Parse-ExuberantCTags *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Parse-Method-Signatures *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Parse-PMFile *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Parse-RecDescent *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Parse-Yapp *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PatchReader *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Path-Class *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Path-Class-File-Stat *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Path-Dispatcher *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Path-Dispatcher-Declarative *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Path-FindDev *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Path-IsDev *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Path-Iter *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PathTools *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Pegex *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Perl-APIReference *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Perl-Critic *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-perl-headers *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Perl-MinimumVersion *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Perl-PrereqScanner *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Perl-PrereqScanner-NotQuiteLite *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Perl-Tidy *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Perl-Version *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Perl4-CoreLibs *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Perl6-Export *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Perl6-Export-Attrs *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Perl6-Junction *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Perl6-Slurp *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PerlIO-eol *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PerlIO-gzip *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PerlIO-utf8_strict *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PerlIO-via-Bzip2 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PerlIO-via-dynamic *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PerlIO-via-symlink *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PerlIO-via-Timeout *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PerlX-Maybe *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PHP-Serialization *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-pip *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PkgConfig *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-POE *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-POE-Component-Cron *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-POE-Component-Pluggable *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-POE-Component-Schedule *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-POE-Component-Syndicator *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-POE-Test-Loops *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-POEx-Types *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PPI Update to 1.276 2022-07-31 12:44:28 +00:00
p5-PPI-PowerToys *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PPI-XS *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PPIx-Regexp *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PPIx-Utilities *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-prefork *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Probe-Perl *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Proc-Background *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Proc-Daemon *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Proc-InvokeEditor *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Proc-PID-File *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Proc-Pidfile *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Proc-ProcessTable *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Proc-Queue *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Proc-Simple *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Proc-Wait3 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Proc-WaitStat *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-PV *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Python-Serialise-Marshal *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Readonly *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Readonly-XS *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Ref-Util *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Ref-Util-XS *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Regexp-Assemble *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Regexp-MatchContext *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Regexp-Parser *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Regexp-Shellish *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Regexp-Trie *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Reply *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Return-MultiLevel *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Return-Value *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-rlib *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Role-Basic *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Role-HasMessage *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Role-Identifiable *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Role-Tiny *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Rose-Object *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-RT-Authen-ExternalAuth *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-RT-Extension-ArticleTemplates *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Safe-Hole *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Safe-Isa *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Scalar-Defer *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Scalar-List-Utils *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Scalar-Util-Refcount *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Schedule-RateLimiter *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Scope-Guard *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Scope-Upper *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-SDL *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Search-Elasticsearch *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Set-Array *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Set-IntSpan *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Set-Object *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Set-Scalar *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Shell-Config-Generate *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Shell-Guess *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Shell-Perl *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-ShipIt *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Signal-Mask *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-signatures *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Smart-Comments *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Software-License *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sort-Key *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sort-Maker *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sort-Naturally *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sort-Versions *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Specio *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Spiffy *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Spoon *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Stream-Buffered *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-strictures *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-String-Escape *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-String-Format *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-String-PerlIdentifier *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-String-Print *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-String-Util *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Struct-Dumb *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sub-Exporter *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sub-Exporter-ForMethods *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sub-Exporter-GlobExporter *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sub-Exporter-Progressive *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sub-HandlesVia *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sub-Identify *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sub-Info *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sub-Install *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sub-Installer *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sub-Name *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sub-Override *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sub-Quote *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sub-Uplevel *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-subversion *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-SUPER *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-SVN-Class *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-SVN-Dump *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-SVN-Mirror *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-SVN-Notify *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-SVN-Simple *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Symbol-Global-Name *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-syntax *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Syntax-Keyword-Junction *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sys-Mmap *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Sys-Syscall *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-System-Command *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Taint-Util *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-TAP-Formatter-HTML *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-TAP-Harness-Archive *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Task-Weaken *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tee *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Template-Plugin-Handy *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Template-Plugin-HashMerge *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Template-Plugin-ListMoreUtils *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Template-Plugin-ListUtil *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Template-Plugin-VMethods *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-Animation *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-ANSIColor *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-Encoding *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-ProgressBar *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-ProgressBar-Quiet *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-ProgressBar-Simple *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-Prompt *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-ReadKey *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-ReadLine-Gnu *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-ReadLine-Perl *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-ReadLine-TTYtter *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-ReadPassword *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-Screen *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-Shell *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-ShellUI *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-Size *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-Size-Any *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-Size-Perl *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-Table *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Term-UI *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Aggregate *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Alien-CPP *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-API *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Approx *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Assertions *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Base *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-BDD-Cucumber *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Bits *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-CheckDeps *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-CheckManifest *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Class *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-ClassAPI *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-CleanNamespaces *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Cmd *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Command-Simple *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Compile *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Continuous *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-CPAN-Meta *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-CPAN-Meta-JSON *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-CPAN-Meta-YAML *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Deep *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-DependentModules *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Differences *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Dir *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-DistManifest *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Distribution *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-EOL *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Exception *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Exit p5-Return-MultiLevel is used by this module at runtime; promote from 2022-08-14 16:56:31 +00:00
p5-Test-Expect *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-FailWarnings *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Fatal *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-File *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-File-Contents *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-File-ShareDir *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Fixture-DBIC-Schema *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-HexDifferences *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-HexString *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-HTTP-LocalServer *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Identity *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-InDistDir *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Inline *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Inter *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Kwalitee *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-LeakTrace *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-LectroTest *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Lib *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-LoadAllModules *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Log4perl *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-LongString *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Manifest *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Memory-Cycle *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Metrics-Any *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-MinimumVersion *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Mock-Guard *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Mock-LWP *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-MockModule *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-MockObject *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Modern *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-More-Behaviour *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-More-UTF8 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Most *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Needs *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-NiceDump *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-NoTabs *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-NoWarnings *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Object *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Output *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Perl-Critic *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Pod *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Pod-Coverage *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Pod-Spelling-CommonMistakes *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-POE-Client-TCP *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-POE-Server-TCP *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Refcount *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Reporter *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Requires *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Requires-Git *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Roo *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Script *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Script-Run *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-SharedFork *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Snapshot *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Spec *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Spelling *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Stream *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Strict *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-SubCalls *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Taint *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-TempDir *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-TempDir-Tiny *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-TinyMocker *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Toolbox *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Trap *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Unit *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-UseAllModules *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-utf8 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Version *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Warn *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Warnings *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Weaken *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-Without-Module *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-WWW-Selenium *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-YAML-Meta *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test-YAML-Valid *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test2-Plugin-NoWarnings *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test2-Suite *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Test2-Tools-Explain *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-TheSchwartz *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-thrift *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Throwable *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tie-Array-AsHash *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tie-Array-Sorted *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tie-Cache *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tie-Cache-LRU *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tie-Cache-LRU-Expires *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tie-CPHash *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tie-Cycle *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tie-Function *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tie-IxHash *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tie-LLHash *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tie-RefHash-Weak *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tie-RegexpHash *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tie-Simple *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tie-ToObject *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tree-DAG_Node *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tree-R *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tree-Simple *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Tree-Simple-VisitorFactory *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Try-Tiny *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-TryCatch *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Type-Tiny *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Type-Tiny-XS *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Types-Serialiser *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-UNIVERSAL-can *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-UNIVERSAL-isa *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-UNIVERSAL-moniker *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-UNIVERSAL-require *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-UUID-Tiny *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Variable-Magic *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Want *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-WeakRef *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-Wx-Perl-DataWalker Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
p5-XString *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p5-XXX *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
p8-platform
packr Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
palmpower
pango pango: updated to 1.50.8 2022-07-13 20:32:01 +00:00
pangomm *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
pangomm2.48 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
pangox-compat
papaya *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
pardiff
patch
patchelf patchelf: set GCC_REQD to 7 for std::optional 2022-08-17 16:14:01 +00:00
patchutils *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
pax-utils pax-utils: update to 1.3.5. 2022-07-31 17:10:15 +00:00
pcc-libs
pccts
pcl-cvs Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
pcre
pcre++
pcre-ocaml Replaced mk/ocaml.mk with lang/ocaml/ocaml.mk in ocaml packages 2022-05-24 18:59:20 +00:00
pcre2
pdcurses
pear-Console_CommandLine
pedisassem
phabricator
php-base58
php-composer php-composer: Update to 2.2.17 2022-07-27 13:42:53 +00:00
php-ffi
php-gearman
php-gettext
php-gmp
php-igbinary
php-libawl php-libawl: Attempt to fix GITLAB_* misuse. 2022-06-22 10:19:50 +00:00
php-memcache
php-memcache2
php-memcache4
php-memcached
php-mode Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
php-msgpack
php-opcache
php-pcntl
php-posix
php-psr
php-pthreads
php-raphf
php-raphf2 devel/php-raphf2: switch to use PHP_VERSIONS_ACCEPTED 2022-05-28 14:57:32 +00:00
php-shmop
php-sysvmsg
php-sysvsem
php-sysvshm
php-xcache
php-xdebug devel/php-xdebug: update to 3.1.5 2022-06-07 14:27:10 +00:00
phpstorm-bin *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
physfs
picasm
picopb
picotrace picotrace: apply upstream patch to fix build on NetBSD 9 2022-08-15 23:04:38 +00:00
picp
picprg
pilrc
pipestatus
pkg-config *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
pkgconf
plasma-wayland-protocols
ply *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
pmccabe
poco
pointfree
polly polly: fix checksum for patch 2022-08-15 19:07:20 +00:00
popt
poxml
prcs *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
ProjectCenter
protobuf {py-,}protobuf: update to [34].21.5 2022-08-18 19:30:39 +00:00
protobuf-c protobuf-c: update to 1.4.1. 2022-08-18 19:24:09 +00:00
pstreams
pth
pthread-sem
purpose Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
pvs Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
pwlib
py-absl-py
py-adb
py-aenum
py-ailment
py-aiofiles
py-aiosignal
py-aiounittest py-aiounittest: updated to 1.4.2 2022-08-12 08:09:12 +00:00
py-allpairspy
py-angr
py-anyio py-anyio: updated to 3.6.1 2022-05-25 09:28:57 +00:00
py-anytree
py-apipkg
py-appdirs
py-approvaltests Update to 5.4.1. From the changelog: 2022-08-08 11:42:09 +00:00
py-archinfo
py-argcomplete
py-argh
py-argparse
py-args
py-astor
py-astroid py-astroid: updated to 2.12.2 2022-07-18 18:57:41 +00:00
py-astunparse
py-async-timeout
py-async_generator
py-at-spi
py-at-spi2
py-atomicwrites py-atomicwrites: updated to 1.4.1 2022-07-11 10:27:09 +00:00
py-atpublic
py-attrs
py-automat
py-autopep8
py-babel
py-backcall
py-backports
py-backports.cached-property
py-backports.functools_lru_cache
py-backports.os
py-backports.shutil_get_terminal_size
py-backports_abc
py-behave
py-beniget
py-binaryornot *: use versioned_dependencies.mk for py-chardet 2022-07-03 12:13:07 +00:00
py-bintrees
py-bitarray py-bitarray: updated to 2.5.1 2022-05-14 04:56:19 +00:00
py-bitstring
py-blessings
py-blinker
py-boltons
py-boost
py-bugzilla py-python-bugzilla: update to 3.2.0. 2022-07-08 14:01:33 +00:00
py-build py-build: unclog for Python 3.7 2022-08-01 08:12:36 +00:00
py-buildbot
py-buildbot-badges
py-buildbot-console-view
py-buildbot-grid-view
py-buildbot-pkg
py-buildbot-waterfall-view
py-buildbot-worker
py-buildbot-www
py-bump2version
py-cachecontrol py-cachecontrol: updated to 0.12.11 2022-05-23 11:56:16 +00:00
py-cached-property
py-cachelib
py-cachetools
py-cachy
py-canonicaljson py-canonicaljson: updated to 1.6.2 2022-07-28 06:49:52 +00:00
py-capstone
py-case
py-cffi py-cffi: updated to 1.15.1 2022-07-01 17:10:46 +00:00
py-characteristic
py-checker
py-cheetah
py-cheetah3
py-cle
py-click
py-click-didyoumean
py-click-log
py-click-plugins
py-click-repl
py-click-threading
py-click7
py-clickclick
py-codespell
py-codestyle
py-cogapp
py-collections-extended py-collections-extended: not for Python 2.7 2022-06-18 17:05:00 +00:00
py-compizconfig
py-configargparse
py-configobj
py-configparser
py-configupdater
py-confuse
py-constantly
py-constants
py-construct
py-contextlib2
py-cookiecutter
py-cooldict
py-coverage
py-coverage-enable-subprocess
py-cparser
py-CppHeaderParser
py-cpplint py-cpplint: restrict to python3 2022-07-11 08:48:48 +00:00
py-cppy
py-crayons
py-curses
py-cursespanel
py-curtsies
py-cwcwidth
py-cyordereddict
py-cython py-cython: updated to 0.29.32 2022-08-01 07:58:05 +00:00
py-cytoolz py-cytoolz: updated to 0.12.0 2022-07-11 13:01:23 +00:00
py-d2to1
py-daemon
py-daemonize
py-dash
py-ddt
py-debugpy
py-decorator
py-deepstate
py-deprecated
py-deprecation
py-dialog
py-dict2xml
py-dictpath
py-distlib py-distlib: mark as not for Python 2.7 2022-08-10 07:41:04 +00:00
py-distorm3
py-distro
py-doc8
py-docopt
py-docstyle py-docstyle: update to 6.1.1. 2022-06-18 22:06:28 +00:00
py-docstyle3 devel/py-docstyle3: import py-docstyle-3.0.0nb2 2022-06-18 21:58:03 +00:00
py-doctor
py-dogpile-cache
py-dotenv py-dotenv: updated to 0.20.0 2022-07-21 09:38:30 +00:00
py-dulwich py-dulwich: updated to 0.20.45 2022-08-05 14:03:36 +00:00
py-editorconfig-core
py-empty-files
py-entrypoints
py-enum34
py-exam
py-exceptiongroup devel/py-exceptiongroup: import py-exceptiongroup-1.0.0rc8 2022-07-03 12:36:06 +00:00
py-execnet
py-extension-helpers
py-extras
py-extratools
py-factory_boy
py-fakefs
py-faker
py-falcon
py-fann2
py-fasteners
py-fastimport
py-filebytes
py-filechunkio
py-filelock py-filelock: updated to 3.7.1 2022-06-08 17:29:40 +00:00
py-fixtures
py-flake8
py-flake8-3
py-flake8-docstrings py-flake8-docstrings: does not support python2 2022-07-12 09:28:45 +00:00
py-flake8-import-order py-flake8-import-order: restrict to python 2.7 2022-06-18 21:25:50 +00:00
py-flake8-polyfill
py-flakes
py-flaky
py-flexmock
py-flit
py-flit_core
py-flit_scm devel/py-flit_scm: import py-flit_scm-1.6.2 2022-07-03 12:31:48 +00:00
py-flufl.i18n
py-flufl.lock
py-flufl.testing
py-freezegun
py-frozendict py-frozendict: updated to 2.3.4 2022-07-26 08:43:00 +00:00
py-frozenlist py-frozenlist: update to 1.3.1. 2022-08-07 08:03:35 +00:00
py-func_timeout
py-funcparserlib
py-funcsigs
py-functools32
py-future
py-futures
py-fuzzywuzzy
py-game py-game: fix png library name. 2022-07-27 19:05:58 +00:00
py-gast
py-gcovr
py-generate
py-gflags
py-gi-docgen py-gi-docgen: Fix PKGMANDIR=share/man. 2022-05-26 11:09:54 +00:00
py-gidgethub
py-gitdb
py-gitinspector
py-gitinspector-devel
py-gitpython py-gitpython: updated to 3.1.27 2022-08-22 12:47:31 +00:00
py-gobject
py-gobject-shared
py-gobject3
py-gobject3-common
py-gobject32
py-google-api-core
py-google-apputils
py-google-i18n-address py-google-i18n-address: updated to 2.5.2 2022-08-05 20:24:41 +00:00
py-googleapis-common-protos
py-greenlet
py-guppy3
py-h5py
py-hamcrest
py-hatch-vcs py-hatch-vcs: added version 0.2.0 2022-06-13 19:27:45 +00:00
py-hatchling (devel/py-hatchling) Fix build, by adding DEPENDS+=py-pluggy 2022-06-05 02:56:20 +00:00
py-hexbytes
py-hg-evolve py-hg-evolve: update to 10.5.2. 2022-07-17 09:53:00 +00:00
py-hg-fastimport *: update for py-mercurial removed python 2.x support 2022-07-17 09:55:35 +00:00
py-hg-git
py-hglib
py-hgtools
py-hyperscan
py-hypothesis py-hypothesis: add missing dependency on py-exceptiongroup 2022-07-03 12:44:09 +00:00
py-hypothesis4
py-hypothesmith
py-idle
py-ijson
py-immutabledict
py-importlib-metadata py-importlib-metadata: updated to 4.12.0 2022-08-02 11:20:02 +00:00
py-importlib-metadata2
py-importlib-resources py-importlib-resources: limit to python 3 2022-07-12 09:18:36 +00:00
py-incremental
py-iniconfig
py-InlineEgg
py-inquirer
py-intelhex
py-intervaltree
py-iowait
py-ipaddr
py-ipykernel py-ipykernel: updated to 6.15.1 2022-07-08 17:51:39 +00:00
py-ipython py-ipython: updated to 8.4.0 2022-05-29 18:50:05 +00:00
py-ipython_genutils
py-iso-639
py-iso3166 py-iso3166: updated to 2.1.1 2022-07-25 16:27:11 +00:00
py-isort
py-isort4 py-isort4: convert lama dependency to versioned_dependencies 2022-06-18 21:47:01 +00:00
py-itanium_demangler
py-jaraco.classes py-jaraco.classes: updated to 3.2.2 2022-08-02 09:56:13 +00:00
py-jaraco.envs
py-jaraco.functools
py-jaraco.itertools
py-jaraco.path
py-jaraco_util
py-jersey
py-joblib
py-jupyter-console py-jupyter-console: updated to 6.4.4 2022-07-01 18:06:01 +00:00
py-jupyter_client py-jupyter_client: updated to 7.3.4 2022-06-17 10:54:56 +00:00
py-jupyter_core
py-kafka-python
py-kaitaistruct
py-kitchen
py-kivy make the files the package installs not writable by group or other 2022-06-15 08:34:57 +00:00
py-kivy-garden
py-kjbuckets
py-lama py-lama: update to 8.3.8. 2022-06-18 22:35:24 +00:00
py-lama-quotes devel/py-lama-quotes: import py-lama-quotes-0.1.0 2022-06-18 22:30:30 +00:00
py-lama7 *: adapt for py-docstyle split 2022-06-18 22:02:38 +00:00
py-lazr.config
py-lazr.delegates
py-lazy-object-proxy
py-libevent-rpcgen
py-libmc
py-libusb1
py-limits
py-line_profiler py-line_profiler: updated to 3.5.1 2022-08-03 13:44:30 +00:00
py-linecache2
py-llvmlite py-llvmlite: mark as BROKEN 2022-08-15 19:14:43 +00:00
py-lockfile
py-logan
py-logbook
py-logilab-common
py-lru-dict py-lru-dict: updated to 1.1.8 2022-07-12 07:43:12 +00:00
py-lupa
py-macaroons
py-macholib
py-mako
py-mando
py-manticore
py-mccabe
py-mccabe06
py-memcached
py-memory-profiler *: py37 incomptaibiliy via matplotlib via numpy 2022-05-15 10:26:26 +00:00
py-mercurial py-mercurial: update to 6.2.1. 2022-07-31 10:50:11 +00:00
py-mergedeep
py-minidump
py-minimock
py-mixbox
py-mmh3
py-mock
py-modulegraph
py-more-itertools py-more-itertools: updated to 8.14.0 2022-08-10 11:45:02 +00:00
py-more-itertools2
py-mox
py-msgpack py-msgpack: update to 1.0.4. 2022-07-03 13:31:08 +00:00
py-mulpyplexer
py-multipledispatch
py-nest-asyncio
py-newt
py-nose
py-nose-exclude
py-nose2
py-nosexcover
py-ode
py-olefile
py-open-vcdiff
py-Optik
py-ordered-set
py-oset
py-outcome py-outcome: updated to 1.2.0 2022-08-10 09:03:46 +00:00
py-packageurl py-packageurl: does not support python 2 2022-07-13 19:42:31 +00:00
py-packaging
py-packaging2 py-packaging2: simplify 2022-07-11 08:51:08 +00:00
py-parameterized
py-ParamUnittest
py-path
py-path.py
py-pathlib
py-pathlib2 py-pathlib2: updated to 2.3.7.1 2022-05-23 08:31:51 +00:00
py-pathspec
py-pbr
py-pebble
py-pep8
py-pep517 py-pep517: updated to 0.13.0 2022-08-01 07:52:59 +00:00
py-pep621
py-pexpect
py-pip py-pip: updated to 22.2.2 2022-08-10 09:17:47 +00:00
py-pip-api py-pip-api: update to 0.0.30. 2022-07-24 10:53:29 +00:00
py-pip-requirements-parser devel/py-pip-requirements-parser: import py-pip-requirements-parser-31.2.0 2022-07-24 11:03:21 +00:00
py-pip-run py-pip-run: updated to 8.8.1 2022-07-07 11:53:09 +00:00
py-pip20
py-pkgconfig
py-pkginfo py-pkginfo: updated to 1.8.3 2022-07-20 08:35:02 +00:00
py-pluggy
py-plumbum
py-ply
py-poetry py-poetry: updated to 1.1.15 2022-08-22 17:59:50 +00:00
py-poetry-core
py-polib
py-pooch
py-pqueue
py-prefixspan
py-pretend
py-progress
py-progressbar2
py-prompt_toolkit py-prompt_toolkit: updated to 3.0.30 2022-07-01 17:31:51 +00:00
py-prompt_toolkit1
py-proteus
py-protobuf {py-,}protobuf: update to [34].21.5 2022-08-18 19:30:39 +00:00
py-py
py-py2app
py-pybind11
py-pycotap
py-pydantic py-pydantic: fix 2022-08-01 18:47:40 +00:00
py-pydispatcher
py-pyelftools py-pyelftools: updated to 0.28 2022-08-01 10:09:34 +00:00
py-pygit2
py-pylint py-pylint: updated to 2.14.5 2022-07-18 18:58:30 +00:00
py-pylint-plugin-utils
py-pylru
py-Pympler
py-pyobjc
py-pyobjc-core
py-pyobjc-framework-Accounts
py-pyobjc-framework-AddressBook
py-pyobjc-framework-AppleScriptKit
py-pyobjc-framework-AppleScriptObjC
py-pyobjc-framework-ApplicationServices
py-pyobjc-framework-Automator
py-pyobjc-framework-AVFoundation
py-pyobjc-framework-AVKit
py-pyobjc-framework-CalendarStore
py-pyobjc-framework-CFNetwork
py-pyobjc-framework-CloudKit
py-pyobjc-framework-Cocoa
py-pyobjc-framework-Collaboration
py-pyobjc-framework-ColorSync
py-pyobjc-framework-Contacts
py-pyobjc-framework-ContactsUI
py-pyobjc-framework-CoreAudio
py-pyobjc-framework-CoreBluetooth
py-pyobjc-framework-CoreData
py-pyobjc-framework-CoreLocation
py-pyobjc-framework-CoreMedia
py-pyobjc-framework-CoreML
py-pyobjc-framework-CoreServices
py-pyobjc-framework-CoreSpotlight
py-pyobjc-framework-CoreText
py-pyobjc-framework-CoreWLAN
py-pyobjc-framework-CryptoTokenKit
py-pyobjc-framework-DictionaryServices
py-pyobjc-framework-DiskArbitration
py-pyobjc-framework-EventKit
py-pyobjc-framework-ExceptionHandling
py-pyobjc-framework-ExternalAccessory
py-pyobjc-framework-FinderSync
py-pyobjc-framework-FSEvents
py-pyobjc-framework-GameCenter
py-pyobjc-framework-GameController
py-pyobjc-framework-GameKit
py-pyobjc-framework-GameplayKit
py-pyobjc-framework-ImageCaptureCore
py-pyobjc-framework-InputMethodKit
py-pyobjc-framework-InstallerPlugins
py-pyobjc-framework-InstantMessage
py-pyobjc-framework-Intents
py-pyobjc-framework-IOSurface
py-pyobjc-framework-iTunesLibrary
py-pyobjc-framework-LatentSemanticMapping
py-pyobjc-framework-LaunchServices
py-pyobjc-framework-libdispatch
py-pyobjc-framework-LocalAuthentication
py-pyobjc-framework-MapKit
py-pyobjc-framework-MediaAccessibility
py-pyobjc-framework-MediaLibrary
py-pyobjc-framework-MediaPlayer
py-pyobjc-framework-Metal
py-pyobjc-framework-MetalKit
py-pyobjc-framework-ModelIO
py-pyobjc-framework-MultipeerConnectivity
py-pyobjc-framework-NaturalLanguage
py-pyobjc-framework-NetFS
py-pyobjc-framework-NetworkExtension
py-pyobjc-framework-NotificationCenter
py-pyobjc-framework-OpenDirectory
py-pyobjc-framework-Photos
py-pyobjc-framework-PhotosUI
py-pyobjc-framework-PreferencePanes
py-pyobjc-framework-PubSub
py-pyobjc-framework-QTKit
py-pyobjc-framework-Quartz
py-pyobjc-framework-SafariServices
py-pyobjc-framework-SceneKit
py-pyobjc-framework-ScreenSaver
py-pyobjc-framework-ScriptingBridge
py-pyobjc-framework-SearchKit
py-pyobjc-framework-Security
py-pyobjc-framework-SecurityInterface
py-pyobjc-framework-ServiceManagement
py-pyobjc-framework-Social
py-pyobjc-framework-SpriteKit
py-pyobjc-framework-StoreKit
py-pyobjc-framework-SyncServices
py-pyobjc-framework-SystemConfiguration
py-pyobjc-framework-Vision
py-pyobjc-framework-WebKit
py-pyparsing py-pyparsing: update to 3.0.9. 2022-05-18 08:50:41 +00:00
py-pyparsing2
py-Pyro
py-pyrsistent
py-pysha3
py-pysvn
py-pyte py-pyte: updated to 0.8.1 2022-07-05 10:16:35 +00:00
py-pytemplate
py-pyutil
py-pyvex devel/py-pyvex: detect powerpc and handle it as 32-bit ppc. 2022-06-23 13:50:05 +00:00
py-queuelib
py-quixote
py-radon py-radon: update to 5.1.0. 2022-06-18 22:16:09 +00:00
py-random2
py-rauth py-quickbooks, py-rauth: mark as python 3.x only 2022-07-08 14:04:09 +00:00
py-readlike
py-readline
py-rednose
py-reparser
py-repoze.lru
py-requests py-requests: update to 2.28.1. 2022-07-10 20:09:56 +00:00
py-requests-file py-requests-file: mark as not for python 2.7 2022-07-08 14:33:35 +00:00
py-requests-futures py-requests-futures: mark as not for python 3.x 2022-07-08 14:36:04 +00:00
py-requests-mock
py-requests-toolbelt py-requests-toolbelt: mark as python 3.x only 2022-07-08 14:12:12 +00:00
py-requests-unixsocket py-requests-unixsocket: updated to 0.3.0 2022-07-11 09:31:04 +00:00
py-requirements-parser py-requirements-parser: updated to 0.5.0 2022-07-20 08:33:11 +00:00
py-resolvelib
py-restructuredtext_lint
py-retry_decorator
py-rlp py-rlp: updated to 3.0.0 2022-07-12 07:28:27 +00:00
py-rope
py-rply
py-ruamel-base
py-ruamel-ordereddict
py-ruamel-yaml
py-ruamel-yaml-clib
py-sarge
py-scandir
py-scard py-scard: updated to 2.0.3 2022-07-14 10:57:52 +00:00
py-selectors2
py-semantic_version py-semantic_version: updated to 2.10.0 2022-07-05 08:10:24 +00:00
py-sentry-sdk
py-serpent py-serpent: updated to 1.41 2022-08-10 07:17:23 +00:00
py-setuptools py-setuptools: updated to 63.4.3 2022-08-11 06:23:56 +00:00
py-setuptools-rust py-setuptools-rust: updated to 1.5.1 2022-08-22 06:52:22 +00:00
py-setuptools44
py-setuptools_scm
py-setuptools_scm5 *: update for py-mercurial removed python 2.x support 2022-07-17 09:55:35 +00:00
py-setuptools_scm_git_archive
py-setuptools_trial
py-simplegeneric
py-singledispatch
py-slugify
py-smmap
py-sortedcontainers
py-Spans
py-speaklater
py-stem
py-stevedore
py-stsci.distutils
py-subprocess32
py-subversion *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
py-subvertpy
py-sure
py-sysctl
py-tenacity
py-termcolor
py-test
py-test-assume
py-test-asyncio py-test-asyncio: updated to 0.19.0 2022-08-03 11:42:57 +00:00
py-test-benchmark
py-test-cache
py-test-celery
py-test-cov
py-test-doctestplus
py-test-env
py-test-fixture-config
py-test-flake8
py-test-forked
py-test-freezegun
py-test-isort
py-test-lazy-fixture
py-test-localserver
py-test-mock
py-test-mypy
py-test-pylint
py-test-pythonpath
py-test-random-order
py-test-randomly
py-test-relaxed
py-test-rerunfailures
py-test-runner
py-test-shutil
py-test-subtests py-test-subtests: updated to 0.8.0 2022-07-05 18:02:19 +00:00
py-test-sugar py-test-sugar: updated to 0.9.5 2022-07-11 08:38:54 +00:00
py-test-testmon
py-test-timeout py-test-timeout: updated to 2.1.0 2022-07-14 13:35:21 +00:00
py-test-trio
py-test-utils
py-test-virtualenv
py-test-watch
py-test-xdist
py-test-xprocess
py-test4 py-test4: py-setuptools_scm is build, not test, dependency 2022-07-13 19:14:16 +00:00
py-testpath
py-testrepository
py-testresources
py-testscenarios
py-testtools
py-thrift
py-tlsh
py-toolz py-toolz: updated to 0.12.0 2022-07-11 13:00:41 +00:00
py-tortoisehg
py-tox
py-traceback2
py-traitlets py-traitlets: updated to 5.3.0 2022-07-02 08:01:07 +00:00
py-traitlets4
py-treq *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
py-trio py-trio: updated to 0.21.0 2022-06-09 15:53:27 +00:00
py-tryton Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
py-trytond
py-tubes
py-txaio
py-txgithub
py-txrequests py-txrequests: mark as only for python 3.x 2022-07-08 14:28:07 +00:00
py-typed-ast py-typed-ast: updated to 1.5.4 2022-06-08 17:18:47 +00:00
py-typeguard
py-types-setuptools py-types-setuptools: updated to 63.2.0 2022-07-20 08:47:05 +00:00
py-types-toml py-types-toml: updated to 0.10.8 2022-07-20 08:49:13 +00:00
py-types-ujson py-types-ujson: updated to 5.4.0 2022-07-11 06:17:55 +00:00
py-typing
py-typing-extensions py-typing-extensions: Avoid circular dependency with Python 3.7 2022-07-26 11:19:42 +00:00
py-typing-inspect
py-unit
py-unitgui
py-unittest-mixins
py-unittest2pytest
py-unpaddedbase64
py-urwid
py-usb
py-utils
py-uuid
py-uvloop
py-vcversioner
py-versioningit
py-vine
py-virtualenv py-virtualenv: updated to 20.15.1 2022-07-07 11:49:50 +00:00
py-visitor
py-vulture devel/py-vulture: import py-vulture-2.4 2022-06-18 22:30:01 +00:00
py-wasm
py-wcwidth
py-wheel
py-whichcraft
py-wrapt
py-xbe
py-xdg py-xdg: updated to 0.28 2022-08-05 07:22:49 +00:00
py-xdis py-xdis: updated to 6.0.4 2022-05-22 19:05:00 +00:00
py-xopen py-xopen: updated to 1.6.0 2022-08-11 06:29:32 +00:00
py-yapf
py-zanata-python-client py-zanata-python-client: update to 1.5.3. 2022-07-20 22:08:10 +00:00
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 *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
pythontidy *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
qbzr *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
qconf
qjson
qore-uuid-module
qtscriptgenerator
quilt *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
R-assertthat
R-BH
R-bindr
R-bit
R-bit64
R-blob Update to 1.2.3 2022-05-29 00:27:37 +00:00
R-brio
R-cachem
R-callr
R-caTools
R-checkmate
R-cli
R-cliapp
R-clipr
R-covr
R-crayon
R-cyclocomp
R-desc
R-devtools
R-diffobj
R-diffr
R-disposables
R-evaluate
R-fansi
R-fastmap
R-filelock
R-fs
R-gert
R-git2r
R-globals
R-glue
R-ini
R-inline
R-IRdisplay
R-IRkernel
R-iterators
R-lazyeval
R-lifecycle
R-lintr
R-lpSolve
R-magrittr
R-memoise
R-mockery
R-mockr
R-pak
R-pkgbuild
R-pkgcache
R-pkgconfig
R-pkgKitten
R-pkgload
R-plogr
R-prettycode
R-proto
R-purrr
R-R.methodsS3
R-R.oo
R-R.utils
R-R6 Update to 2.5.1 2022-05-28 23:45:45 +00:00
R-rappdirs
R-rcmdcheck
R-Rcpp
R-rematch
R-rematch2
R-remotes
R-renv
R-repr
R-rex
R-rio
R-rlang
R-roxygen2
R-rprojroot
R-RUnit
R-rversions
R-sessioninfo
R-tcltk2 *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
R-testit
R-testthat
R-tidyselect
R-tidyverse
R-tinytest
R-usethis
R-uuid R-uuid: carry over SunOS build fix from devel/libuuid 2022-08-19 11:36:25 +00:00
R-waldo
R-whisker
R-whoami
R-withr
R-xfun (devel/R-xfun) Updated 0.30 to 0.31 2022-05-30 15:11:36 +00:00
radamsa
radare2 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
radare2-cutter *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
ragel
rainbow-delimiters-el Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
range-v3
rapidsvn Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
ratfor
RBTools *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
rcs
rdp
RE-flex
re2
re2c
readline readline: add another --tag to a libtool invocation 2022-08-01 18:22:12 +00:00
rebar
rebar3 rebar3: Fix tests. 2022-06-20 07:40:39 +00:00
rebar21
refinecvs *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
reftools Revbump all Go packages after go118 security update 2022-08-12 20:37:59 +00:00
remake
Renaissance
reposurgeon *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
retrie hs*: recursive bump for new dependencies needed 2022-08-20 08:08:12 +00:00
rgbds
rinutils *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
robin-map
ropper *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
roundup *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
rox-lib *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
rpc2 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
rscode
rsltc Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
rt-mysql *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
rt-pgsql
rt4 rt4: actually add the patch 2022-08-21 20:52:52 +00:00
rttr
ruby-abstract
ruby-activejob52 www/ruby-rails52: update to 5.2.8.1 2022-07-13 14:41:07 +00:00
ruby-activejob60 www/ruby-rails60: update to 6.0.5.1 2022-07-13 14:44:08 +00:00
ruby-activejob61 www/ruby-rails61: update to 6.1.6.1 2022-07-13 14:46:23 +00:00
ruby-activejob70 www/ruby-rails70: update to 7.0.3.1 2022-07-13 14:48:47 +00:00
ruby-activemodel52 www/ruby-rails52: update to 5.2.8.1 2022-07-13 14:41:07 +00:00
ruby-activemodel60 www/ruby-rails60: update to 6.0.5.1 2022-07-13 14:44:08 +00:00
ruby-activemodel61 www/ruby-rails61: update to 6.1.6.1 2022-07-13 14:46:23 +00:00
ruby-activemodel70 www/ruby-rails70: update to 7.0.3.1 2022-07-13 14:48:47 +00:00
ruby-activestorage52 www/ruby-rails52: update to 5.2.8.1 2022-07-13 14:41:07 +00:00
ruby-activestorage60 www/ruby-rails60: update to 6.0.5.1 2022-07-13 14:44:08 +00:00
ruby-activestorage61 www/ruby-rails61: update to 6.1.6.1 2022-07-13 14:46:23 +00:00
ruby-activestorage70 www/ruby-rails70: update to 7.0.3.1 2022-07-13 14:48:47 +00:00
ruby-activesupport52 www/ruby-rails52: update to 5.2.8.1 2022-07-13 14:41:07 +00:00
ruby-activesupport60 www/ruby-rails60: update to 6.0.5.1 2022-07-13 14:44:08 +00:00
ruby-activesupport61 www/ruby-rails61: update to 6.1.6.1 2022-07-13 14:46:23 +00:00
ruby-activesupport70 www/ruby-rails70: update to 7.0.3.1 2022-07-13 14:48:47 +00:00
ruby-algorithms
ruby-amstd
ruby-approvaltests
ruby-assistance
ruby-atk
ruby-backports
ruby-bindata
ruby-bit-struct
ruby-blankslate
ruby-bond
ruby-bsearch
ruby-byaccr
ruby-byebug
ruby-c21e
ruby-celluloid
ruby-celluloid-essentials
ruby-celluloid-extras
ruby-celluloid-fsm
ruby-celluloid-pool
ruby-celluloid-supervision
ruby-classy_hash
ruby-cmd
ruby-concurrent-ruby devel/ruby-concurrent-ruby: update to 1.1.10 2022-08-11 12:51:13 +00:00
ruby-contracts
ruby-cucumber-core
ruby-cucumber-expressions
ruby-cucumber-messages
ruby-cucumber-tag-expressions
ruby-cucumber-wire
ruby-curses
ruby-daemon_controller
ruby-deep_merge
ruby-delayer
ruby-delayer-deferred
ruby-dep
ruby-deprecated
ruby-dhaka
ruby-diva
ruby-docile
ruby-eet
ruby-equatable
ruby-eventmachine
ruby-extlib
ruby-facade
ruby-fast_gettext devel/ruby-fast_gettext: update to 2.2.0 2022-08-11 13:04:15 +00:00
ruby-ffi
ruby-ffi-compiler
ruby-ffi-yajl
ruby-filesize
ruby-flexmock
ruby-forwardable-extended
ruby-gemcutter
ruby-generator
ruby-getopt
ruby-gettext
ruby-gettext-activerecord
ruby-gettext-rails
ruby-gettext-setup
ruby-gettext_i18n_rails
ruby-gio2
ruby-glib2
ruby-globalid
ruby-gobject-introspection
ruby-hashery
ruby-heckle
ruby-highline
ruby-hike
ruby-hocon
ruby-i18n
ruby-idn
ruby-iniparse
ruby-inline devel/ruby-inline: update to 3.12.6 2022-08-11 13:07:20 +00:00
ruby-instance_storage
ruby-io-like
ruby-iruby *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
ruby-kgio
ruby-lazy_priority_queue
ruby-libyajl2
ruby-little-plugger
ruby-locale
ruby-locale-rails
ruby-lockfile
ruby-log4r
ruby-logging devel/ruby-logging: update to 2.3.1 2022-08-11 13:16:02 +00:00
ruby-loquacious
ruby-marcel
ruby-memcache
ruby-memoist
ruby-mercenary
ruby-metaclass
ruby-metaid
ruby-metasm
ruby-middleware
ruby-minitest devel/ruby-minitest: update to 5.16.2 2022-08-11 13:24:37 +00:00
ruby-mixlib-authentication
ruby-mixlib-cli
ruby-mixlib-config devel/ruby-mixlib-config: update to 3.0.27 2022-08-11 13:31:21 +00:00
ruby-mixlib-log
ruby-mixlib-shellout devel/ruby-mixlib-shellout: update to 3.2.7 2022-08-11 13:55:17 +00:00
ruby-mkrf
ruby-mocha devel/ruby-mocha: update to 1.14.0 2022-08-11 14:03:25 +00:00
ruby-msgpack
ruby-multi_test
ruby-mustache
ruby-native-package-installer
ruby-ncurses
ruby-necromancer
ruby-needle
ruby-nenv
ruby-octokit
ruby-ole
ruby-open4
ruby-pango
ruby-parseconfig
ruby-parser
ruby-parsetree
ruby-parslet
ruby-pastel
ruby-pathname2
ruby-pathutil
ruby-pkg-config
ruby-polyglot
ruby-posix-spawn
ruby-power_assert ruby-power_assert: skip the package if the version is same as ruby-base 2022-08-19 14:16:47 +00:00
ruby-priority-queue
ruby-protobuf-cucumber
ruby-pycall *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
ruby-racc
ruby-railties52 www/ruby-rails52: update to 5.2.8.1 2022-07-13 14:41:07 +00:00
ruby-railties60 www/ruby-rails60: update to 6.0.5.1 2022-07-13 14:44:08 +00:00
ruby-railties61 www/ruby-rails61: update to 6.1.6.1 2022-07-13 14:46:23 +00:00
ruby-railties70 www/ruby-rails70: update to 7.0.3.1 2022-07-13 14:48:47 +00:00
ruby-randexp
ruby-rb-fsevent
ruby-rb-inotify
ruby-rb-kqueue
ruby-rbtree
ruby-rcsparse
ruby-rd-mode Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
ruby-readline
ruby-red-colors
ruby-red-datasets
ruby-redmine
ruby-redmine-flatly-light-theme
ruby-redmine-gitmike-theme
ruby-redmine-minimalflat-theme
ruby-redmine-minimalflat2-theme
ruby-redmine-purplemine2-theme
ruby-redmine-red-andy-theme
ruby-redmine-yh-theme
ruby-redmine41
ruby-redmine42 devel/ruby-redmin42: update to 4.2.7 2022-06-22 15:39:58 +00:00
ruby-redmine_code_review
ruby-redmine_lightbox2
ruby-redmine_theme_changer
ruby-redmine_work_time
ruby-ref
ruby-regexp_parser
ruby-rgl
ruby-ronn ruby-ronn: Remove man entries from ALTERNATIVES. 2022-07-18 12:44:47 +00:00
ruby-rspec
ruby-rspec-core
ruby-rspec-expectations
ruby-rspec-its
ruby-rspec-logsplit
ruby-rspec-mocks
ruby-rspec-rails
ruby-rspec-support
ruby-rspec_junit_formatter
ruby-ruby2_keywords
ruby-rugged
ruby-scanf
ruby-SDL
ruby-semantic_puppet
ruby-semverse
ruby-setup
ruby-sexp-processor
ruby-shoulda-context
ruby-shoulda-matchers
ruby-simple_uuid
ruby-simplecov
ruby-simplecov-html
ruby-simpleidn
ruby-spruz
ruby-stomp
ruby-stream
ruby-subexec
ruby-subversion *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
ruby-sync
ruby-templater
ruby-term-ansicolor
ruby-termcolor
ruby-test-spec
ruby-test-unit
ruby-test-unit-notify
ruby-thor
ruby-thrift
ruby-thrift_client
ruby-tins
ruby-tomlrb
ruby-tty-box
ruby-tty-color
ruby-tty-cursor
ruby-tty-prompt
ruby-tty-reader
ruby-tty-screen
ruby-tty-table
ruby-turn
ruby-uglifier
ruby-uuidtools
ruby-validatable
ruby-wisper
ruby-wmi-lite
ruby-yell
ruby-zeitwerk
ruby-zookeeper
ruby2ruby
rubymine-bin *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
rudiments
rvm
sablecc
samurai
scintilla
scmcvs
scons *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
sdcc *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
sdcc3 *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
SDL *: Recursive revbump from audio/pulseaudio 2022-07-02 16:53:03 +00:00
SDL2 SDL2: update to 2.24.0. 2022-08-22 10:51:11 +00:00
sdl12-compat Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
SDL_gfx
SDL_Pango
SDL_ttf
SDLmm
semantic Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
semi (devel/semi) buildlink3.mk to bbdb2 just renamed (to go with mail/wl-*) 2022-06-05 02:39:18 +00:00
sfsexp
sgb
shtk *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
shunit2
silc-toolkit
simde
skalibs skalibs: Update MAINTAINER 2022-05-18 00:28:02 +00:00
slib
slibtool
sloccount *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
smake
sml-mode Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
snappy
snappy-java10 snappy-java: Needs a sufficiently old JVM for source version 6. 2022-06-27 06:31:38 +00:00
sofia-sip
SOPE
SOPE4
SOPE5
sparse *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
sparsehash
spdlog
spiff
spin
splint
st
startbug1 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
stfl *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
stgit *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
subversion subversion: remove unknown configure option '--with-neon' 2022-08-17 19:59:39 +00:00
subversion-base *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
sunifdef *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
svn-bisect *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
swig *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
swig2 *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
swig3 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
syncdir
sysexits
tailor *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
talloc *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
taplo-lsp
tavrasm
tcl-tclcl
tclap
tcllib
tclreadline
teem
termcolor
tet3 *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
tevent tevent: updated to 0.13.0 2022-08-09 17:55:37 +00:00
tex-doclicense tex-doclicense{,-doc}: update to 3.2.0 2022-05-22 21:08:07 +00:00
tex-doclicense-doc tex-doclicense{,-doc}: update to 3.2.0 2022-05-22 21:08:07 +00:00
tex-etoolbox
tex-etoolbox-doc
tex-l3backend
tex-l3backend-doc
tex-l3experimental
tex-l3kernel
tex-l3kernel-doc
tex-l3packages
tex-l3packages-doc
tex-latexbug
tex-latexbug-doc
tex-lualibs
tex-lualibs-doc
tex-luatexbase
tex-luatexbase-doc
tex-multido
tex-multido-doc
tex-pgfopts
tex-pgfopts-doc
tex-pst-uml
tex-pst-uml-doc
tex-tlshell
tex-tlshell-doc
tex-xifthen
tex-xifthen-doc
texttest Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
threadweaver threadweaver: SunOS needs sys/loadavg.h for getloadavg(). 2022-05-13 16:06:46 +00:00
thrift
tig tig: update to 2.5.6. 2022-07-24 14:53:44 +00:00
tinycthread
tkcon
tkcvs
tkdiff
tl-expected
tla
tlsh
tmake *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
tokei
tomlplusplus
topgit
tpasm
tradcpp
transifex-client *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
tre
treecc
trio
tvision
ucl
ucommon *: Remove hardcoded -liconv / -lintl on SunOS. 2022-08-09 12:08:27 +00:00
ucpp
ugdb
umbrello Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
unibilium *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
unidiff Unidiff now retains more infromation found in diffs. 2022-07-15 02:51:20 +00:00
unifdef
unittest-cpp *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
uno
userspace-rcu
uthash
valgrind *: recursive bump for perl 5.36 2022-06-28 11:30:51 +00:00
vanessa_adt
vanessa_logger
vanessa_socket
vera++
visualvm
vtcl
wabt
waf *: Revbump packages that use Python at runtime without a PKGNAME prefix 2022-06-30 11:18:01 +00:00
wayland Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
wayland-protocols Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
woboq_codebrowser woboq_codebrowser: remove manual do-install target 2022-08-19 14:01:38 +00:00
xa65
xdelta
xdelta3
xfce4-conf Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
xfce4-dev-tools Bump all dependent packages of wayland (belatedly) 2022-08-11 05:08:00 +00:00
xmake
xorg-util-macros *: remove pkg-config from tools where no buildlink3.mk file is included 2022-07-25 11:12:18 +00:00
xsd
xxgdb
xxhash
yajl
yarn *: Revert nodeversion.mk changes. 2022-07-13 11:41:06 +00:00
yasm
z80-asm
zeal
ZenTest
zig-mode Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
zlib
zookeeper zookeeper: Use a sufficiently old JVM for source version 6 2022-06-27 06:32:44 +00:00
zzuf
Makefile devel/Makefile: + hs-bitvec 2022-08-22 10:06:27 +00:00