Commit graph

10818 commits

Author SHA1 Message Date
khorben
5dc272fad5 intel-microcode-netbsd: fix for the RC script
intel-microcode-netbsd does not contain a daemon, it simply calls
cpuctl(8) to upload the microcode to the CPU. However the RC script only
handles the starting sequence. This change avoids an irrelevant message
upon reboot, and avoids a meaningless error condition.

ok Riastradh@
2020-07-20 21:43:19 +00:00
khorben
bba9468ff5 intel-microcode-netbsd: appease pkglint(1)
No functional change.
2020-07-20 21:18:17 +00:00
wiz
2e06e0a051 dbus: update to 1.12.20.
dbus 1.12.20 (2020-07-02)
=========================

The “temporary nemesis” release.

Maybe security fixes:

• On Unix, avoid a use-after-free if two usernames have the same
  numeric uid. In older versions this could lead to a crash (denial of
  service) or other undefined behaviour, possibly including incorrect
  authorization decisions if <policy group=...> is used.
  Like Unix filesystems, D-Bus' model of identity cannot distinguish
  between users of different names with the same numeric uid, so this
  configuration is not advisable on systems where D-Bus will be used.
  Thanks to Daniel Onaca.
  (dbus#305, dbus!166; Simon McVittie)

Other fixes:

• On Solaris and its derivatives, if a cmsg header is truncated, ensure
  that we do not overrun the buffer used for fd-passing, even if the
  kernel tells us to.
  (dbus#304, dbus!165; Andy Fiddaman)
2020-07-17 23:38:56 +00:00
bsiegert
20b9b74c5f Revbump all Go packages after go114 update. 2020-07-17 18:04:11 +00:00
adam
aa681c21b6 py-psutil: updated to 5.7.2
5.7.2
=====
Bug fixes
- wheels for 2.7 were inadvertently deleted.

5.7.1
=====
Enhancements
- 1729_: parallel tests on UNIX (make test-parallel). They're twice as fast!
- 1741_: "make build/install" is now run in parallel and it's about 15% faster
  on UNIX.
- 1747_: `Process.wait()` on POSIX returns an enum, showing the negative signal
  which was used to terminate the process::
    >>> import psutil
    >>> p = psutil.Process(9891)
    >>> p.terminate()
    >>> p.wait()
    <Negsignal.SIGTERM: -15>
- 1747_: `Process.wait()` return value is cached so that the exit code can be
  retrieved on then next call.
- 1747_: Process provides more info about the process on str() and repr()
  (status and exit code)::
    >>> proc
    psutil.Process(pid=12739, name='python3', status='terminated',
                   exitcode=<Negsigs.SIGTERM: -15>, started='15:08:20')
- 1757_: memory leak tests are now stable.
- 1768_: [Windows] added support for Windows Nano Server.

Bug fixes
- 1726_: [Linux] cpu_freq() parsing should use spaces instead of tabs on ia64.
- 1760_: [Linux] Process.rlimit() does not handle long long type properly.
- 1766_: [macOS] NoSuchProcess may be raised instead of ZombieProcess.
- 1781_: fix signature of callback function for getloadavg().
2020-07-16 11:16:21 +00:00
bouyer
964088b322 Add patches for Xen Security Advisories XSA317, XSA319, XSA320, XSA321
and XSA328
Bump PKGREVISION
2020-07-16 09:57:17 +00:00
bouyer
a944774ede Add patches for Xen Security Advisories XSA317, XSA319, XSA320, XSA321
and XSA328.
Bump PKGREVISION
2020-07-16 09:56:47 +00:00
markd
6814e6347b bacula: explictly disable docker plugin 2020-07-16 01:51:41 +00:00
sjmulder
e7f5c30f5d sysutils/nnn: Update to 3.3
Changes:
 - subdir mounts for remote and archive mounts
 - remove mount point on successful unmount of remote/archive
 - show error and prompt user if cp/mv/rm operation fails
 - support absolute/relative paths in cp/mv as
 - mark current path automatically on archive/remote mount
 - mark current path automatically on target file visit in find and
   list mode
 - option -C to place HW cursor on hovered for screen readers and
   braille displays
 - option -u to use selection (if available) and skip current/sel prompt
 - key Alt+Esc to clear filter prompt and redraw
 - support Esc to cancel remove operation
 - gpge & gpgd: encrypt and decrypt with GPG
 - blknew: create new files and directories in bulk
 - preview-tui:
   - unified to support tmux/kitty/xterm/$TERMINAL
   - auto-determine split orientation based on terminal height and width
   - provision to use scope.sh and pistol
   - various other improvements
 - upload: send to Firefox Send if ffsend is found
 - hexview: add hx as alternative hex viewer
 - nuke and imgview: add imv as alternative image viewer
 - add find (with fd) and grep (with rg) examples in plugins doc
 - key Esc or left click to resend hovered file path to NNN_FIFO
 - show + instead of s in status bar on selection
 - F5 removed (misfit for toggle hidden), ^S removed (often masked,
   redundant)
 - handle abnormal program termination and remove NNN_PIPE and/or
   NNN_FIFO
 - clear selection after successful batch rename, link creation
 - make option O_CTX8 for 8 contexts (NOT backward compatible with 4
   contexts)
 - fix issue with child window resize (see #656)
 - fix issue with NNNLVL on macOS (see #639)
 - fix issue with restoring session with du/au enabled

Package changes:
 - New 8 context mode is enabled
 - Patches have been merged
2020-07-14 12:51:01 +00:00
wiz
88a820b106 xentools411: add buildlink3.mk
From Edgar Fuß in PR 55479
2020-07-13 21:49:37 +00:00
wiz
c664543482 ups-nut: add buildlink3.mk
From Edgar Fuß in PR 55479.
2020-07-13 18:50:29 +00:00
wiz
affc6584db ups-nut: install development files
From Edgar Fuß in PR 55479.

Some pkglint cleanup while here.

Bump PKGREVISION.
2020-07-13 18:50:05 +00:00
wiz
b779a9b78a libvirt: add buildlink3.mk
From Edgar Fuß in PR 55479
2020-07-13 18:41:53 +00:00
bsiegert
2c68e0dcad xosview: do not exit when cpufreq sysctl fails.
I don't know why xosview needs cpu frequency at all when it doesn't display
it. But:

- different architectures use different sysctl names (that's why it's called
  machdep)
- what even is the meaning of the "cpu frequency" when you can set frequency
  per core
2020-07-07 19:13:18 +00:00
schmonz
0713c89a27 Update to 2020.05.04. From the changelog:
- The setstate command from idtools is now included in fdtools.
- Compatibility with the latest skalibs.
- Silencing modern compiler warnings.
2020-07-07 10:31:31 +00:00
fcambus
e14e6c6262 fdupes: update to 2.1.1.
ChangeLog:

Changes from 2.1.0 to 2.1.1:

 - Break mtime ties using ctime when sorting by time.
 - Reduce number of calls to stat(), for speed.
 - Clear last command status when new command is entered.

Changes from 2.0.0 to 2.1.0:

 - Rename cs command ("clear all selections") from cs to csel.
 - Rename igs command ("invert selections") from igs to isel.
 - Add "prune" command as synonym for DELETE key.
 - Clear selections after deleting files via prune/DELETE.
 - Fix dependency issues when fdupes is configured to not use ncurses.
2020-07-06 15:38:02 +00:00
he
919e2199ea Add a patch to the BIND stats to pick up query RTT times.
Bump PKGREVISION.
2020-07-05 13:57:32 +00:00
adam
212747bbd2 py-watchdog: updated to 0.10.3
0.10.3
- Ensure ``ObservedWatch.path`` is a string
- [inotify] Allow to monitor single file
- [inotify] Prevent raising an exception when a file in a monitored folder has no permissions
2020-07-01 14:39:11 +00:00
adam
7871a802ee py-eliot, py-eliot17: added versions 1.12.0 and 1.7.0 (Python 2.7)
eliot is a Python logging system that outputs causal chains of actions: actions
can spawn other actions, and eventually they either succeed or fail. The
resulting logs tell you the story of what your software did: what happened, and
what caused it.
2020-07-01 08:52:38 +00:00
thorpej
24e9f2cbc1 Add a u-boot package for the Firefly / Libre Computer ROC-RK3328-CC. 2020-06-30 14:40:05 +00:00
thorpej
894795e257 - Re-factor the arm-trusted-firmware packages into common definitions and
build infrastructure.
- Update arm-trusted-firmware to v2.3.
2020-06-30 14:33:14 +00:00
gutteridge
5618037244 sysutils/Makefile: fix minor indentation issues 2020-06-26 23:27:24 +00:00
schmonz
c8c4529c1b Assign non-default SUBST_FILES.djberrno with =, not += (because it
doesn't actually append).
2020-06-26 16:37:22 +00:00
schmonz
3948870bde Retire 'djbware-errno-hack' and associated options.mk cleverness.
Instead:

1. Package makefiles including their own options.mk
2. Packages say "SUBST_CLASSES+=djberrno" to get the hack, if needed
3. Packages adjust SUBST_FILES.djberrno, if needed

Should fix bulk build failures due to multiple inclusions of options.mk
and/or incorrect definitions of DJB_ERRNO_HACK.

Approved during the freeze by wiz@.
2020-06-25 05:42:36 +00:00
sjmulder
89b63b2da1 sysutils/nnn: Fix build on NetBSD 9/arm64
GCC doesn't expand alloca() to __builtin_alloca() in standards mode
(-std=...) so explicitly define it as such to fix breakage on platforms
that don't seem to supply it otherwise, like NetBSD 9 on arm64.

Bump PKGREVISION.
2020-06-23 23:32:30 +00:00
manu
e44e558385 Fix loading of LZ4 compressed kernels 2020-06-23 13:22:30 +00:00
mef
15884cc40b (sysutils/munin-node) Adjust by the info of joyent el7 bulkbuild
https://us-east.manta.joyent.com/pkgsrc/public/reports/Linux/el7/trunk/x86_64/20200621.2243/munin-node-2.0.56/install.log
2020-06-22 10:43:39 +00:00
thorpej
3a6f89451c Build u-boot-libretech-all-h3-cc-h2-plus, u-boot-libretech-all-h3-cc-h3,
and u-boot-libretech-all-h3-cc-h5.
2020-06-21 19:44:29 +00:00
thorpej
821e5a544a U-boot package for the Libre Computer Board ALL-H3-CC H5. 2020-06-21 19:43:48 +00:00
thorpej
9a140f4e99 U-boot package for the Libre Computer Board ALL-H3-CC H3. 2020-06-21 19:43:30 +00:00
thorpej
f30fdcaa9a U-boot package for the Libre Computer Board ALL-H3-CC H2+. 2020-06-21 19:43:02 +00:00
thorpej
b621489116 Add several missing u-boot-* package to the meta package. 2020-06-21 18:28:16 +00:00
thorpej
1332d271c9 Build u-boot-zynq-zybo. 2020-06-21 16:48:08 +00:00
thorpej
44a1c6a010 U-boot package for the Digilent Zybo development board. 2020-06-21 16:47:59 +00:00
thorpej
550e0fab47 Build u-boot-a20-olinuxino-micro. 2020-06-21 16:21:44 +00:00
thorpej
1706f12166 U-boot package for the Olimex A20-OLinuXino-MICRO. 2020-06-21 16:21:05 +00:00
taca
8f4f7a11d6 sysutils/ruby-childprocess: revert udpate to 4.0.0
Revert update to 4.0.0.  Changes are only related to Windows and
selenium-webdriver gem (ruby-selenium-webdriver) require <4.0 version.
2020-06-21 15:40:22 +00:00
taca
b2a2fdef7a sysutils/ruby-childprocess: update to 4.0.0
Update ruby-childprocess to 4.0.0.


### Version 4.0.0 / 2020-06-18

* #167: Fix detach behavior on Windows.
2020-06-21 14:28:49 +00:00
mef
df023ec2d2 (sysutils/munin-node) Fix PLIST for NetBSD(9.0) 2020-06-21 10:21:00 +00:00
wiz
2947bd8c51 u-boot: make previous more agnostic to python-3.x version 2020-06-21 10:06:53 +00:00
thorpej
708bb84e5a Depend on u-boot-pandaboard. 2020-06-21 03:31:13 +00:00
thorpej
53c5776c2b Build u-boot-pandaboard. 2020-06-21 03:29:15 +00:00
thorpej
f66e7395f3 U-boot package for the OMAP4-based PandaBoard. 2020-06-21 03:27:58 +00:00
thorpej
b7fb8b74e3 Build u-boot-jetson-nano. 2020-06-20 22:29:59 +00:00
thorpej
7e2884fe5f U-boot package for the NVIDIA Jetson Nano. 2020-06-20 22:29:12 +00:00
thorpej
efab764643 Newer versions of U-boot that use the pylibfdt module don't build with
Python 2 and Swig 1.  Add some .mk file gyrations to auto-select the
correct tools for u-boot-2020.* and later.
2020-06-20 22:26:15 +00:00
thorpej
bbfbc2d16f Build u-boot-ci20. 2020-06-20 17:47:18 +00:00
thorpej
2dd5d401a4 U-boot package for the MIPS Creator CI20. 2020-06-20 17:46:28 +00:00
thorpej
4a472bfeae Update to u-boot-2020.04. 2020-06-20 17:42:34 +00:00
thorpej
c1ab7f72a1 Set the bootm_size, kernel_addr_r, fdt_addr_r, scriptaddr, pxefile_addr_r,
ramdisk_addr_r, and fdtfile environment varibles.
2020-06-20 17:19:37 +00:00