pkgsrc/sysutils
obache e269aacef4 Update monit to 5.6.
PR pkg/48465 by ISIHARA Takanori.

Version 5.6

IMPROVEMENTS:

* SMTP AUTH LOGIN support added (MS Exchange SMTP authentication
  should now work).

* favicon.ico added to the HTTP interface.

BUGFIXES:

* If an undefined checksum test was used and the file did not exist
  on Monit start, Monit would return an error.

* If the configuration file ended with a comment but with no trailing LF
  character, Monit would return syntax error.

* If a service timed out after too many restarts and alert was used as
  the action, then the Timeout flag remained set even if the service
  recovered.

* SmartOS zone system memory usage report fix.

* Escape mail messages properly for sending via SMTP.

* Escape XML messages properly.

* Compilation: fix the configure script to support default compiler
  paths when searching for OpenSSL (fixes library search on multi-
  architecture  platforms like Debian and Ubuntu).



Version 5.5.1

IMPROVEMENTS:

* Info and debug messages are no longer sent to stderr, only to stdout.
  Thanks to Sergey Kirpitchev for initial patch.

* Improved output from 'check program', If the program returns an error
  message, include only that message in alert $DESCRIPTION so users can
  compose their own alert format. If program provided no output on
  error, use a default message.

* Improved "check system", $HOST can now be used as a service name.
  $HOST will expand to the system hostname. Example: check system $HOST

BUGFIXES:

* Fixed "Unable to read magic" which was reported on first Monit start.



Version 5.5

IMPROVEMENTS:

* check program:
        - Multiple exit values can be tested within single program check
        - Exit value test supports multiple cycles option ("for X cycles")
        - If exit value test matches and the stderr has no data, try stdout

  Example syntax:
    check program mytest with path "/usr/bin/mytest.sh" with timeout 1000 seconds
       if status == 2 then exec "/usr/local/bin/fix_script.sh"
       if status == 2 for 6 cycles then unmonitor
       if status == 10 then alert

* Renamed mail header (message-id and mime-version) to prevent
  triggering spam check of capitalization. Thanks to Ryan Lee
  for tips.

* The 'check system <name>' statement sets the system hostname in mail
  alerts and initial hostname in M/Monit.

* Increase the default mailserver timeout to 30 seconds.

* Add support for OpenBSD 5.x

BUGFIXES:

* Fix the rare hung on linux which may occur during program execution.
  Thanks to Nick Upson for report.

* In the case that the process start/restart execution failed,
  monit kept "Execution failed" flag even if the process was
  recovered later (for example it was starting slowly or manually
  recovered).

* Fix the mail alert (strict SMTP implementation) to pass
  MTA-side sanity checks like postscreen. Thanks to Len Conrad
  for report.

* The -t option tests the configuration file syntax even if the
  file permissions are wrong. Thanks to Adam Nielsen for report.

* Do not display the default non-existence test for the check
  program (not applicable in the check program context).



Version 5.4

IMPROVEMENTS:

* New process uptime test added. Allows to do some action in
  the case that the process uptime matches the given limit.
  For example to restart the process once per 3 days:
    if uptime > 3 days then restart

* Linux uCLibc support: use internal getloadavg implementation
  in the case that the system libc doesn't implement it.

BUGFIXES:

* The monit hostname will fallback to plain machine's hostname if the
  lookup for FQDN hostname didn't found matching entry. The problem
  was, that based on the order in the /etc/hosts the FQDN lookup
  returned sometimes 'localhost' instead of the FQDN hostname.

* The CPU usage for multi-threaded processes on multi-core machine was
  reported incorrectly in the case that the process used more CPU
  resources then equivalent to one core. Thanks to Tom Pepper for patch.

* The content match test now sends one event per cycle and pattern.
  Even if there are multiple lines matching the same pattern, only
  one event will be generated. Also the event rate is fixed now, so
  it is possible to require match for X cycles before generating the
  event.

* The /proc/ files content match test was skipped, as the file size on
  the procfs is 0, so monit supposed that there is no content to read.

* FreeBSD: If the monitored process had children with multiple threads,
  the total memory usage was reported incorrectly. Thanks to Phil Kulin
  for reporting the problem.

* Allow reading status and perform Monit actions when using client SSL
  certificate. Previously, if Monit http server was setup to use ssl
  and a client cert, status and action failed. Thanks to Markus Linnala
  for initial patch.

* When the process is starting/stopping, do the process state check more
  effectively to not stress the low power devices with aggresive polling.
  Thanks to Thomas Petazzoni for initial patch.

* Make the process start/stop wait resistant to large time changes.

* Compilation: If PAM is enabled but the PAM headers or library are not
  found by the configure script, it will report error.

* Cross-compilation: the configure checks the setjmp and vsnprintf with
  test program which usually cannot be executed when cross-compiling
  for other architecture. The configure script now takes the following
  arguments which allow to specify whether the setjmp works on this
  platform and whether the vsnprintf is C99 compliant. Thanks to
  Thomas Petazzoni for patch.
        ./configure \
                libmonit_cv_setjmp_available=[yes|no] \
                libmonit_cv_vsnprintf_c99_conformant=[yes|no]

* Manual page language fixes. Thanks to Jonathan Boulle for patch.



Version 5.3.2

BUGFIXES:

* Fix bug #34801: The file content match test did reset of the
  read position in the case that the unmonitor or stop action
  was done. When the file monitoring was enabled again, the
  content match test was applied to the content which was
  tested already.

* Log error details in the case that the name resolving failed.

* Fix the system cpu usage statistics when pattern based process
  check is used and the service is restarted. Thanks to Wayne
  Lawrence for report.

* AIX 6.1 compile fix. Thanks to Benedikt Wegmann for patch.

* Debian Bug#652715: "include files not found" warning. Do not
  display the warning if the include directory is empty.



Version 5.3.1

IMPROVEMENTS:

* Log the particular connection attempt failure in debug mode
  when the retry is enabled.

* Monit can deliver events and status to independent M/Monit
  instances if multiple mmonit URLs are set:
      set mmonit https://user1:pass1@mmonit1/collector
                 https://user2:pass2@mmonit2/collector

BUGFIXES:

* The ICMP echo (ping) test may report false positive error
  if the machine where Monit is running has heavy ICMP
  traffic generated by other applications.

* The file content match test will be performed even on the
  existing content when Monit starts. The last position is
  saved to the statefile, so monit won't generate alert
  after restart. Note that when you start the monit 5.3.1
  the first time, it can do actions for content match which
  was handled by previous monit version already as the
  previous monit versions didn't saved the position.

* Make the monitoring state persistent for manual mode services.

* Display the memory usage total % in the status overview.
  The memory usage in kB displayed the total already, so the
  percentage didn't match.

* Fix the HTML overview page alignment in the Internet Explorer.
  Thanks to Darhl Thomason for patch.

* Extend the SSL library search path for Debian Sid.

* Fix Solaris 10 compilation and Sun Studio support.

* Fix sporadic SSL routines:func(169):reason(161) errors

* If MySQL protocol test failed, report the correct MySQL
  error code. Thanks to Vitaly Lipatov for patch.


Version 5.3

* New 'check program' statement added. Allows to check the exit
  status of an external program or script from Monit.

* Added crontab style support for individual services. You can
  now specify when an individual service should run its checks
  (or not run). You can now, for instance, specify that apache
  should be checked continuously, except between 1AM-5AM on
  Sunday.

* Connection retry option added. Allows to retry a network
  connection in the same testing cycle before reporting an error.

* Detailed protocol connection errors are now included in alerts.

* The HTML overview page displays the CPU and memory total now
  (including children), so real service related usage is displayed
  also for services which spawn worker processes, such as Apache
  or Spamassassin.

* HTML view improvements

* Fix MySQL protocol test: MySQL 5.5.12 returns new error code in
  the case of authentication failure.

* Fix Debian bug #621047: monit fails to build after SSLv2 removal

* Fix crash on Solaris which may occur if the system load is zero.
  Thanks to Paul Sun for report.

* The stacktrace logging on error is disabled in -v (verbose) mode
  as it was too verbose for common service debugging tasks, it can
  be enabled using -vv option.

* Improve how fast Monit check if a program was started or stopped.
  Thanks to Michael Renner for patch.

* Fix the monitoring state presentation during service restart which
  temporarily displayed "Not monitored", whereas the monitoring was
  enabled.

* The "data collected" is updated only if the check was not skipped.


Version 5.2.5

* Fix process match check - when the monitored process failed and
  was restarted by Monit, Monit didn't recognized  it is  running
  after the restart and reported  start failure (similar on stop).
  Thanks to  Kenichi Futatsumori for report and  helping to root
  cause the problem.

* Fix Debian #617259: symbolic links in the filesystem check doesn't
  work.  Thanks to Sergey B Kirpichev for report.

* Fix Debian bug #614984: smtp protocol test issues both EHLO and
  HELO.  Thanks to Sergey B Kirpichev for report.

* Fix bug #32583: Multiple SIP OPTIONS messages use the same header
  data.  Thanks to Hugh Waite for patch.

* Try harder to get FQDN hostname for the host where monit is running.
  The hostname in the $HOST variable which is used in the mail sender
  may thus change. Thanks to Sergey B Kirpichev for patch.

* AIX: Fix the time display which was off by GMT difference. Thanks
  to Helen Chen for report.

* AIX: Fix the M/Monit heartbeat. Thanks to Helen Chen for report.

* Support symbolic link to monit configuration file.

* Fix crash when monit daemon start delay option was used and monit
  was signalized to stop before the start delay passed. Thanks to
  John Schult for report.



Version 5.2.4

NEW FEATURES AND FUNCTIONS:

* Added the "procmatch" CLI command which allows for easy testing
  of pattern for process match check. The command takes regular
  expression as an argument and displays all running processes
  matching the pattern. Example usage:
      $ monit procmatch "iChatAgent"

* Set the default log file mask to 0640 (originally it was 0664).
  Thanks to Sergey B Kirpichev.

* Reduced monit memory footprint by ca. 10%.

BUGFIXES:

* FreeBSD, NetBSD, OpenBSD, MacOSX, Solaris filesystem check fix:
  If block/character device was used in the filesystem path instead
  of mountpoint, monit reported usage of wrong filesystem.

* NetBSD filesystem check: Fix space usage report.

* Fix memory usage monitoring in OpenVZ VPS 2.6.32 virtual hosts.
  Thanks to Kelly for report.

* If the protocol test failed, show the request in the event. Thanks
  to Marco for report.

* Randomize the mail message id to prevent duplicates in the case, that
  the same hostname is used on multiple hosts running monit and messages
  are generated in the same second in parallel. Thanks to Sergey B
  Kirpichev.

* Spelling fixes. Thanks to Sergey B Kirpichev.



Version 5.2.3

BUGFIXES:

* Mysql protocol test supports mysql 5.5.x and newer now.



Version 5.2.2

BUGFIXES:

* Fix crash on MacOSX

* ICMP echo test (ping):
     - bug #31128: do not log error if different response type is received
     - bug #31129: do not require root to use ping test. Privilege to create
       raw socket is still required, but on some platforms such as Solaris it
       can be granted to non-root users too. If the user has no permission to
       perform ping, monit will skip the icmp test and log message (in debug
       mode only).

* rsync protocol test:
     - wait for full server response and verify exit was received
     - bug #31249: send full version to rsync server. Thanks to John Hall
       for report



Version 5.2.1

BUGFIXES:

* HTTP and URL protocol tests: Fixed a problem where HTTP protocol
  tests using a specific request always failed. This bug may also
  affect URL tests. The problem was caused by faulty URL encoding. In
  the process of fixing this bug the new feature that allowed slash in
  service names has been reverted and instead will be added in a later
  release.



Version 5.2

NEW FEATURES AND FUNCTIONS:

* Added support for monitoring processes without pidfile using pattern
  matching. You can use POSIX regular expressions or string matching
  process name with arguments as provided by the 'ps' utility. If the
  pattern matches multiple processes, the first match is used.
  Example:
      check process debian
            matching "/usr/lib/vmware/bin/vmware-vmx .*deb.vmx"

* Added support for swap monitoring. Example:
      check system myserver
          if swap usage > 25% then alert

* Allow to override the default action when service doesn't exist. The
  default action is restart, it can be customized with following
  statement:
    if [does] not exist [[<x> times within] <y> cycles] then <action1>

* Monit automatically registers credentials with M/Monit now, so it's
  not necessary to set it manually in M/Monit anymore. To disable
  credentials registration:
     set mmonit https://monit:monit@10.0.0.1:8443/collector
         and register without credentials

* Added memcache protocol test. Thanks to Sébastien Debrard for the
  patch.

* Added openssl FIPS to Monit httpd. Thanks to Lior Okman for the
  patch.

* The 'check system' can now use start/stop program statements too.

* Added the option to set the "Reply-To" mail header in mail-format.

* Display backtrace on error if debug mode is enabled (requires
  backtrace support in libc)

BUGFIXES:

* Show real process uptime - formerly the presented uptime was based
  on create and modify timestamp of process' pidfile which provides
  invalid uptime if the pidfile is replaced and process keeps running
  with original PID. Thanks to Nima Chavooshi for report.

* When user triggered action for some service (such as stop) and
  before that action completed user triggered another action for the
  same service (such as start), the second action has been ignored.
  Monit will not accept new action and return temporary error until
  the previous action completed.

* If process resource usage gathering failed, retry next cycle as the
  error can be temporary.

* Fixed sporadic failures when SSL was used.

* ICMP echo test (ping):
     - fixed sporadic false positive/negative
     - removed limit of 20 pings per cycle

* DNS test:
     - accept NS root request refusal as correct response because
       server reacts on request
     - accept authority answer as alternative to record. Thanks to
       Nick Osborn for patch

* RADIUS test fix. Thanks to Alan DeKok for patch.

* M/Monit heartbeat is fully independent of testing cycle now to
  prevent false positive when service test blocks.

* Fixed SMTP STARTTLS protocol, required for servers that adhere
  strictly to RFC 3207 4.2. Thanks to Lorenzo A. Sedano Cadinanos for
  patch.

* Service name:
     - allow the service name to start with "/"
     - fixed handling of the service names which contain "/" in the
       name in Monit web interface. Thanks to Artyom Khafizov for
       patch.

* When 'check system' is not defined, monit adds it automatically
  using hostname for service name. If existing service was defined
  with the same service name (matching hostname), monit didn't added
  the entry and reported confusing error message pointing to the end
  of configuration file. Thanks to Thorsten Kampe for report and help.

* Remove extra NL characters from message when resource succeeded
  event is sent. The extra NL character may break the mail headers.
  Thanks to Hanno Boeck for patch.

* Fixed display of cpu user/system/wait usage which temporarily
  displayed -1.0% between two monitoring cycles while cpu monitoring
  was initializing. Thanks to Marcus Muelbuesch for report.

* Fixed display of port response time as -1 if 'monit status' was
  called in the middle of service test.

* Fixed display of service initializing state after monit start or
  reload.

* Fixed MONIT_DESCRIPTION environment variable. Thanks to Marco
  Roeland for patch

* AIX:
     - fixed compilation
     - fixed system load average monitoring
     - fixed ICMP echo test

* Mac OS X:
     - allow monitoring of system-wide load average, cpu and memory
       usage even if
       Monit is running as non-root user

* NetBSD:
     - fixed ICMP echo test



Version 5.1.1

BUGFIXES:

* Fix FTP protocol test. Thanks to Axel Reinhold for report.

* Fix the HTTP protocol test's hostheader option which was added in 5.1.
  Thanks to Naoya Nakazawa for report.

* Removed warning about missing system service check. Missing system service
  check is not error and it shouldn't be reported as such.

* Fix manual page formating. Thanks to Stefan Alfredsson for report.



Version 5.1

NEW FEATURES AND FUNCTIONS:

* It is now possible to define any action for the restart timeout rule.
  Multiple restart timeout rules can also be defined. Example:
      if 3 restarts within 5 cycles then exec "/foo/bar"
      if 8 restarts within 10 cycles then unmonitor

* Service can be added to multiple groups. Thanks to Brad Gessler
  for suggestion. Syntax:
    check filesystem wwwdata with path /www
      group www
      group filesystem

* Added GPS protocol test. Thanks to Sebastien Debrard for patch.

* Added RADIUS protocol test. Thanks to Alan DeKok for patch. Example syntax:
    check process radiusd with pidfile /var/run/radiusd.pid
       start program = "/etc/init.d/freeradius start"
       stop program = "/etc/init.d/freeradius stop"
       if failed
          host 127.0.0.1 port 2000 type udp protocol radius secret testing1234
       then alert
       if 5 restarts within 5 cycles then timeout

* The HTTP protocol test now supports a hostheader option which allows to
  override Host header in HTTP request. It can be used for example
  to test a farm of HTTP servers by IP addresses and to set specific
  Host header. Thanks to Brady Catherman for patch. Example:
    if failed host 192.168.1.100 protocol http hostheader "example.com" then alert

* If an error occur during Monit command-line execution, report the error
  and exit with 1, so it is possible to react if Monit is used from a script.
  On success, 0 is returned as usual. Previously, Monit always exited with
  0 even if an error occurred.

* Do not require SSL version type when specifying SSL communication with M/Monit
  (SSL version is set to auto).

* If the Monit http interface failed to start, provide more details about
  the reason.

BUGFIXES:

* Support resource monitoring (cpu usage, etc.) when Monit is running
  inside virtual environment. Tested on:
      - FreeBSD jail
      - Solaris zone
      - Linux Vserver

* Fix #26752: inside Solaris Zone, Monit failed to detect children
  and computed host memory wrong

* On Solaris, FreeBSD, NetBSD and OpenBSD, Monit no longer needs to run as root user
  in order to be able to watch process resource usage (cpu and memory).

* Send heartbeat to M/Monit even if Monit is busy in a long testing cycle to prevent
  false alerts about non-responsive Monit agent.

* Fixed SMTP protocol test which may sometimes incorrectly
  report ESMTP protocol failure. Thanks to Axel Reinhold for
  report.

* Fixed content match check which reported only first
  match during the same cycle. Thanks to Pavel Shevaev for
  report.

* Allow for the use of complete SSL certificate chains.
  Thanks to Lawrence Tan for patch.

* Added support for multiline greetings to FTP protocol test.
  Thanks to Giovanni D'Cristina for report.

* Fix Debian Bug #541139: uses gethostbyname() and thus does
  not work with "options inet6" in /etc/resolv.conf. Thanks to
  Michael Stapelberg for patch.

* If Monit configuration allowed http interface access for a read-only
  user and it was specified as the first allow entry, Monit command line
  commands failed because it used the read-only account so commands
  like start, stop, etc. were rejected. Monit will now use full access
  regardless of allow option order. Thanks to Thorsten Kampe for report.

* Passive monitoring mode fixed. Thanks to Nelson Vale for report.

* Fixed #27784: wait_start/wait_stop can advance too quickly.
  Thanks to Randy Puro for report.

* Solaris resource usage fixed when Monit was compiled with optimizations enabled.

* Fixed #28369: escape XML properly

* Check service name uniqueness when 'check system' is missing in monitrc and virtual
  system service with name set to local hostname is added. Thanks to Marcus Muelbuesch
  for report.

* Fix crash when queued event delivery was retried for service which was no longer
  configured in Monit.



Version 5.0.3

BUGFIXES:

* Fixed #26664: crash on service timeout or unmonitor action
  (introduced in 5.0.2). Thanks to Bretislav Kubesa and
  Michael Shigorin for report.

* Removed the configure --without-resource option. If the user
  who is running Monit doesn't have permissions to check the
  processes state, the related checks are disabled dynamically.



Version 5.0.2

BUGFIXES:

* 35 improvements based on code scan with Klocwork
  (http://www.klocwork.com/) which we were evaluating.
  Huge thanks to Klocwork for their great product.

* Fixed #26382: if start or stop script for some service didn't
  exist, monit logged error during configuration file parsing and
  refused to start. Monit now just logs warning and continues.



Version 5.0.1

BUGFIXES:

* Fixed a bug where Monit did not stop logging succeeded events.
  This bug occurred if PID, PPID, timestamp or size change tests
  were used and failed and then succeeded again.



Version 5.0

NEW FEATURES AND FUNCTIONS:

* M/Monit support added. If you run Monit on more than one
  server, you can use M/Monit to manage and control all your
  Monit enabled servers from one simple Web Interface. See
  http://mmonit.com/ for details.

* Support use of symbolic links in filesystem check. Thanks to
  Aleksander Kamenik for suggestion. Example:
    check filesystem rootfs path
         /dev/disk/by-uuid/4ef973f7-67d1-4bb0-8223-cb1c692b72e4
      if space usage > 95% then alert
      if inode usage > 95% then alert

* If no 'set mailserver' was defined in monitrc, Monit tried to
  fallback to localhost:25 SMTP server. This fallback was removed
  since it may be confusing. If you want to deliver mail alerts
  from Monit, the 'set mailserver' option is necessary. In case
  it is missing, Monit will log appropriate error and hint to add
  it.

* The generic send/expect protocol test limited the expect input
  to 256 bytes. It's possible to set the input buffer for expect
  globally - for example: set expectbuffer 20 kb Thanks to Asil
  Carlin for suggestion.

* The following event types were added CONTENT, FSFLAGS, PID and
  PPID and the following generic event types CHANGED and MATCH were
  removed and replaced by the above types and with the existing SIZE,
  CHECKSUM, TIMESTAMP events so the information is more specific
  The event types are internal to Monit and unless you have used
  either CHANGED or MATCH event in your alert filters, no change
  is necessary (alerts are delivered as usual, the tests just use
  different types internally).

* Monit now generates a unique id on first start and store the id
  in a permanent file. This id is used in protocol communication
  between Monit and M/Monit to pair a Monit instance with it's
  host entry in M/Monit. By default the id file is placed in
  $HOME/.monit.id. The location can be changed by using the set
  idfile statement, for example:
    set idfile /var/monit.id

* Monit now keep its service monitoring state even on Monit
  restart. Previously Monit dropped the state when it was stopped
  correctly. Services in manual monitoring mode will remember the
  monitoring state across Monit restarts. If Monit is used in a
  cluster, it is recommended to place the state file in a
  temporary filesystem incase the primary machine will crash and
  the the spare machine takeover, the state will be dropped on
  reboot for the crashed machine and the services in manual
  monitoring mode won't be started on reboot. For example the
  "set statefile /tmp/monit.state" can be used to place the state
  file in the /tmp/ filesystem.

* Added a protocol test for testing the LMTP protocol. Thanks
  to Fco. Javier Felix for patch.

* Added the start delay option for daemon statement which allows
  to pause Monit on its startup for a while. If monitored
  services are started by init scripts in parallel on system
  boot, Monit may be too fast and detect that the service is not
  running (yet) and restart the service. Note that it's still
  recommended Monit is setup to be responsible for service
  startup (that is, don't use init to start Monit controlled
  services, instead use Monit). This will ensure correct startup
  without need for a start delay since Monit will have full
  control of service startup. Many users start services from init
  on boot anyway, so in such cases this option will solve their
  problems. Default start delay is 0 which corresponds to the
  current behavior. Example syntax which will make Monit wait one
  minute before starting its first monitoring cycle:
  --8<--
    set daemon 5 with start delay 60
  --8<--
  Thanks to Fco. Javier Felix for patch.

* Added PAM support for Monit http interface authentication. Note
  that PAM is not supported on all platforms - currently works on
  Linux, Mac OS X, FreeBSD, NetBSD. Monit uses the PAM service "monit".
  Here is a Monit PAM service example for Mac OS X which is able
  to authenticate system users for Monit access -
  /etc/pam.d/monit:
  --8<--
    # monit: auth account password session
    auth       sufficient     pam_securityserver.so
    auth       sufficient     pam_unix.so
    auth       required       pam_deny.so
    account    required       pam_permit.so
  --8<--
  And configuration for monitrc which allows only group admins
  to access the http interface:
  --8<--
    set httpd port 2812 allow @admin
  --8<--
  See the PAM manual page for details on how to configure the PAM
  service on your system and the available PAM plugins. Thanks to
  Wilhelm Meier for patch.

* Added more detailed reports for Monit resource tests on service
  recovery. Thanks to Lars Kotthoff for patch.

* Set locale to C.

* Added a protocol test for testing the SIP protocol which is
  used by popular communication servers such as Asterisk and
  FreeSWITCH. We received two patches for this protocol and have
  taken code from both and merged them. Many thanks to Bret
  McDanel and to Pierrick Grasland for supplying the patches.

* Added MONIT_DESCRIPTION to the list of environment variables
  available to programs started by monit. Thanks to Morten
  Bressendorff Schmidt for patch.

* If a service group is specified for Monit CLI action,
  Monit no longer requires the "all" verb, so the following
  command is possible:
    monit -g web stop
  If group is not specified (i.e. the -g option is omitted), the
  service name or "all" is still required as a safeguard.

* Added an option to the 'set mailserver' statement so it is
  possible to override the hostname used in SMTP EHLO/HELO and in
  the Message-ID header when sending mail. Monit defaults to use
  the localhost name. I.e. what you get when executing this
  command 'uname -n'. Overriding the host name can be useful if
  the host does not have a DNS entry and if the receiving
  mailserver uses DNS verification as spam protection. The new
  override option is:
  set mailserver foo.bar.baz using hostname "my.monit.host"

* A new Event_Action type was added which reports actions
  performed on Monit's administrator request (either via web
  interface or CLI). If you don't want to received these events,
  you can set the mail-filter for "action" event type.

* NOTA BENE: Monit start action is synchronous now. This improves
  the startup sequence for dependent services, since Monit will
  wait for parent service to start before trying to start the
  child.

* It is now possible to define execution timeout for start and
  stop commands. That is, how long Monit will wait after
  executing a command before it assume execution failed. If the
  timeout option is omitted, Monit defaults to 30 seconds. You
  can override the timeout for example for services which are
  starting slower.
  Example syntax:
    start program = "/bin/foo start" with timeout 60 seconds

* The event passed state is renamed to succeeded as this name
  more reflects the state of things.

* The device service test is renamed to filesystem.

BUGFIXES:

* Some linux virtualization platforms report CPU count as 0.
  Monit then dynamically disabled CPU usage monitoring. In such
  case we now override the CPU count from 0 to 1 so resource
  usage monitoring can continue. Thanks to Jenny Hopkins for
  report.

* Increased the server socket backlog queue which will make Monit
  able to handle more services. Thanks to Jochen Kramer.

* Fixed #24866: Email messages such as: cpu wait usage check
  succeeded [current cpu wait usage=17.4%] were displayed as
  "...usage<SOMEGARBAGE>.4%". The problem was incorrect transfer
  encoding header in the email (the body itself was OK). Thanks
  to Dave Cheney for report.

* When a Monit shutdown requested was issued while Monit were
  working and testing services, Monit did not shutdown until all
  work were done, i.e. until all services were tested. Monit will
  now shutdown faster - as soon as it finish testing the current
  service.

* Monit blocked/unblocked SIGTERM, SIGINT SIGHUP and SIGUSR1
  signals during operation to protect certain code sections. When
  a signal was sent during such a time, for example to stop
  Monit, it was dropped and had to be retried in order to stop
  Monit. This limitation is now removed and signals will be
  processed at any time. Thanks to Nicola Tiling for report.

* If the Monit httpd allow option did not include a
  user:password, Monit CLI logged the following error (even if
  the action was performed anyway):
     Cleartext credentials needed for basic authorization!
  This error was false - even access restriction based on
  host/net is sufficient - user and password is just one of
  possible options (not requirement). Thanks to Gilad Benjamini
  for report.

* Allow localhost as a value for the host header in the http
  protocol test instead of setting an empty host header and let
  the http server decide

* The 'if changed checksum ...' test can now be used even if a
  monitored file doesn't exist at Monit startup. Thanks to Joe
  Shang for report.

* If both event handlers (M/Monit and mail alerts) temporarily
  failed at once and event queue was enabled, events will be
  stored in the queue and delivered in the next cycle. However, a
  bug caused delivery to be retried for every cycle for both
  handlers if just one of them was recovered. Monit could then
  deliver the same message multiple times until both handlers
  recovered. The problem is now fixed and only one copy of the
  event is sent even if only one handler did recover.

* Make unit in size test optional and default to byte unless
  specified. So it is possible to write, if size > 1000 then ..

* Fixed handling of invalid input files in event queue handler.
  Thanks to Fco.Javier Felix for patch.

* Set the content type to text/html for Monit web interface POST
  responses. Thanks to Rich Drummond for patch.

* Fixed #23530: configure script will return error if bison,
  byacc or yacc are not found at Monit compile time.

* Fix CPU and memory monitoring on Solaris (it was disabled on
  Monit start)

* AIX fixes and extensions, Monit should run on AIX without
  problems, including cpu, memory and filesystem monitoring
  (tested with AIX 5.3). Thanks to Brian Downey for support
  and help.

* HP-UX fixes and extensions, Monit should run on HP-UX without
  problems, including cpu, memory and filesystem monitoring.
  Thanks to Brian Downey for support and help.

* Fixed #23467: Don't exit, only issue a warning if the "include"
  statement did not find any files to include.

* Fixed #23530: Event queue did not work with the default
  unlimited slots.

* Fixed #23617: The process cpu usage is initializing in the
  first cycle so the value is set to 0% - if the 'cpu usage <
  xyz%' test was used to check that the process usage is higher
  then given level, it was always true. Monit now skips the
  process cpu usage check in the first cycle.

* Make sure Monit alerts has a unique message id. Thanks to Steve
  Purcell for report

* Fixed possible crash when Monit is watching VPS environment on
  Linux which reports number of CPUs as 0. Thanks to Marius
  Schmidt for report.

* Cleanup event states during a service stop/unmonitor so old
  events are not sent when the service is started/monitored again.

* Fixed #21989: Monit could start two instances of the process
  when service restart is performed and the process is starting
  slowly. Thanks to Nick Upson, Aaron Scamehorn and David Greaves
  for report.

* Fixed #21550: Fix crash when Monit event queue contained an
  empty file. Thanks to Douglas J Hunley for report.

* Fixed possible crash when the 'if changed checksum' test was
  used along with restart action. Thanks to Brian Candler for
  report.

* Fixed #22075: Allow using a mail address as username when using
  SMTP authentication.

* Fixed #22191 and #19823: If the file content test does not match
  anymore, reset the service error state. (Previous versions did
  not clear the error state and kept showing a match in the status
  listing and in the http interface).

* The 'if changed size ...' test can now be used even if the
  monitored file does not exist on monit's start.

* If a htpasswd file is used to control Monit http interface
  access and the hash type is set to MD5 but the file contains
  wrong format (non-MD5), report the error and keep running.
  Formerly Monit exited with an assert exception. Thanks to
  Adrian Bridgett for report.

BACKWARD INCOMPATIBLE CHANGES:

* The current CPU usage test which checked the cpu usage of the
  process itself plus the cpu usage of child processes was
  renamed to TOTALCPU (otherwise it works the same). The new CPU
  usage test checks the CPU usage of the process itself only.
  This change was introduced to align the syntax with MEMORY and
  TOTALMEMORY tests and to allow to test the CPU usage of
  processes which fork child processes but the user don't want to
  include children (such as Mythtv). Users who are using the CPU
  check for services like Apache webserver to watch total cpu
  utilization (including children) should rename the CPU
  statement in their configuration to TOTALCPU.
2014-02-06 09:09:17 +00:00
..
9base Fix flags on SunOS. Patch from Sebastian Wiedenroth. 2013-12-10 14:11:32 +00:00
855resolution Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
915resolution Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
acpica-utils Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
acpidump Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
adtool PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
afbinit Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
agedu Update to r10126. From the svn log: 2014-01-31 15:32:03 +00:00
amanda Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
amanda-client * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
amanda-common Fix race condition. 2014-01-06 22:15:06 +00:00
amanda-plot Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
amanda-server Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
amtterm Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
ansible Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
apcupsd Package requires libusb. Patch from Sebastian Wiedenroth. 2013-12-11 11:55:17 +00:00
asapm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
atitvout Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
bacula Enter/Leave are used by wxGTK, so undef them before including its 2014-02-01 19:41:31 +00:00
bacula-clientonly Update bacula to 5.2.13 2014-01-14 10:58:17 +00:00
bacula-doc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
bacula-qt-console Update bacula to 5.2.13 2014-01-14 10:58:17 +00:00
bacula-tray-monitor Update bacula to 5.2.13 2014-01-14 10:58:17 +00:00
bacula-wx-console Update bacula to 5.2.13 2014-01-14 10:58:17 +00:00
bbsload NetBSD/current requires uvm/uvm_extern.h and _KMEMUSER. 2013-01-11 23:30:17 +00:00
bchunk Reset maintainer on his request. 2012-12-12 10:44:06 +00:00
bcmfw This uses BSD makefile rules. Ignore tautologies for clang. 2013-09-10 14:42:05 +00:00
bcollect Not MAKE_JOBS_SAFE. 2013-11-29 13:00:08 +00:00
bkpupsd Drop -Wno-traditional for clang. 2013-09-10 14:42:19 +00:00
boxbackup-client Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
boxbackup-server Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
brasero Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
brasero-nautilus Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
bsdinstall bsdinstall-20130905: Install pre-generated catman page where necessary. 2013-09-05 12:19:49 +00:00
bsign Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
btpin-qt Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
bubblemon Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
bup Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
burn Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
capistrano Update capistrano to 2.15.5. 2013-09-15 15:56:12 +00:00
ccd2iso Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
ccze Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
cdbkup Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
cdrdao adapt to a change in libao's WAV output format, cdrdao can now 2013-05-03 16:14:47 +00:00
cdrkit Needs bzip2 and zlib. 2014-01-09 14:42:54 +00:00
cdrtools Update to 3.01a22: 2014-01-25 10:49:43 +00:00
cfengine2 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
cfengine3 Bump PKGREVISION for mysql default change to 55. 2013-03-02 20:33:21 +00:00
checkpassword Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
checkpassword-pam Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
checkperms Don't force ACTIVE_CC for clang. Explicitly disable noreturn checks. 2013-09-08 16:33:59 +00:00
clex Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
conky Update PLIST for when lua support was disabled back in October. *cough* 2013-12-08 03:30:31 +00:00
consolekit Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
coreutils Add comment. 2014-02-04 15:07:46 +00:00
cpmtools Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
cpogm Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
cpuburn Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
cpuid Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
crashme Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
cuisine Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
cvsreport Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
daemond Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
daemontools USE_TOOLS+= file, required for FILE_CMD. 2013-05-17 14:48:49 +00:00
dbus Restrict lib/dbus-1.0/include/dbus/dbus-arch-deps.h buildlink 2014-01-29 13:01:53 +00:00
dbus-glib Update to 0.100.2: documentation updates. 2013-03-15 22:09:12 +00:00
dbus-python-common Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
dbus-qt3 recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
dbus-sharp Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
dbus-sharp-glib Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
dc-tools Do not set FETCH_USING, should not be set in a package Makefile. 2014-01-27 18:41:11 +00:00
dd_rescue patch-ab modified to fix clang build problem: 2013-06-14 01:07:58 +00:00
dd_rhelp Hand in maintainership. 2013-04-13 07:55:01 +00:00
ddrescue Update to 1.17. Changes: 2013-11-16 07:59:27 +00:00
deforaos-browser Packaged DeforaOS Browser 0.4.13, with: 2014-01-11 21:11:53 +00:00
deforaos-terminal Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
depot Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
desktop-file-utils Update to 0.22: 2013-09-02 16:08:11 +00:00
detox Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
devkitd Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
di Import di-4.34 as sysutils/di. 2013-01-30 12:29:06 +00:00
dirsize Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
dirvish Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
diskscrub Fix return type. Bump revision. 2013-12-15 19:44:39 +00:00
dmassage Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
dmesg2gif Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
dmg2img PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
dmidecode Update to 2.12. Changes: 2013-05-19 11:07:26 +00:00
dmsdos Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
dog Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
dptutil Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
dtpstree Fix various case of missing includes due to libstdc++'s namespace 2013-04-30 22:34:29 +00:00
duplicity Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
dvd+rw-tools Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
dvdisaster Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
dvdrecord Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
e2fsprogs Force GNU inline semantic. 2012-11-19 03:02:14 +00:00
easydiskpasswd Drop -Wno-traditional for clang. 2013-09-10 14:43:42 +00:00
edbus Updating enlightenment libraries to 1.7.7, add missing enlightenment 0.17.3 2013-06-16 18:56:04 +00:00
efreet Updating enlightenment libraries to 1.7.7, add missing enlightenment 0.17.3 2013-06-16 18:56:04 +00:00
eggdbus automake-1.13 compat. 2013-01-26 22:02:26 +00:00
entr Import entr-1.9 as sysutils/entr. 2013-04-19 07:57:12 +00:00
estd Reset maintainer on his request. 2012-12-12 10:44:06 +00:00
etckeeper Don't use multiple RCS IDs, it confuses the +BUILD_VERSION logic. 2013-06-26 14:26:47 +00:00
etcmanage Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
etcutils Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
euca2ools Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
eventlog Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
extipl Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
fabric Do not set FETCH_USING, should not be set in a package Makefile. 2014-01-27 18:41:11 +00:00
fakeroot Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
fam Use find-headers instead of find-files to detect builtin header files. 2013-11-23 12:10:13 +00:00
fastfs Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
fatback Resolves: 2013-04-06 20:27:16 +00:00
fdupes Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
file Use find-headers instead of find-files to detect builtin header files. 2013-11-23 12:10:13 +00:00
filelight Update to KDE SC 4.11.5 2014-02-01 02:20:43 +00:00
filelight-kde3 Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
findutils DESCR: 2012-12-16 18:13:28 +00:00
fix4SA110rev2 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
fixelfprot Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
flashrom Update flashrom to 0.9.7. 2013-12-09 18:54:24 +00:00
foremost Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
free Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
fs-kit Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
fscd Drop -Wno-traditional for clang. Detect invalid client messages instead 2013-09-10 14:43:23 +00:00
fsviewer Fix build with current windowmaker. 2013-12-07 18:24:59 +00:00
ftwin Revbump from devel/apr update 2013-12-01 10:18:02 +00:00
gamin Always return a value from !void functions. 2012-12-25 21:02:56 +00:00
gcdmaster Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
gcombust Reset maintainer for resigned developers. 2013-12-23 11:57:02 +00:00
genpasswd Revive MASTER_SITES. 2013-03-14 14:19:52 +00:00
gentoo Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
gfm Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gio-fam share hacks.mk with its base package. 2013-08-24 09:36:43 +00:00
gkrellm Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gkrellm-est Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gkrellm-server Edited DESCR in the case of: 2013-04-07 20:49:31 +00:00
gkrellm-share Edited DESCR in the case of: 2013-04-07 20:49:31 +00:00
gnome-commander Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
gnome-device-manager Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
gnome-menus Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
gnome-mount Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
gnome-nds-thumbnailer Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gnome-pkgview Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
gnome-power-manager Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
gnome-settings-daemon PKGREVISION bump for json-c shlib rename. 2013-11-25 12:00:45 +00:00
gnome-system-monitor Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
gnome-system-tools Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gnome-vfs update builtin solaris gssapi/mit-krb5 support for gnome-vfs 2013-10-12 04:39:01 +00:00
gnome-vfs-monikers Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gnome-vfsmm Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gnome-volume-manager Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
gnometoaster Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
gnuit lib/charset.alias is skipped by check-files.mk 2013-07-21 09:11:43 +00:00
gpart Avoid conflict with log(3). 2013-01-11 13:31:05 +00:00
grub Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
grub2 Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
grun Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gsettings-desktop-schemas update to 3.6.1 2012-11-23 17:19:39 +00:00
gst-plugins0.10-gio Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
gst-plugins0.10-gnomevfs Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gst-plugins1-gio Import gst-plugins1-gio-1.0.3 as sysutils/gst-plugins1-gio. 2012-11-29 08:31:31 +00:00
gtk-send-pr Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gvfs Needs openssl. 2014-01-09 10:37:25 +00:00
gworkspace Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
hal Bump PKGREVISION of all packages which create users, to pick up change of 2013-07-12 10:44:52 +00:00
hal-info Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
hddtemp Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +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 Edited DESCR in the case of: 2013-04-07 20:49:31 +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 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
htop Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
i2ocfg Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
i810switch Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
iat Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
idesk Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
install-sh Fixes: 2013-04-06 03:45:05 +00:00
intel-microcode-netbsd update to 20120222 2013-04-19 15:34:30 +00:00
ipa Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
ipmitool * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
ipw-firmware Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
ir-account Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
isapnptools Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
iwi-firmware Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
iwi-firmware3 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
iwn-firmware Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
k3b Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
k3b-kde3 Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
k4dirstat Do not set FETCH_USING, should not be set in a package Makefile. 2014-01-27 18:41:11 +00:00
kcron Update to KDE SC 4.11.5 2014-02-01 02:20:43 +00:00
kdf Update to KDE SC 4.11.5 2014-02-01 02:20:43 +00:00
kdirstat Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
kfloppy Update to KDE SC 4.11.5 2014-02-01 02:20:43 +00:00
krusader Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
ksystemlog Update to KDE SC 4.11.5 2014-02-01 02:20:43 +00:00
kuser Update to KDE SC 4.11.5 2014-02-01 02:20:43 +00:00
lambd Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
lavaps Adjust TCL version. 2014-02-04 00:20:17 +00:00
libdevkit-gobject Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
libgamin
libgksu Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
libgtop Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
libirman Don't conflict with log from libm. 2012-10-26 20:29:15 +00:00
libnotify Update libnotify to 0.7.6 2013-12-08 16:30:15 +00:00
libol Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
liboobs Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
libpciaccess Add support for Darwin. Patch from nixpkgs. 2013-12-21 11:05:23 +00:00
libvirt fix up empty directories (which are targets of CONF_FILES manipulations) 2014-01-29 01:08:41 +00:00
lilo Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
lockf Use Mt for email addresses. 2013-07-20 21:50:52 +00:00
logfinder No need to have two variables for the same logic. 2014-01-25 10:45:15 +00:00
logrider Import logrider-0.2 as sysutils/logrider, packaged for wip by Franck Lesage. 2013-05-07 08:49:28 +00:00
logrot Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
logrotate Do not set FETCH_USING, should not be set in a package Makefile. 2014-01-27 18:41:11 +00:00
lsof Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
magicrescue Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
manifold Convert to distutils.mk. Mark as not for python-3.x. 2014-01-23 17:39:32 +00:00
mbmon Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
mc Remove legacy support that was scheduled for removal. 2013-10-25 06:53:33 +00:00
mc46 Remove legacy support that was scheduled for removal. 2013-10-25 06:53:33 +00:00
mcollective Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
mdf2iso Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
memconf Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
memtest86 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
memtester Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
memtestplus Fix build on NetBSD-5* using a patch from John D. Baker in PR 48469. 2013-12-22 21:32:36 +00:00
mencvcd Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
menu-cache new package: menu-cache 2013-01-31 03:25:53 +00:00
mesure ANSIfy do_work. 2013-03-02 17:55:27 +00:00
mgm Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
mklivecd Use Mt for email addresses. 2013-07-20 21:50:52 +00:00
mkmemstick Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
mksunbootcd Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
mktemp Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
monit Update monit to 5.6. 2014-02-06 09:09:17 +00:00
monitoring Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
mrsync Pick up ${CC} from the environment, if it's defined 2013-05-11 21:39:43 +00:00
mtools Add comments on patches (from cvs log etc). 2013-01-18 00:34:30 +00:00
mtoolsfm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
mtscan Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
munin-doc Set LICENSE. 2013-06-17 13:28:34 +00:00
munin-node Add an entropy monitoring script for NetBSD. This script needs to run 2013-07-25 11:41:25 +00:00
munin-server Fix PKG_USERS usage. 2013-10-31 15:58:30 +00:00
nautilus Reset maintainer for resigned developers. 2013-12-23 11:57:02 +00:00
nautilus-sendto Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
ncdu Import ncdu-1.10 as sysutils/ncdu, packaged for wip by slitvinov. 2013-08-23 11:31:29 +00:00
ndesk-dbus Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
ndesk-dbus-glib Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
neb-wipe Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
netbsd-kmod-tools Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
netbt-hcidump Fix format string. 2013-09-10 14:44:03 +00:00
news Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
notification-daemon Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
nrg2iso Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
ntfsprogs Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
nvnet Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
nvramtool Update nvramtool to git HEAD as of today using local distfile. 2013-12-09 18:40:07 +00:00
oak Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
open-vm-tools Remove unused functions. 2013-11-11 16:42:38 +00:00
openxenmanager Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
osname BUILD_MAKE_FLAGS and INSTALL_MAKE_FLAGS can be merged into MAKE_FLAGS 2013-03-14 14:25:31 +00:00
p5-File-chmod Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Copy-Recursive Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-File-Inplace Import p5-File-Inplace-0.20 as sysutils/p5-File-Inplace. 2013-07-06 00:59:04 +00:00
p5-File-Remove Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Filesys-Df Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Filesys-DfPortable Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Filesys-Statvfs Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Gnome2-VFS Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
p5-GTop Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-BufferedSelect Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-IO-KQueue Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Lchown Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Linux-Inotify2 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Mac-AppleScript Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Mac-AppleScript-Glue Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Parse-Syslog Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Quota Update p5-Quota to 1.7.0. 2013-08-27 08:06:56 +00:00
p5-Server-Starter Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-SSH-Batch Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Sys-CpuLoad Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Sys-Filesystem Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Sys-Hostname-Long Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Sys-SigAction Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Sys-Syslog Fix/Update DEPENDS paterns for perl CORE modules, with some trivial fixes. 2013-12-09 14:17:41 +00:00
p5-Sys-Utmp Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Unix-ConfigFile Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Unix-Statgrab Adding new package for CPAN module Unix::Statgrab 0.101. 2013-09-13 10:31:29 +00:00
p5-Unix-Syslog Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-UPS-Nut Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
pciutils Enable package on Solaris 11 and friends. 2012-12-19 14:05:26 +00:00
pcmanfm Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
pcvt-utils Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
pdumpfs Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
pear-Log Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
pflogsumm Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
pfstat recursive bump from graphics/gd shlib major bump. 2013-09-04 12:31:24 +00:00
pftop PKGREVISION bumps for net/libpcap update. 2013-02-06 19:30:54 +00:00
pluged Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
polysh Convert to distutils.mk. Fix interpreter path in installed file 2014-01-23 18:30:20 +00:00
pscpug Requires _KMEMUSER on NetBSD/current 2013-01-11 23:30:39 +00:00
psftools Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
psmisc Need limits.h for PATH_MAX on SunOS. 2013-12-13 09:58:58 +00:00
pstree Update to 2.36 2013-05-09 15:41:23 +00:00
puppet Remove the versionable feature of the pkgin provider for now. 2014-01-02 01:41:48 +00:00
pv Add vars.mk to REPLACE_LOCALEDIR_PATTERNS for autoconf/make/vars.mk. 2013-09-01 06:32:11 +00:00
pwgen Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
py-dbus Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
py-gnome-menus Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
py-notify Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
py-notify-python Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
py-psutil Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
py-xattr Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
qlogtools Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
radeontool Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
radmind The package's build system does not ensure libsnet is built before 2014-01-08 12:11:39 +00:00
rconfig Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
rdiff-backup Convert to distutils.mk. Mark as not for python-3.x. 2014-01-23 18:56:44 +00:00
rename Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
rfstool Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
roller Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
rox Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
rsnapshot Fixed build with perl-5.18's pod2man, and sent patch upstream. 2013-06-04 18:48:48 +00:00
rtty Be more careful in what to chmod and substitute, so that the wrappers 2013-05-23 18:42:22 +00:00
ruby-activesambaldap Update ruby-activesambaldap to 0.1.0. 2012-09-16 11:13:08 +00:00
ruby-directory-watcher Update ruby-directory-watcher to 1.5.1. 2013-09-15 15:59:31 +00:00
ruby-facter Update ruby-facter to 1.7.3. 2013-09-15 16:03:33 +00:00
ruby-fssm Update ruby-fssm to 0.2.10. 2013-02-11 04:14:58 +00:00
ruby-libnotify Inherit version restrictions of ruby-gnome-gtk3. 2014-01-15 13:52:43 +00:00
ruby-notify Fixes CATEGORIES 2013-08-14 08:55:49 +00:00
ruby-quota Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
ruby-rb-appscript Fix build problem and clean up PLIST. 2013-10-01 15:24:02 +00:00
safetynet Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
salt Do not set FETCH_USING, should not be set in a package Makefile. 2014-01-27 18:41:11 +00:00
salt-docs Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
same Use z modifier for size_t. 2013-09-10 14:44:28 +00:00
sarah Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
screentest Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
scsiinfo Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
service-config Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
setquota Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
sformat Fixes: 2013-04-06 03:45:05 +00:00
shc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
shelldap Fix/Update DEPENDS paterns for perl CORE modules, with some trivial fixes. 2013-12-09 14:17:41 +00:00
shmux Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
skill Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
slay Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
slocate Import slocate-3.1 as sysutils/slocate, packaged for wip by diro, Adam Hoka, 2012-12-12 15:24:17 +00:00
smartmontools Install the script that generates warning mail messages. From Petar Bogdanovic in private mail. 2013-12-02 22:26:22 +00:00
smbldap-tools Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
socket Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
spice-protocol Updated to latest release, 0.12.6. From ChangeLog: 2013-06-30 23:46:19 +00:00
sredird Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
sshsh Revive MASTER_SITES. 2013-03-14 16:09:20 +00:00
storage-manager "Packages that install libtool libraries should define USE_LIBTOOL." 2013-04-06 14:22:39 +00:00
stow Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
strace Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
strigi Add -lclucene-shared on Darwin. 2013-12-16 12:07:20 +00:00
su2 "Each sed command should appear in an assignment of its own." 2013-04-06 21:07:31 +00:00
sux Revive MASTER_SITES. 2013-03-14 16:47:44 +00:00
swapd Update sysutils/swapd to 1.0.3nb2 2013-09-13 10:15:40 +00:00
swatch Fix/Update DEPENDS paterns for perl CORE modules, with some trivial fixes. 2013-12-09 14:17:41 +00:00
sysbuild fix date of NetBSD 1.6 release 2014-01-30 20:23:54 +00:00
sysbuild-user Bump PKGREVISION of all packages which create users, to pick up change of 2013-07-12 10:44:52 +00:00
sysgen Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
sysinfo Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
syslog-ng PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
system-tools-backends We reached NetBSD "6". 2013-08-24 15:34:39 +00:00
sysupgrade Update to 1.5: 2013-07-28 23:37:14 +00:00
tarsnap Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
tcx Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
tdir No need to have two variables for the same logic. 2014-01-25 10:45:15 +00:00
testdisk Update sysutils/testdisk to testdisk-6.14. 2013-09-09 17:45:58 +00:00
tits Reset maintainer for resigned developers. 2013-12-23 11:57:02 +00:00
tkcron "Use of DOWNLOADED_DISTFILE is deprecated. Use the shell variable 2013-04-06 12:03:59 +00:00
tkdesk Revbump after updating tcl/tk. 2014-01-11 14:42:00 +00:00
tload Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
tob Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
top Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
torsmo Hand in maintainership. 2013-04-13 07:55:01 +00:00
toshutils Patch out -m486, which was breaking the build. Not really tested as 2013-06-17 06:15:39 +00:00
tpb Update to 0.6.4 (released in 2005). Changes: 2013-06-01 12:18:23 +00:00
tphdisk Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
tree update patch commentary in tree 2013-08-25 14:29:52 +00:00
ts Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
ups-nut Bump PKGREVISION of all packages which create users, to pick up change of 2013-07-12 10:44:52 +00:00
ups-nut-cgi recursive bump from graphics/gd shlib major bump. 2013-09-04 12:31:24 +00:00
ups-nut-snmp Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
ups-nut-usb Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
usbutil Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
user_cygwin Rename the PKGNAME for the OPSYS-specific user packages to include the OPSYS, 2013-07-12 10:41:58 +00:00
user_darwin Rename the PKGNAME for the OPSYS-specific user packages to include the OPSYS, 2013-07-12 10:41:58 +00:00
user_interix Rename the PKGNAME for the OPSYS-specific user packages to include the OPSYS, 2013-07-12 10:41:58 +00:00
user_irix Rename the PKGNAME for the OPSYS-specific user packages to include the OPSYS, 2013-07-12 10:41:58 +00:00
vbetool Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
vcdimager Resolves: 2013-04-06 20:27:16 +00:00
vcdimager-devel Remove GNU ld options on Darwin too. 2013-12-21 11:15:08 +00:00
vidc-tools Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
vifm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
vip Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
virt-manager Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
virtinst Convert to distutils.mk. Mark as not for python-3.x. 2014-01-23 19:18:07 +00:00
vobcopy Enable large file support on NetBSD. 2014-02-02 20:20:50 +00:00
vxargs No need to have two variables for the same logic. 2014-01-25 10:45:15 +00:00
wbm-apache Fix PLIST for base package update. 2012-12-22 00:52:34 +00:00
wbm-at Fix PLIST for base package update. 2012-12-22 02:02:06 +00:00
wbm-bandwidth Fix PLIST for base package update. 2012-12-22 02:02:06 +00:00
wbm-bind8 Fix PLIST for base package update. 2012-12-22 00:52:34 +00:00
wbm-change-user Fix PLIST for base package update. 2012-12-22 02:02:06 +00:00
wbm-cluster-copy Fix PLIST for base package update. 2012-12-22 02:02:06 +00:00
wbm-cluster-cron Fix PLIST for base package update. 2012-12-22 02:02:06 +00:00
wbm-cluster-passwd Fix PLIST for base package update. 2012-12-22 03:47:33 +00:00
wbm-cluster-shell Fix PLIST for base package update. 2012-12-22 02:02:06 +00:00
wbm-cluster-useradmin Fix PLIST for base package update. 2012-12-22 02:02:06 +00:00
wbm-cluster-webmin Fix PLIST for base package update. 2012-12-22 02:02:06 +00:00
wbm-custom Fix PLIST for base package update. 2012-12-22 00:52:34 +00:00
wbm-cyrus-imapd Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
wbm-dhcpd Fix PLIST for base package update. 2012-12-22 00:52:34 +00:00
wbm-dovecot Fix PLIST for base package update. 2012-12-22 00:52:34 +00:00
wbm-fetchmail Fix PLIST for base package update. 2012-12-22 02:02:06 +00:00
wbm-file Fix PLIST for base package update. 2012-12-22 00:52:34 +00:00
wbm-htaccess-htpasswd Fix PLIST for base package update. 2012-12-22 02:02:06 +00:00
wbm-inetd Fix PLIST for base package update. 2012-12-22 02:11:37 +00:00
wbm-ipfilter Fix PLIST for base package update. 2012-12-22 01:49:16 +00:00
wbm-ldap-useradmin Fix PLIST for base package update. 2012-12-22 02:11:37 +00:00
wbm-lpadmin Fix PLIST for base package update. 2012-12-22 00:52:34 +00:00
wbm-mailboxes Fix PLIST for base package update. 2012-12-22 00:52:34 +00:00
wbm-mount Fix PLIST for base package update. 2012-12-22 00:52:34 +00:00
wbm-mysql Fix PLIST for base package update. 2012-12-22 00:52:34 +00:00
wbm-net Update PLIST after base package update. 2012-12-20 23:02:17 +00:00
wbm-openslp Fix PLIST for base package update. 2012-12-22 02:11:37 +00:00
wbm-passwd Fix PLIST for base package update. 2012-12-22 01:49:16 +00:00
wbm-postfix Fix PLIST for base package update. 2012-12-22 02:11:37 +00:00
wbm-postgresql Fix PLIST for base package update. 2012-12-22 00:52:34 +00:00
wbm-qmailadmin Fix PLIST for base package update. 2012-12-22 02:11:37 +00:00
wbm-quota Fix PLIST for base package update. 2012-12-22 02:11:37 +00:00
wbm-sendmail Fix PLIST for base package update. 2012-12-22 00:52:34 +00:00
wbm-shell Fix PLIST for base package update. 2012-12-22 02:11:37 +00:00
wbm-sshd Fix PLIST for base package update. 2012-12-22 00:52:34 +00:00
wbm-status Fix PLIST for base package update. 2012-12-22 02:11:37 +00:00
wbm-syslog Fix PLIST for base package update. 2012-12-22 00:52:34 +00:00
wbm-telnet Fix PLIST for base package update. 2012-12-22 02:11:37 +00:00
wbm-time Fix PLIST for base package update. 2012-12-22 01:39:29 +00:00
wbm-tunnel Fix PLIST for base package update. 2012-12-22 02:21:42 +00:00
wbm-useradmin Update PLIST after base package update. 2012-12-20 23:02:17 +00:00
wbm-virtual-server Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
webmin Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
whowatch Reset maintainer for resigned developers. 2013-12-23 11:57:02 +00:00
wipe Fix build on SunOS. Patch from Sebastian Wiedenroth. 2013-10-24 09:43:49 +00:00
wmcpuload Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
wmmemmon NetBSD/current needs explicit include of sys/vmmeter.h 2013-01-11 00:07:41 +00:00
wmSMPmon Requires sys/vmmeter.h on NetBSD/current 2013-01-11 23:31:14 +00:00
wpi-firmware Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
wpi-firmware2 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
wtail Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
xapply Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
xbatt "Definition of PKG_SKIP_REASON is deprecated. Use PKG_FAIL_REASON instead." 2013-04-06 04:07:24 +00:00
xbattbar Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
xc5k-firmware Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
xc3028l-firmware Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
xcdroast Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
xdu Use more void. 2013-01-11 23:32:38 +00:00
xe-guest-utilities "Each sed command should appear in an assignment of its own." 2013-04-06 21:07:31 +00:00
xenkernel3 Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
xenkernel20 Move LICENSE to correct place. 2014-01-25 09:16:52 +00:00
xenkernel33 Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
xenkernel41 Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
xenkernel42 Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
xenstoretools Add ipxe-git to DISTFILES (like in xentools41). It's not really used, but 2013-04-29 11:23:58 +00:00
xentools3 No need to have two variables for the same logic. 2014-01-25 10:45:15 +00:00
xentools3-hvm Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
xentools20 No need to have two variables for the same logic. 2014-01-25 10:45:15 +00:00
xentools33 No need to have two variables for the same logic. 2014-01-25 10:45:15 +00:00
xentools41 No need to have two variables for the same logic. 2014-01-25 10:45:15 +00:00
xentools42 No need to have two variables for the same logic. 2014-01-25 10:45:15 +00:00
xenvstat Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
xfce4-appfinder Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
xfce4-battery-plugin Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
xfce4-cpugraph-plugin Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
xfce4-diskperf-plugin Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
xfce4-fsguard-plugin Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
xfce4-genmon-plugin Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
xfce4-netload-plugin Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
xfce4-quicklauncher-plugin Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
xfce4-systemload-plugin Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
xfce4-thunar Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
xfce4-volman Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
xfce4-xarchiver Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
xfce4-xkb-plugin Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
xfe PR 48357 Germain Le Chapelain: don't crash if opendir fails. 2013-11-02 18:27:39 +00:00
xfm Pass rpath options with -Wl prefix. 2013-10-20 17:52:57 +00:00
xfsprogs * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
xhfs Fix build with TCL 8.6 2014-01-20 19:20:07 +00:00
xmbmon Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
xmeter Fix return type of function to match the (missing) return values. 2012-12-20 21:37:37 +00:00
xnc Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
xosview Pass rpath options with -Wl prefix. 2013-10-20 17:52:57 +00:00
xps Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
xuvmstat Use correct format strings for 64bit uvm structure layout. 2013-09-10 14:45:05 +00:00
zidrav Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
Makefile Remove packages that were either BROKEN for more than a year or 2013-12-31 17:08:08 +00:00