pkgsrc/devel
mef 44f5c32c72 (devel/R-testthat) Updated 2.3.2 to 3.0.0
# testthat 3.0.0

## 3rd edition

testhat 3.0.0 brings with it a 3rd edition that makes a number of breaking
changes in order to clean up the interface and help you use our latest
recommendations. To opt-in to the 3rd edition for your package, set
`Config/testthat/edition: 3` in your `DESCRIPTION` or use `local_edition(3)` in
individual tests. You can retrieve the active edition with `edition_get()`.
Learn more in `vignette("third-edition")`.

* `context()` is deprecated.

* `expect_identical()` and `expect_equal()` use `waldo::compare()` to
   compare actual and expected results. This mostly yields much more
   informative output when the actual and expected values are different,
   but while writing it uncovered some bugs in the existing comparison
   code.

* `expect_error()`, `expect_warning()`, `expect_message()`, and
  `expect_condition()` now all use the same underlying logic: they
  capture the first condition that matches `class`/`regexp` and
  allow anything else to bubble up (#998/#1052). They also warn if
  there are unexpected arguments that are never used.

* The `all` argument to `expect_message()` and `expect_warning()` is now
  deprecated. It was never a particularly good idea or well documented,
  and is now superseded by the new condition capturing behaviour.

* `expect_equivalent()`, `expect_reference()`, `expect_is()` and
  `expect_that()` are deprecated.

* Messages are no longer automatically silenced. Either use
  `suppressMessages()` to hide unimportant messages, or
  `expect_messsage()` to catch important messages (#1095).

* `setup()` and `teardown()` are deprecated in favour of test fixtures.
  See `vignette("test-fixtures")` for more details.

* `expect_known_output()`, `expect_known_value()`, `expect_known_hash()`,
  and `expect_equal_to_reference()` are all deprecated in favour of
  `expect_snapshot_output()` and `expect_snapshot_value()`.

* `test_that()` now sets a number of options and env vars to make output as
  reproducible as possible (#1044). Many of these options were previously
  set in various places (in `devtools::test()`, `test_dir()`, `test_file()`,
  or `verify_output()`) but they have now been centralised. You can use in
  your own code, or when debugging tests interactively with
  `local_test_context()`.

* `with_mock()` and `local_mock()` are deprecated; please use the mockr
  or mockery packages instead (#1099).

## Snapshot testing

New family of snapshot expectations (`expect_snapshot()`, `expect_snapshot_output()`, `expect_snapshot_error()`, and `expect_snapshot_value()`) provide "snapshot" tests, where the expected results are stored in separate files in `test/testthat/_snaps`. They're useful whenever it's painful to store expected results directly in the test files.

`expect_snapshot_file()` along with `snapshot_review()` help snapshot
more complex data, with initial support for text files, images, and data frames (#1050).

See `vignette("snapshotting")` for more details.

## Reporters

* `CheckReporter` (used inside R CMD check) now prints out all problems
  (i.e. errors, failures, warnings and skips; and not just the first 10),
  lists skips types, and records problems in machine readable format in
  `tests/testthat-problems.rds` (#1075).

* New `CompactProgressReporter` tweaks the output of `ProgressReporter` for
  use with a single file, as in `devtools::test_file()`. You can pick a
  different default by setting `testthat.default_compact_reporter` to
  the name of a reporter.

* `ProgressReporter` (the default reporter) now keeps the stack traces of
  an errors that happen before the before test, making problems substantially
  easier to track down (#1004). It checks if you've exceeded the maximum number
  of failures (from option `testthat.progress.max_fails`) after each
  expectation, rather than at the end of each file (#967). It also gains
  new random praise options that use emoji, and lists skipped tests by type
  (#1028).

* `StopReporter` adds random praise emoji when a single test passes (#1094).
  It has more refined display of failures, now using the same style
  as `CompactProgressReporter` and `ProgressReporter`.

* `SummaryReporter` now records file start, not just context start. This
  makes it more compatible with modern style which does not use `context()`
  (#1089).

* All reporters now use exactly the same format when reporting the location
  of an expectation.

* Warnings now include a backtrace, making it easier to figure
  out where they came from.

* Catch C++ tests now provide detailed results for each test.
  To upgrade existing code, re-run `testthat::use_catch()` (#1008).

## Fixures

* New `vignette("test-fixtures")` describes test fixtures; i.e. how to
  temporarily and cleanly change global state in order to test parts of
  your code that otherwise would be hard to run (#1042). `setup()` and
  `teardown()` are superseded in favour of test fixtures.

* New `teardown_env()` for use with `withr::defer()`. This allows you to
  run code after all other tests have been run.

## Skips

* New `vignette("skipping")` gives more general information on skipping
  tests, include some basics on testing skipping helpers (#1060).

* `ProgressReporter()` and `CheckReporter()` list the number of skipped tests
  by reason at the end of the reporter. This makes it easier to check that
  you're not skipping the wrong tests, particularly on CI services (#1028).

## Test running

* `test_that()` no longer triggers an error when run outside of tests;
  instead it produces a more informative summary of all failures, errors,
  warnings, and skips that occurred inside the test.

* `test_that()` now errors if `desc` is not a string (#1161).

* `test_file()` now runs helper, setup, and teardown code, and has the
  same arguments as `test_dir()` (#968). Long deprecated `encoding` argument
  has been removed.

* `test_dir()` now defaults `stop_on_failure` to `TRUE` for consistency with
  other `test_` functions. The `wrap` argument has been deprecated; it's not
  clear that it should ever have been exposed.

* New `test_local()` tests a local source package directory. It's equivalent
  to `devtools::test()` but doesn't require devtools and all its dependencies
  to be installed (#1030).

## Minor improvements and bug fixes

* testthat no longer supports tests stored in `inst/tests`. This has been
  deprecated since testthat 0.11.0 (released in 2015). `test_package()`
  (previously used for running tests in R CMD check) will fail silently
  if no tests are found to avoid breaking old packages on CRAN (#1149).

* `capture_output()` and `verify_output()` use a new `testthat_print()`
  generic. This allows you to control the printed representation of your
  object specifically for tests (i.e. if your usual print method shows
  data that varies in a way that you don't care about for tests) (#1056).

* `context_start_file()` is now exported for external reporters (#983, #1082).
  It now only strips first instance of prefix/suffix (#1041, @stufield).

* `expect_error()` no longer encourages you to use `class`. This advice
  one type of fragility at the expense of creating a different type (#1013).

* `expect_known_failure()` has been removed. As far as I can tell it was
  only ever used by testthat, and is rather fragile.

* `expect_true()`, `expect_false()`, and `expect_null()` now use waldo to
  produce more informative failures.

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