pkgsrc/sysutils
nia f1ea29cbcb vifm: Update to 0.11
September 24, 2020
==================

Vifm v0.11
----------

New version finally updates format of vifminfo file unblocking changes like
persistent tabs, sessions and timestamp-based merging of histories.  In
addition to that there were a number of improvements in user interface and
multiple performance-related improvements.

Thanks to everyone who tried out the beta.

Main changes:
 - added persistent tabs;
 - added sessions;
 - new format of vifminfo file (old version is imported on first run);
 - smarter merging of histories between runs that avoids dropping of new
   entries;
 - version of default color scheme for 256-color terminals;
 - make tab labels customizable;
 - try to keep ratio of pane sizes constant on resizes, restarts and tab
   switching;
 - various performance improvements.

More detailed list of changes.

Normal and visual modes:
 - added gF normal mode key which acts like gf, but goes all the way to the
   ultimate target of the chain of symbolic links (thanks to Alexandre Viau);
 - improve navigation on gf key.  Do fewer refreshes and disable filters to
   make target visible.

Core:
 - more sensible merging of histories from multiple instances in vifminfo file
   (avoids dropping of new entries);
 - invalidate cached directory information (size or number of files) on inode
   change (thanks to Jose Riha, a.k.a. jose1711);
 - invalidate cached directory size when using it to compute size of some
   parent directory;
 - improve cursor positioning after file operations;
 - made it possible to escape commas in patterns (as usual, by doubling)
   (thanks to filterfalse).

Command-line mode:
 - added :tabo[nly] command that closes all tabs but the current one;
 - added :session and :delsession commands to manage sessions (thanks to Marcos
   Cruz);
 - added optional "full" parameter for the :restart command, which makes it
   discard essentially all context.  This is useful with persistent tabs
   (thanks to Yusuf Aktepe);
 - don't reset histories of views in inactive tabs on :restart;
 - improve differentiation between association and list forms of :colorscheme
   command on startup.  This is important if list contains name of color scheme
   that doesn't exist.

:set command and options:
 - added "tabs" value to 'vifminfo' option.  It enables persistent tabs (thanks
   to Cosmin Popescu, a.k.a. cosminadrianpopescu, filterfalse and Neil Griffin,
   a.k.a. ngriffin7a);
 - added "v" flag to the 'tuioptions' option.  It controls whether width of
   middle border is adjusted to equalize view sizes (thanks to Matthias Braun,
   a.k.a. mb720);
 - added 'sessionoptions' option, which is an alternative to 'vifminfo' for
   session files;
 - added 'tablabel' option that specifies format of a single tab's label when
   non-empty (thanks to aleksejrs);
 - added 'tabprefix' and 'tabsuffix' options that allow customizing tabline
   separators (thanks to CoreCube);
 - added "treeleafsparent" value to 'dotdirs' option (thanks to filterfalse and
   Melandel);
 - do not require "dhistory" to be present in 'vifminfo' for "savedirs" to
   work.

Menus and dialogs:
 - added rate and progress bar to progress dialog (patch by Alborz Jafari);
 - added real (fully resolved) path to the File Info dialog (thanks to
   Alexandre Viau);
 - added number of hard links to the File Info dialog;
 - abort menu, more or file information modes before processing remote commands
   (thanks to kangshugang);
 - deduplicate elements of the :file menu;
 - make displaying of spaces in mappings more intelligent by using <space> at
   the start or end of lhs or rhs.

File preview:
 - improve handling of long or unknown escape sequences in previews (thanks to
   bratekarate);
 - use global color scheme for preview on the other pane ignoring its
   directory-specific color scheme;
 - invalidate textual quickview cache if it contains fewer lines than window
   height and is incomplete.

TUI (Text User Interface):
 - try harder to preserve position of the splitter.  Avoid its drift on
   terminal resizes and preserve ratio of windows on startup and tab switches
   (thanks to Shakil Akhtar);
 - prevent internally selected files (e.g., via a range of a :command) from
   appearing selected in user interface (thanks to filterfalse);
 - reduce width of top line when side borders are hidden (`set tuioptions-=s`)
   (thanks to Svyatoslav Mishyn, a.k.a. juef);
 - escape some characters as ^X in view and tab titles, custom menu titles, on
   statusline and in terminal title (thanks to filterfalse);
 - use the same label for :grep and :find custom lists as the one used for
   :grep and :find menus (thanks to filterfalse);
 - use unexpanded command for title of custom file lists produced using %u or
   %U macros and menus produced using %m or %M macros (thanks to filterfalse);
 - use name of user-defined command in titles of custom views and menus (thanks
   to filterfalse);
 - preserve more information in the title on turning custom view into tree
   using :tree (thanks to filterfalse);
 - limit length of custom file list title to 80 character positions (thanks to
   filterfalse).

Integration:
 - detect being run under Wayland (relevant for :filextype commands) (thanks to
   mhdzli);
 - make 'title' option work in all terminals which contain "tsl" and "fsl"
   capabilities (thanks to m-kru);
 - update terminal title when in menus (thanks to filterfalse).

Color schemes:
 - added HardLink highlight group for regular files with more than one hard
   link (patch by Hans Bieshaar);
 - added LineNr highlight group for highlighting line number column of views
   (thanks to Anton Gepting);
 - added OddLine highlight group for highlighting every second entry line of a
   pane (thanks to iSeeU816).

Scripting:
 - added v:jobcount builtin variable that provides number of active jobs
   (number of lines in :jobs menu) (thanks to iSeeU816);
 - added v:session builtin variable that provides name of current session or is
   set to an empty string.

Configuration:
 - added three MC-like shortcuts to sample vifmrc files (Alt-I, Alt-O and
   Ctrl-U) (thanks to Hans Bieshaar);
 - added global Default-256 color scheme to be used in terminals that support
   256-color palette (automatically in sample vifmrc) (thanks to Shakil
   Akhtar);
 - create $VIFM/colors directory with default color scheme only on the first
   run (thanks to ranousse);
 - use mime-types in associations in sample vifmrc (thanks to Shakil Akhtar).

Performance:
 - significantly improved performance of adding files to registers that contain
   thousands of files.  As a result contents of registers is sorted now (thanks
   to Typo);
 - significantly improved performance of adding files to trash that contains
   thousands of files.  As a result contents of trash is sorted now (thanks to
   Typo);
 - significantly improved speed of sourcing files (includes processing
   configuration on startup and :restart);
 - significantly improved speed of handling typical globs (and therefore
   mime-type matchers) and reduced amount of memory they take up (thanks to
   yanzhang0219);
 - improve performance of mime-type detection by caching the results;
 - make comparing files by contents (`:compare bycontents`) somewhat faster
   (thanks to maxigaz);
 - don't force view reload after every :command that resets selection when
   there was non-empty selection.  This might make metadata of files less
   up-to-date, but should increase overall performance (thanks to Jose Riha,
   a.k.a. jose1711);
 - avoid reloading source file list after copy or move operation when possible
   (thanks to Jose Riha, a.k.a. jose1711).

Vim-plugin:
 - added :VifmCs command to the plugin for "converting" Vim's color scheme into
   a Vifm's one (patch by Roman Plášil, a.k.a. Quiark);
 - multiple improvements of syntax highlighting.

Documentation:
 - added references to "Menus and dialogs" section of documentation from
   :commands and keys which open menus and dialogs detailed there;
 - explicitly documented that macros are expanded in user defined commands
   (thanks to gcmt);
 - made documentation of :command more comprehensible;
 - document that user must disable netrw plugin on his own when enabling
   g:vifm_replace_netrw.  Vifm's plugin can't do it, because it's loaded after
   plugins shipped with Vim;
 - documented how selection is handled on launching files (like on l or Enter
   keys);
 - improve documentation on "bycontents" of :compare (thanks to maxigaz);
 - somewhat improved documentation on 'ignorecase' and 'smartcase' options
   (thanks to filterfalse);
 - fixed Vim version of the documentation lacking description of %p macro of
   'findprg'.

Only on Windows:
 - added basic support for using PowerShell (pausing doesn't work) (thanks to
   Fang, a.k.a. peromage);
 - display targets of .lnk-files in file information dialog;
 - implemented capturing output of background applications (thanks to Gene
   Zharov);
 - follow targets of .lnk-files (thanks to Alexandre Viau);
 - fixed 'chaselinks' (symbolic links weren't resolved);
 - fixed creating symbolic links with 'syscalls' being turned on;
 - fixed creating symbolic links with spaces in source or target paths;
 - fixed Alt key combinations being broken since v0.9;
 - fixed running non-cmd shells being broken by adding 'shellcmdflag' in
   0.10.1;
 - fixed issues with non-tiny 'shellcmdflag' (patch by Bas Bossink, a.k.a.
   basbossink);
 - fixed detecting presence of :file[x]type commands on Windows when
   backslashes are present in path (thanks to anonymous and n.e. at Vifm Q2A
   site).

Packaging:
 - avoid interposing system's reallocarray(), when it's present (thanks to Ben
   Boeckel, a.k.a. mathstuf);
 - install only one version of sample config and media script, the one which
   corresponds to operating system being used (thanks to Michael Vetter, a.k.a.
   jubalh and Ondrej Novy, a.k.a. onovy);
 - clean up tests directory on "make clean" in the top of the tree.

Important fixes:
 - fixed generation of :highlight command for OtherWin on writing
   $VIFM/colors/Default.vifm.  The bug caused white background of inactive pane
   (thanks to Stas Malavin);
 - fixed `:move subdir &` renaming file in the process and doing weird stuff to
   multiple files (thanks to 45jqlakjrf87ayte7hy34ter4nguijauzl4eitk);
 - fixed graphics preview not being cleared on switching tabs or starting
   external applications (including on :shell);
 - fixed mapped keys being reinterpreted as builtin keys if RHS of the mapping
   failed at some point (e.g., contained an unmapped key) (thanks to Seok Won
   Lee, a.k.a. ijleesw);
 - fixed dialogs not being visible when UI updates are silenced via <silent>
   mappings;
 - fixed panic on some redraw operations mixing with file operations during
   terminal resizing (thanks to aca).

See change log for the full list of changes and by whom they were suggested or
implemented.
2020-11-24 12:15:20 +00:00
..
9base sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
855resolution
915resolution *: remove references to obsolete DragonFly/i386 2018-04-30 10:41:35 +00:00
accountsservice *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
acpica-utils For GCC9, add -Wno-error=format-overflow -Wno-error=stringop-truncation to 2020-10-16 11:46:39 +00:00
acpidump
adtool all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
afbinit
agedu Update to 20180522.5b12791. From the git log: 2018-08-26 19:33:42 +00:00
amanda systuils/amanda: Drop semi-MAINTAINERship 2020-07-27 16:36:35 +00:00
amanda-client *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
amanda-common *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
amanda-plot *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
amanda-server *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
amlogic-meson-fwtools sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
amtterm *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
ansible ansible: updated to 2.9.13 2020-09-08 17:51:49 +00:00
apcupsd sysutils/apcupsd: update to 3.14.14 2020-09-19 13:50:48 +00:00
arm-trusted-firmware - Re-factor the arm-trusted-firmware packages into common definitions and 2020-06-30 14:33:14 +00:00
arm-trusted-firmware-fiptool - Re-factor the arm-trusted-firmware packages into common definitions and 2020-06-30 14:33:14 +00:00
arm-trusted-firmware-rk3328 - Re-factor the arm-trusted-firmware packages into common definitions and 2020-06-30 14:33:14 +00:00
arm-trusted-firmware-rk3399 - Re-factor the arm-trusted-firmware packages into common definitions and 2020-06-30 14:33:14 +00:00
arm-trusted-firmware-sun50i-h6 - Re-factor the arm-trusted-firmware packages into common definitions and 2020-06-30 14:33:14 +00:00
arm-trusted-firmware-sun50i_a64 - Re-factor the arm-trusted-firmware packages into common definitions and 2020-06-30 14:33:14 +00:00
asapm sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
atitvout all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
attr all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
augeas *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
b2sum b2sum: Fix build on non-x86 2020-08-29 09:32:35 +00:00
backuppc backuppc: downgrade the rsync-bpc component to the previous version. Bump. 2020-11-07 14:53:30 +00:00
bacula *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
bacula-clientonly Complete import of bareos - a fork of bacula 5.2 around 2010 providing 2020-07-28 06:42:44 +00:00
bacula-doc Follow some redirects. 2019-06-24 10:36:50 +00:00
bacula-qt-console *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
bacula-qt5-console *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
bacula-tray-monitor *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
bacula-tray-monitor-qt5 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
baloo *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
baloo-widgets *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
baloo5 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
bareos *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
bareos-clientonly sysutils/bareos-clientonly: import bareos-clientonly-19.2.8 2020-07-28 06:37:25 +00:00
bbsload
bchunk bchunk: Update to 1.2.2 2019-11-17 13:07:03 +00:00
bcmfw cut spurious character in sed pattern 2020-04-26 11:47:53 +00:00
bcollect
bdfresize sysutils/bdfresize: import bdfresize-1.5. 2019-08-14 17:21:06 +00:00
beats Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
bfs (licenses/0-clause-bsd, sysutils/bfs) Rename license isc-AUTHOR to 0-clause-bsd 2019-12-28 12:16:53 +00:00
binwalk PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
bkpupsd sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
boxbackup-client *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
boxbackup-server *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
brasero *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
broot sysutils/broot: update to 1.0.6 2020-11-23 10:44:48 +00:00
bsdec2-image-upload *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
bsdinstall
bsign all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
btpin-qt *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
bubblemon *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
bup sysutils/bup: Update man page tarball for 0.31 2020-09-20 22:28:00 +00:00
burn *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
burp sysutils/burp: fix path to configuration files 2020-05-09 20:03:39 +00:00
caja *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
caja-dropbox mate*: remove unintentional linkage against pkgsrc gettext-libs 2020-08-24 04:41:39 +00:00
caja-extensions *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
capistrano sysutils/capistrano: update to 3.14.1 2020-06-13 15:48:19 +00:00
ccd2iso
ccze sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
cdbkup *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
cdirip sysutils/cdirip: import cdirip-0.6.4 2019-06-06 08:33:49 +00:00
cdrdao *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
cdrkit *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
cdrtools cdrtools: drop maintainership 2020-04-14 12:47:34 +00:00
cfengine2 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
cfengine3 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
cfm cfm: Update to 0.6.6 2020-10-19 17:28:12 +00:00
checkpassword Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
checkpassword-pam *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
checkperms sysutils/checkperms: fix pkglint warnings 2020-03-13 08:19:25 +00:00
clex
collectd collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-amqp collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-CGP collectd-CGP: fix PKGNAME 2020-10-24 22:44:29 +00:00
collectd-curl *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
collectd-dbi collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-dns collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-gmond collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-gps collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-grpc collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-haproxy collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-kafka collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-lua collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-memcachec collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-mongodb *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
collectd-mysql collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-network collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-notify-email collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-notify_desktop collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-nut collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-openldap collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-pinba collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-postgresql collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-redis collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-riemann collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-rrdtool *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
collectd-snmp collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-tokyotyrant collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-varnish collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-virt *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
collectd-web collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-write_prometheus collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-xen collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-xmms collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-yajl collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
conky *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
consolekit *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
consul Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
coreutils coreutils: Backport SunOS "ln <x> ." fix. 2020-09-23 20:12:50 +00:00
cpmtools
cpogm *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
cpuburn sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
cpuid More http -> https. 2019-06-24 10:59:40 +00:00
crashme all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
cuisine Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
cvsreport *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
daemond all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
daemontools Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
daemontools-encore Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
daemontools-run Require latest ucspi-tcp6 for IPv4 fixes. Bump version. 2019-08-19 22:11:44 +00:00
dbus dbus: update to 1.12.20. 2020-07-17 23:38:56 +00:00
dbus-glib *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
dbus-python-common sysutils/dbus-python-common: fix unknown configure option 2020-05-02 14:58:17 +00:00
dbus-sharp *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
dbus-sharp-glib *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
dc-tools all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
dd_rescue
dd_rhelp
ddrescue all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
decode-dimms Update to release 4.2 2020-10-04 14:02:06 +00:00
deforaos-browser *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
deforaos-terminal *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
depot sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
desktop-file-utils desktop-file-utils: Needs a c11 compiler 2020-10-25 12:45:52 +00:00
detox *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
devkitd Avoid version workarounds for EOL netbsd versions. 2020-04-29 21:22:58 +00:00
dfc Pass PKG_SYSCONFDIR to cmake 2020-10-11 21:43:26 +00:00
di Update di to 4.47.3. From Brad Lanam in PR pkg/54666. 2020-01-02 19:34:29 +00:00
direvent all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
dirsize
dirvish
disk-filltest all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
diskscrub *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
dmassage *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
dmenu-wld *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
dmesg2gif *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
dmg2img *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
dmidecode Update dmidecode to 3.1. 2020-11-24 05:31:51 +00:00
dmsdos
dog
dosfstools dosfstools: Fix build on NetBSD 2019-09-09 09:26:00 +00:00
dptutil
dtb-arm-exynos5422
dtb-arm-tegra124
dtb-arm-vexpress
dtb-arm64-sun50i
dtb-arm64-tegra210
dtc sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
dtpstree
dupeguru dupeguru: update to 4.0.4rc1. 2020-04-03 21:59:48 +00:00
duplicity all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
dvd+rw-tools sysutils/dvd+rw-tools: ONLY_FOR_PLATFORM += Darwin 2020-08-25 20:55:10 +00:00
dvdisaster *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
dvdrecord all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
e2fsprogs *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
easydiskpasswd Avoid complex version logic for obsolete NetBSD versions 2020-04-29 19:57:51 +00:00
edbus *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
efreet *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
eggdbus *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
entr entr: Update to 4.6 2020-10-09 15:21:24 +00:00
erlang-goldrush erlang-goldrush: Update to 0.2.0 2020-03-23 18:24:10 +00:00
erlang-lager
estd estd: avoid complex netbsd version logic. 2020-04-29 19:47:46 +00:00
etckeeper Update to 1.18.14. From the changelog: 2020-09-17 08:50:01 +00:00
etcmanage *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
etcutils all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
eventlog Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
exa cargo users: drop do-build target where redundant 2020-08-14 20:50:21 +00:00
extipl extipl: 64bit support, from Kimura Fuyuki in PR pkg/35955. 2018-07-21 21:08:03 +00:00
fabric Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
facette *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
fakeroot
fam sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
fastfs
fatback all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
fd-find fd-find: Needs gmake tool 2020-11-19 18:58:16 +00:00
fdtools Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
fdupes fdupes: update to 2.1.1. 2020-07-06 15:38:02 +00:00
fff sysutils/fff: take maintainership 2020-10-01 08:36:50 +00:00
file file: Update to 5.39 2020-11-23 13:16:19 +00:00
filelight *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
findnewest
findutils all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
fix4SA110rev2
fixelfprot all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
flashrom flashrom: Update to 1.2 2020-02-20 14:50:07 +00:00
fluent-bit NetBSD doesn't have PTHREAD_STACK_MIN, so pick something useful. 2020-04-20 00:45:56 +00:00
foremost *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
free
fs-kit mark packages that fail with -Werror=char-subscripts 2020-05-20 06:09:03 +00:00
fscd sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
fsviewer *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
ftwin *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
fzf Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
gamin *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
gcdmaster *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gcombust
gdmap *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
genpasswd Switch to new site in MASTER_SITES, and set MAINTAINER to pkgsrc-users. 2019-12-01 05:18:55 +00:00
gentoo *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
gfm *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gkrellm *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
gkrellm-est *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
gkrellm-server *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
gkrellm-share
gnome-characters sysutils: add gnome-characters 2020-11-05 08:35:47 +00:00
gnome-control-center sysutils: Add gnome-control-center 2020-11-10 18:22:23 +00:00
gnome-font-viewer gnome-font-viewer: Needs msgfmt --xml 2020-11-11 14:28:55 +00:00
gnome-menus *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
gnome-nds-thumbnailer *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gnome-settings-daemon gnome-settings-daemon: Import version 3.38.1 from wip 2020-11-10 01:21:24 +00:00
gnome-tracker gnome-tracker: Needs vala 2020-11-11 14:26:32 +00:00
gnome-tracker-miners *: recursive bump for poppler 20.11.0 2020-11-21 09:34:53 +00:00
gnome-vfs *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
gnome-vfsmm *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
gnuit sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
goreman Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
gpart
grub all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
grub2 grub2: Fix missing interpreter in bulk build 2020-06-04 20:17:19 +00:00
grun *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
gsettings-desktop-schemas gsettings-desktop-schemas: Remove USE_PKGLOCALEDIR 2020-11-06 17:48:05 +00:00
gst-plugins0.10-gio *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
gst-plugins0.10-gnomevfs *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gst-plugins1-gio *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
gtk-send-pr *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
gvfs *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gworkspace *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
hal *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
hal-info *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
hddtemp all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
heirloom-basename
heirloom-cat
heirloom-chmod
heirloom-chown
heirloom-cksum
heirloom-cmp
heirloom-copy
heirloom-cp
heirloom-csplit
heirloom-dd
heirloom-dirname
heirloom-doc heirloom-doc: HOMEPAGE does not support https 2020-03-13 12:01:22 +00:00
heirloom-du
heirloom-env
heirloom-file
heirloom-find
heirloom-getconf
heirloom-groups
heirloom-hostname
heirloom-id
heirloom-listusers
heirloom-ln
heirloom-logins
heirloom-logname
heirloom-ls
heirloom-mesg
heirloom-mkdir
heirloom-mkfifo
heirloom-mknod
heirloom-nice
heirloom-nohup
heirloom-pathchk
heirloom-pgrep
heirloom-priocntl
heirloom-ps
heirloom-psrinfo
heirloom-pwd
heirloom-renice
heirloom-rm
heirloom-rmdir
heirloom-setpgrp
heirloom-shl
heirloom-sort
heirloom-split
heirloom-stty
heirloom-sync
heirloom-tapecntl
heirloom-tee
heirloom-touch
heirloom-tsort
heirloom-tty
heirloom-uname
heirloom-users
heirloom-who
heirloom-whoami
heirloom-whodo
heirloom-xargs
heirloom-yes
hfsutils sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
hivex *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
hs-temporary hs-*: add PLIST files 2020-05-11 17:51:58 +00:00
htop all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
hytctl sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
i2ocfg Avoid complex version logic for obsolete NetBSD versions 2020-04-29 19:57:51 +00:00
i3status *: revbump for libsndfile 2020-08-18 17:57:24 +00:00
i810switch
iat
idesk *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
install-sh
intel-microcode-netbsd Update intel-microcode-netbsd to 20201118. 2020-11-19 01:12:39 +00:00
intellij-fsnotifier Fix instakllation pathes, bump PKGREVISION 2019-05-14 12:04:24 +00:00
ioping (sysutils/ioping) Updated to 1.1 2019-12-31 12:54:29 +00:00
ipa *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
ipmitool *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
ipw-firmware
ir-account
isapnptools
iwi-firmware
iwi-firmware3
iwn-firmware
k3b *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
kcron *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
kdbusaddons *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
kdf *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
kfilemetadata *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
kfilemetadata5 *: recursive bump for poppler 20.11.0 2020-11-21 09:34:53 +00:00
kfloppy *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
ksystemlog *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
kuser *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
lambd
lastfss
lavaps *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
lf Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
libbaloo4 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
libburn libburn: Update to 1.5.2 2020-04-05 12:47:13 +00:00
libcap libcap: update to 2.44 2020-10-16 22:33:49 +00:00
libdevkit-gobject *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
libfm *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
libfm-extra *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
libgamin Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
libgksu *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
libgtop *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
libisoburn libisoburn: Update to 1.5.2 2020-04-05 12:49:44 +00:00
libisofs libisofs: Update to 1.5.2 2020-04-05 12:35:35 +00:00
liblogging *: reset MAINTAINER for fhajny on his request 2020-05-27 19:37:36 +00:00
liblognorm *: reset MAINTAINER for fhajny on his request 2020-05-27 19:37:36 +00:00
libnotify *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
libol
liboobs *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
libpciaccess all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
libvirt *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
lilo *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
lnav *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
lockf
logfinder PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
logrider sysutils/logrider: clean up Makefile 2019-10-26 12:28:50 +00:00
logrot
logrotate logrotate: fix build on NetBSD 2020-10-08 07:50:51 +00:00
lsof *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
lvm2
lxmenu-data lxmenu-data: update HOMEPAGE 2018-02-11 15:48:56 +00:00
lxpanel *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
lxqt-powermanagement *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
lxtask *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
magicrescue *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
manifold *: reset MAINTAINER for fhajny on his request 2020-05-27 19:37:36 +00:00
mate-notification-daemon mate*: remove unintentional linkage against pkgsrc gettext-libs 2020-08-24 04:41:39 +00:00
mate-power-manager mate-power-manager: Disable gnome-keyring integration 2020-11-22 12:58:37 +00:00
mate-sensors-applet mate*: remove unintentional linkage against pkgsrc gettext-libs 2020-08-24 04:41:39 +00:00
mate-system-monitor *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
mbmon *: remove references to obsolete DragonFly/i386 2018-04-30 10:41:35 +00:00
mc *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
mc46 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
mcollective *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
mdf2iso
memtester Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
memtestplus all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
mencvcd mencvcd: update to 1.4. 2020-03-01 11:50:24 +00:00
menu-cache menu-cache: link network libs on SunOS 2020-04-30 18:52:33 +00:00
meson-tools meson-tools is a collection of tools for use with the Amlogic Meson 2019-01-16 18:33:22 +00:00
mesure
mgm *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
mklivecd
mkmemstick
mksunbootcd all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
mktemp
monit *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
monitoring sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
mrsync *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
mtools all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
mtoolsfm *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
mtscan all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
mtx
munin-common *: remove p5-CPAN-Meta dependency, part of perl 2020-09-04 10:39:25 +00:00
munin-master *: comment out p5-Time-HiRes dependency, part of perl 2020-09-01 08:01:25 +00:00
munin-node *: comment out p5-Time-HiRes dependency, part of perl 2020-09-01 08:01:25 +00:00
nautilus nautilus: Needs gdbus-codegen 2020-11-22 21:45:51 +00:00
nbase Use USE_TOOLS += byacc instead of explicitely adding build dependency 2020-02-20 13:22:56 +00:00
ncdu ncdu: update to 1.15.1. 2020-06-13 10:03:04 +00:00
ndesk-dbus *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
ndesk-dbus-glib *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
neb-wipe *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
neofetch neofetch: Update to 7.1.0 2020-08-08 21:58:57 +00:00
netbt-hcidump
news all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
nnn sysutils/nnn: Update to 3.5 2020-11-17 14:22:57 +00:00
node_exporter Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
noice noice: Update to 0.8 2019-04-08 20:56:14 +00:00
notification-daemon *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
nrg2iso
ntfsprogs filesystems/libntfs filesystems/libntfs sysutils/ntfsprogs: updated to 2017.3.23 2018-04-02 13:14:08 +00:00
nvnet all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
nvramtool sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
oak all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
onefetch sysutils/onefetch: update to 2.7.3 2020-11-21 23:06:56 +00:00
open-vm-tools *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
openipmi openipmi: Omit @pkgdir 2020-11-03 23:58:10 +00:00
openstack_init Fix: ERROR: [check-interpreter.mk] 2019-05-10 22:28:47 +00:00
openxenmanager *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
osname Switch to new site in MASTER_SITES, and set MAINTAINER to pkgsrc-users. 2019-12-01 05:18:55 +00:00
ovmf ovmf: gcc9 build fix 2020-09-23 11:23:38 +00:00
p5-BackupPC-XS *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-collectd *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Config-Augeas *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
p5-Config-Simple *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Daemon-Generic *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-File-chmod *: improve HOMEPAGE 2020-09-08 13:09:53 +00:00
p5-File-Copy-Recursive *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Copy-Recursive-Reduced *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Inplace *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-File-Remove *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Filesys-Df *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Filesys-DfPortable *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Filesys-Statvfs *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Gnome2-VFS *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
p5-GTop *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-BufferedSelect *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-IO-KQueue p5-IO-KQueue: update to 0.39. 2020-09-07 14:32:13 +00:00
p5-Lchown *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Linux-Inotify2 p5-Linux-Inotify2: update to 2.2 2020-10-08 21:43:00 +00:00
p5-Mac-AppleScript *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Mac-AppleScript-Glue *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Monitoring-Plugin *: use MASTER_SITE_PERL_CPAN 2020-09-08 13:16:33 +00:00
p5-Parse-Syslog *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Quota *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Server-Starter *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-SSH-Batch *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sys-CPU p5-Sys-CPU: Support the katamari of sysctls for cpufreq NetBSD might expose 2020-10-28 12:04:02 +00:00
p5-Sys-CpuLoad p5-Sys-CpuLoad: update to 0.31. 2020-09-07 14:35:25 +00:00
p5-Sys-Filesystem *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sys-Hostname-Long *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sys-SigAction *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Sys-Utmp *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Unburden-Home-Dir *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Unix-ConfigFile *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Unix-Process *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Unix-Processors *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Unix-Statgrab *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-Unix-Syslog *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
p5-UPS-Nut *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
pciutils Update pciutils to 3.7.0. 2020-06-01 15:47:53 +00:00
pcmanfm *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
pcmanfm-qt *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
pcvt-utils all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
pdumpfs
pear-Log sysutils/pear-Log: update to 1.13.2 2020-06-02 14:16:05 +00:00
pfetch sysutils/pfetch: Update to 0.6.0 2020-03-12 12:03:39 +00:00
pflogsumm *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
pfstat *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
pftop sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
pidof all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
pluged
polysh sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
pscpug
psftools all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
psmisc psmisc: fix sscanf usage bug under musl libc 2020-10-06 00:19:05 +00:00
pstree
puppet sysutils/puppet: update to 6.18.0 2020-09-14 14:22:35 +00:00
pv pv: Update to 1.6.6 2019-06-10 16:55:02 +00:00
pwgen Update to 2.08: 2018-05-29 02:57:56 +00:00
py-appnope all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
py-augeas *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
py-borgbackup py-borgbackup: update to 1.1.14. 2020-10-14 16:25:55 +00:00
py-collectd *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
py-cpuinfo py-cpuinfo: updated to 6.0.0 2020-06-11 14:25:51 +00:00
py-crontab py-crontab: updated to 2.5.1 2020-05-27 12:58:57 +00:00
py-dbus *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
py-diffoscope sysutils/py-diffoscope: remove no-op SUBST block 2020-05-02 10:44:10 +00:00
py-eliot Support Python 3.6 2020-08-27 12:32:48 +00:00
py-eliot17 *: use py-hypothesis via versioned_dependencies.mk 2020-10-06 10:51:21 +00:00
py-euca2ools *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
py-filetype sysutils/py-filetype: import py-filetype-1.0.7 2020-05-19 16:58:23 +00:00
py-Glances sysutils/py-Glances: Update to 3.1.5 2020-08-20 19:27:42 +00:00
py-google-compute-engine sysutils/py-google-compute-engine: allow no-op SUBST block 2020-05-09 20:02:24 +00:00
py-kazoo py-kazoo: updated to 2.6.1 2019-05-27 15:20:45 +00:00
py-magic Make sysutils/py-magic work in a chroot on NetBSD 2020-10-04 18:15:43 +00:00
py-notify
py-notify-python *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
py-pathtools
py-pefile sysutils/py-pefile: Update to 2019.4.18 2020-08-18 20:14:07 +00:00
py-psutil py-psutil: updated to 5.7.2 2020-07-16 11:16:21 +00:00
py-ptyprocess py-ptyprocess: updated to 0.6.0 2018-07-06 07:07:25 +00:00
py-pyinotify py-pyinotify: unconditionally build inotify syscalls so. 2019-10-11 14:38:56 +00:00
py-salt-pepper py-salt-pepper: updated to 0.7.6 2020-03-17 10:59:32 +00:00
py-Send2Trash py-Send2Trash: updated HOMEPAGE 2018-04-06 20:19:42 +00:00
py-setconf py-setconf: updated to 0.7.7 2020-07-27 20:23:01 +00:00
py-setproctitle
py-sh py-sh: updated to 1.14.1 2020-11-09 12:15:15 +00:00
py-structlog py-structlog: updated to 20.1.0 2020-09-30 07:01:52 +00:00
py-supervisor py-supervisor: updated to 4.2.1 2020-09-10 10:24:30 +00:00
py-syslog-ng
py-watchdog py-watchdog: updated to 0.10.3 2020-07-01 14:39:11 +00:00
py-xattr py-xattr: updated to 0.9.7 2019-12-05 14:46:43 +00:00
qdirstat *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
qlogtools Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
qpasswd Remove DJB_RESTRICTED, no longer used. 2020-11-19 09:35:38 +00:00
R-later (sysutils/R-later) Updated to 1.0.0 2019-12-31 12:08:15 +00:00
R-processx Add missing dependency on devel/R-R6. 2019-09-25 17:32:57 +00:00
R-progress Add missing dependency on devel/R-R6. 2019-09-25 17:32:57 +00:00
R-ps R-ps: initial commit 2019-08-09 18:38:11 +00:00
R-sys (sysutils/R-sys) Updated to 3.3 2019-12-31 11:41:22 +00:00
R-xopen R-xopen: initial commit 2019-08-09 19:04:10 +00:00
radeontool
radmind *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
rcm rcm: Update to 1.3.4 2020-08-29 21:27:23 +00:00
rconfig *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
rdfind revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
rdiff-backup all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
rename *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
renameutils all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
rfstool Mark packages that require C++03 (or the GNU variants) if they fail with 2018-07-18 00:06:10 +00:00
riemann-client revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
rkdeveloptool rkdeveloptool: Fix build on NetBSD 9.99.17 2019-10-25 10:10:10 +00:00
rkflashtool rkflashtool: bump to 20160324 2018-03-17 10:02:58 +00:00
rmtrash sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
roller *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
rox *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
rsnapshot *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
rsyslog *: reset MAINTAINER for fhajny on his request 2020-05-27 19:37:36 +00:00
rsyslog-dbi revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
rsyslog-elasticsearch revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
rsyslog-gnutls revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
rsyslog-gssapi revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
rsyslog-kafka revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
rsyslog-libgcrypt revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
rsyslog-mysql revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
rsyslog-omprog revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
rsyslog-pgsql revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
rsyslog-rabbitmq revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
rsyslog-relp revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
rsyslog-snmp revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
rtty
ruby-capistrano-harrow
ruby-capistrano-stats
ruby-chef ruby-chef: Incompatible with ruby25. 2020-09-30 16:14:50 +00:00
ruby-chef-config sysutils/ruby-chef-config: update to 16.0.287 2020-05-25 15:08:18 +00:00
ruby-chef-utils sysutils/ruby-chef-utils: update to 16.0.287 2020-05-25 15:06:24 +00:00
ruby-chef-zero ruby-chef-zero: Does not support ruby25. 2020-09-30 08:57:21 +00:00
ruby-childprocess sysutils/ruby-childprocess: revert udpate to 4.0.0 2020-06-21 15:40:22 +00:00
ruby-directory-watcher
ruby-facter sysutils/ruby-facter: update to 4.0.38 2020-09-19 12:59:25 +00:00
ruby-fssm
ruby-listen Update sysutils/ruby-listen to 3.2.1 2020-03-24 16:40:19 +00:00
ruby-notify
ruby-puppet-resource_api sysutils/ruby-puppet-resource_api: update to 1.8.13 2020-05-02 13:53:47 +00:00
ruby-quota
ruby-rb-appscript *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
ruby-serverspec sysutils/ruby-serverspec: update to 2.41.5 2020-03-24 18:21:24 +00:00
ruby-specinfra sysutils/ruby-specinfra: update to 2.82.19 2020-09-14 14:53:08 +00:00
ruby-syslog-logger
rw sysutils/rw: import rw-1.0 2018-04-29 14:22:35 +00:00
s6 Initial import of s6, packaged in wip by cfkoch@edgebsd.org. 2020-11-19 20:00:05 +00:00
safetynet *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
salt salt: skip portability checks in 3rd party packaging scripts 2020-08-18 05:26:08 +00:00
salt-docs salt-docs: Skip legitimate hardcoded paths. 2019-12-09 16:52:51 +00:00
same all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
sandboxctl sandboxctl: don't use tar -e on netbsd. it's not supported by the newly 2019-09-20 22:31:30 +00:00
sarah *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
screenbrightness
screenfetch screenfetch: Update to 3.9.1 2020-01-08 13:15:42 +00:00
screentest *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
scsiinfo
service-config Only a few djb-nonlicense packages remain. Retire DJB_RESTRICTED, 2020-11-19 08:11:18 +00:00
setquota setquota: simply "only for netbsd and netbsd<6" to "!netbsd". 2020-04-29 20:20:49 +00:00
sformat Drop unused but conflicting prototype. 2020-05-16 02:15:53 +00:00
shc all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
shelldap *: remove p5-Term-ReadLine, part of perl 2020-09-04 13:35:41 +00:00
shmux
skill Update MASTER_SITES 2020-01-07 08:37:34 +00:00
slay
slocate
smartmontools smartmontools: Revert erroneously committed Makefile 2020-11-03 20:54:11 +00:00
smbldap-tools *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
socket
solid *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
spice-gtk *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
spice-protocol spice-protocol: update to 0.14.3 2020-11-01 19:35:42 +00:00
spice-server spice-server: update to 0.14.3 2020-11-01 19:36:37 +00:00
sredird
sshsh Switch to new site in MASTER_SITES, and set MAINTAINER to pkgsrc-users. 2019-12-01 05:18:55 +00:00
stow *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
strace *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
strigi *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
su2 *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
sunxi-tools
sux Switch to new site in MASTER_SITES, and set MAINTAINER to pkgsrc-users. 2019-12-01 05:18:55 +00:00
swapd all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
swatch *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
sysbuild
sysbuild-user
sysgen
sysinfo
syslog-ng syslog-ng: Add yacc to USE_TOOLS 2020-10-21 19:46:14 +00:00
syslog-ng-amqp *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
syslog-ng-curl revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
syslog-ng-geoip
syslog-ng-mongodb *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
syslog-ng-redis
syslog-ng-smtp *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
syslog-ng-sql
system-tools-backends *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
systester *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
sysupgrade sysupgrade: Switch the default case to .tar.xz sets 2020-10-21 21:34:21 +00:00
tarsnap Support PKG_SYSCONFDIR. Bump PKGREVISION. 2020-04-06 20:40:28 +00:00
tarsnap-gui *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
tcx
tdir sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
tealdeer Update tldr to 1.4.1. 2020-09-06 16:43:52 +00:00
tegra-firmware
tenshi *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
testdisk testdisk: Leave pkgsrc to handle security features. 2018-02-02 14:08:27 +00:00
tiramisu sysutils/tiramisu: import package 2020-11-12 09:05:13 +00:00
tits all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
tkcron
tkdesk *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
tload *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
tob all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
top top: fix build on NetBSD with sys/lwp.h >= 1.185 (LSDEAD removal) 2020-08-18 05:12:55 +00:00
toshutils sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
tpb all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
tphdisk
trash *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
tree tree: Update to 1.8.0 2020-05-18 10:20:13 +00:00
ts all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
tsm8 sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
ttyplot sysutils/ttyplot: import ttyplot-1.4. 2019-08-15 08:43:47 +00:00
u-boot Add several missing u-boot-* package to the meta package. 2020-06-21 18:28:16 +00:00
u-boot-a10-olinuxino-lime sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-a20-olinuxino-lime2 sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-a20-olinuxino-lime2-emmc sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-a20-olinuxino-micro U-boot package for the Olimex A20-OLinuXino-MICRO. 2020-06-21 16:21:05 +00:00
u-boot-a20-olinuxino-micro-emmc U-Boot package for the Olimex A20-OLinuXino-MICRO-eMMC. 2020-03-15 00:26:10 +00:00
u-boot-bananapi sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-bananapi-m2-zero sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-bananapi-m3 sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-bananapi-p2-zero sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-bananapi-r2 Update to u-boot-2020.04. 2020-06-20 17:42:34 +00:00
u-boot-bananapro sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-beagleboard sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-beagleboneblack sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-beaglebonewhite sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-chip sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-chip-pro sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-ci20 U-boot package for the MIPS Creator CI20. 2020-06-20 17:46:28 +00:00
u-boot-cubieboard2 sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-cubieboard4 sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-cubietruck sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-cubietruck-plus sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-de0-nanosoc Call cleanup_before_linux in efi_exit_boot so ensure caches are clean, etc 2019-04-26 08:32:27 +00:00
u-boot-hummingbird-a31 sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-jetson-nano U-boot package for the NVIDIA Jetson Nano. 2020-06-20 22:29:12 +00:00
u-boot-jetson-tk1 Call cleanup_before_linux in efi_exit_boot so ensure caches are clean, etc 2019-04-26 08:32:27 +00:00
u-boot-jetson-tx1 Call cleanup_before_linux in efi_exit_boot so ensure caches are clean, etc 2019-04-26 08:32:27 +00:00
u-boot-jetson-tx2 Call cleanup_before_linux in efi_exit_boot so ensure caches are clean, etc 2019-04-26 08:32:27 +00:00
u-boot-lamobo-r1 sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-libretech-all-h3-cc-h2-plus U-boot package for the Libre Computer Board ALL-H3-CC H2+. 2020-06-21 19:43:02 +00:00
u-boot-libretech-all-h3-cc-h3 (sysutils/u-boot-libretech-all-h3-cc-h3) regen PLIST 2020-09-14 22:42:47 +00:00
u-boot-libretech-all-h3-cc-h5 U-boot package for the Libre Computer Board ALL-H3-CC H5. 2020-06-21 19:43:48 +00:00
u-boot-libretech-cc Call cleanup_before_linux in efi_exit_boot so ensure caches are clean, etc 2019-04-26 08:32:27 +00:00
u-boot-nanopi-duo2 sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-nanopi-m1 sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-nanopi-neo sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-nanopi-neo-plus2 sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-nanopi-neo2 sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-nanopi-r1 sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-odroid-c2 u-boot-odroid-c2: regen distinfo for new patches 2020-04-09 05:59:31 +00:00
u-boot-odroid-xu3 Call cleanup_before_linux in efi_exit_boot so ensure caches are clean, etc 2019-04-26 08:32:27 +00:00
u-boot-orangepi-2 sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-orangepi-lite add u-boot-orangepi-lite, based on u-boot-orangepi-one 2019-11-29 15:09:39 +00:00
u-boot-orangepi-lite2 Add a package for u-boot on the OrangePi Lite2. 2020-04-04 15:20:34 +00:00
u-boot-orangepi-one sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-orangepi-pc Add u-boot-orangepi-pc 2018.11. 2020-10-13 03:52:29 +00:00
u-boot-orangepi-plus2e sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-orangepi-zero sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-orangepi-zero-plus sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-pandaboard U-boot package for the OMAP4-based PandaBoard. 2020-06-21 03:27:58 +00:00
u-boot-pine-h64 sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-pine64 sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-pinebook sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-pinebook-pro move u-boot-pinebook-pro/u-boot-rockchip.mk to u-boot/u-boot-rockchip.mk 2020-04-02 09:12:54 +00:00
u-boot-pocketchip sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-roc-rk3328-cc Add a u-boot package for the Firefly / Libre Computer ROC-RK3328-CC. 2020-06-30 14:40:05 +00:00
u-boot-rock64 Python is necessary for the build. Reference it correctly. 2020-08-11 18:42:49 +00:00
u-boot-rockpro64 move u-boot-pinebook-pro/u-boot-rockchip.mk to u-boot/u-boot-rockchip.mk 2020-04-02 09:12:54 +00:00
u-boot-rockpro64-ayufan u-boot-rockpro64-ayufan: update to latest snapshot 2020-05-15 09:37:25 +00:00
u-boot-rpi3-32 sysutils/u-boot-rpi3-32: Use a directory of the right name 2019-12-14 10:22:30 +00:00
u-boot-sopine-baseboard sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
u-boot-tinker sysutils/u-boot-tinker: U-Boot for ASUS Tinker Board 2019-09-07 18:27:46 +00:00
u-boot-zynq-zybo U-boot package for the Digilent Zybo development board. 2020-06-21 16:47:59 +00:00
u-boot-zynq-zybo-z7 Initial import of U-Boot for Digilent Zybo Z7 development boards. 2019-05-16 22:37:16 +00:00
ufetch sysutils/ufetch 2020-04-22 08:35:27 +00:00
upower Update upower to 0.99.11. 2020-04-02 11:38:49 +00:00
ups-nut *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
ups-nut-cgi ups-nut-cgi: Try to fix gd detection. 2020-09-30 10:28:08 +00:00
ups-nut-snmp sysutils/ups-nut-*: suppress USE_TOOLS+=perl warning 2020-05-10 14:12:33 +00:00
ups-nut-usb sysutils/ups-nut-*: suppress USE_TOOLS+=perl warning 2020-05-10 14:12:33 +00:00
usbhid-dump Use PKGVERSION_NOREV as GITHUB_RELEASE to easier update 2019-07-02 13:38:13 +00:00
usbutil Failed to build with RELRO option 2019-07-29 11:19:56 +00:00
user_cygwin
user_darwin
user_interix
user_irix
vbetool all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
vcdimager *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
vidc-tools
vifm vifm: Update to 0.11 2020-11-24 12:15:20 +00:00
vip
virt-manager *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
virt-viewer *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
virt-what virt-what: A script to detect if being run in virtual or bare metal environment 2019-12-10 21:14:58 +00:00
virtinst all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
vobcopy revbump for multimedia/libdvdread; requested by leot@ 2020-05-22 12:43:52 +00:00
vultr Revbump all Go packages after go115 update 2020-11-13 19:26:03 +00:00
vxargs PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
watchman watchman: Don't set BROKEN for normal build issues. 2018-09-13 14:26:07 +00:00
wbm-apache (sysutils/wbm-apache) remove PKGREVISION for update 1.955 to 1.960 2020-10-27 12:30:59 +00:00
wbm-at (sysutils/wbm-at) regen PLIST 2020-10-30 22:08:55 +00:00
wbm-bandwidth (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-bind8 (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-change-user (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-cluster-copy (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-cluster-cron (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-cluster-passwd (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-cluster-shell (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-cluster-useradmin (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-cluster-webmin (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-custom (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-cyrus-imapd (sysutils/wbm-{virtual-server,cyrus-imapd}) two distinfo files recoverd again 2020-09-06 02:43:16 +00:00
wbm-dhcpd (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-dovecot (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-fetchmail (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-htaccess-htpasswd (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-inetd (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-ipfilter (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-ldap-useradmin (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-lpadmin (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-mailboxes (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-mount (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-mysql (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-net (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-openslp (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-postfix (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-postgresql (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-qmailadmin (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-quota (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-sendmail (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-shell (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-sshd (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-status (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-syslog (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-telnet (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-time (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-tunnel (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-useradmin (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-virtual-server (sysutils/wbm-{virtual-server,cyrus-imapd}) two distinfo files recoverd again 2020-09-06 02:43:16 +00:00
WCMCommander *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
webmin (sysutils/webmin and sysutils/wbm-*) Updated 1.955 to 1.960 2020-10-27 12:37:52 +00:00
whowatch
wipe *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
within Update my (sjmulder) maintainer email address 2019-05-06 09:17:12 +00:00
wmbattery sysutils: Add wmbattery - based on work by snow flurry and myself in wip 2020-09-10 11:26:01 +00:00
wmcpuload wmcpuload: Update to 1.1.1 2020-11-24 10:57:01 +00:00
wmmemmon
wmSMPmon
wpi-firmware
wpi-firmware2
wtail
xapply
xbatt
xbattbar sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
xc5k-firmware
xc3028l-firmware
xcdroast sysutils/xcdroast: remove no-op substitution: 2020-09-19 21:02:57 +00:00
xdu
xe-guest-utilities Add back dependancy on xenstoretools 2020-08-20 11:31:04 +00:00
xenkernel411 xen: Describe 4.13 as the standard approach 2020-11-15 16:05:47 +00:00
xenkernel413 xen: Describe 4.13 as the standard approach 2020-11-15 16:05:47 +00:00
xenstoretools Fix build by ensuring that libxentoolcore is built and installed. 2020-10-23 12:44:44 +00:00
xentools411 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xentools413 Update xenkernel413 and xentools413 to 4.13.2. This includes fixes for 2020-11-06 21:45:49 +00:00
xenvstat all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
xfburn *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
xfce4-appfinder *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xfce4-battery-plugin *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xfce4-cpugraph-plugin *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xfce4-diskperf-plugin *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xfce4-fsguard-plugin *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xfce4-genmon-plugin *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xfce4-gvfs-mount-plugin *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
xfce4-mount-plugin *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xfce4-netload-plugin *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xfce4-power-manager *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xfce4-quicklauncher-plugin *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
xfce4-systemload-plugin *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xfce4-taskmanager *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xfce4-thunar *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xfce4-thunar-vcs *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
xfce4-verve-plugin *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xfce4-xarchiver xfce4-xarchiver: Update to 0.5.4.15 2020-11-24 10:43:25 +00:00
xfce4-xkb-plugin *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
xfe *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
xfm Fix xfm segfault with newer Xaw3d. Bump PKGREVISION 2020-02-24 21:45:24 +00:00
xfsprogs
xhfs *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
xhyve
xmbmon
xmeter
xnc mark packages that fail with -Werror=char-subscripts 2020-05-20 06:09:03 +00:00
xosview xosview: do not exit when cpufreq sysctl fails. 2020-07-07 19:13:18 +00:00
xps *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xuvmstat
ytree sysutils: add ytree. 2020-10-11 16:40:39 +00:00
zabbix *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
zabbix-frontend sysutils/zabbix-frontend: Update to 4.0.24 2020-09-17 13:53:16 +00:00
zabbix50-agent *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
zabbix50-frontend zabbix50-frontend: No PLIST substitutions in frontend 2020-11-03 23:12:11 +00:00
zabbix50-java zabbix50-java: Omit empty directories 2020-11-03 23:35:41 +00:00
zabbix50-proxy *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
zabbix50-server (sysutils/zabbix50-server) Fix build, REPLACE_BASH+= added 2020-11-06 15:02:53 +00:00
zidrav all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
znapzend *: remove p5-Test-Harness, part of perl 2020-09-04 13:37:50 +00:00
Makefile Remove torsmo, older version of sysutils/conky that seems to no longer work 2020-11-21 13:01:22 +00:00