CVS: cvs.openbsd.org: ports

2020-07-19 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2020/07/19 23:53:41

Modified files:
net/fastnetmon : Makefile 
net/fastnetmon/patches: patch-src_fast_library_cpp 
Removed files:
net/fastnetmon/patches: 

patch-src_afpacket_plugin_afpacket_collector_cpp 
patch-src_fast_library_h 

Log message:
rewrite using if_nametoindex(3) instead of the unsupported SIOCGIFINDEX



CVS: cvs.openbsd.org: ports

2020-07-19 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2020/07/19 23:51:07

Modified files:
devel/nasm : Makefile distinfo 

Log message:
update to nasm-2.15.03

tested in a bulk by aja@, thanks



CVS: cvs.openbsd.org: ports

2020-07-19 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2020/07/19 22:59:18

Modified files:
fonts/font-awesome: Makefile distinfo 

Log message:
Update font-awesome to 5.14.0



CVS: cvs.openbsd.org: ports

2020-07-19 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2020/07/19 22:51:38

Modified files:
graphics/digikam: Makefile distinfo 
graphics/digikam/pkg: PLIST 
Removed files:
graphics/digikam/patches: 
  
patch-core_libs_facesengine_detection_opencvfacedetector_cpp 
  
patch-core_libs_facesengine_recognition_dlib-dnn_dnnface_dnn_base_cv_image_h 
  
patch-core_tests_webservices_o2_CMakeLists_txt 

Log message:
Update digikam to 7.0.0



CVS: cvs.openbsd.org: ports

2020-07-19 Thread Brian Callahan
CVSROOT:/cvs
Module name:ports
Changes by: bcal...@cvs.openbsd.org 2020/07/19 15:05:46

Modified files:
sysutils/diffoscope: Makefile distinfo 

Log message:
Update to diffoscope-152



CVS: cvs.openbsd.org: ports

2020-07-19 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2020/07/19 13:53:11

Modified files:
astro/kstars   : Makefile distinfo 
astro/kstars/pkg: PLIST 

Log message:
Update kstars to 3.4.3



CVS: cvs.openbsd.org: ports

2020-07-19 Thread Frederic Cambus
CVSROOT:/cvs
Module name:ports
Changes by: fcam...@cvs.openbsd.org 2020/07/19 13:18:33

Modified files:
textproc/jo: Makefile distinfo 
textproc/jo/pkg: PLIST 

Log message:
Update jo to 1.4.



CVS: cvs.openbsd.org: ports

2020-07-19 Thread Pascal Stumpf
CVSROOT:/cvs
Module name:ports
Changes by: pas...@cvs.openbsd.org  2020/07/19 11:01:56

Modified files:
net/tor: Makefile distinfo 

Log message:
Update to Tor 0.4.3.6.

Minor bugfixes, and a DoS which does NOT affect us.



CVS: cvs.openbsd.org: ports

2020-07-19 Thread Thomas Frohwein
CVSROOT:/cvs
Module name:ports
Changes by: t...@cvs.openbsd.org2020/07/19 07:02:38

Modified files:
games/godot: Makefile distinfo 
games/godot/patches: patch-core_io_SCsub 
 patch-core_io_compression_cpp 
 patch-core_project_settings_cpp 
 patch-core_safe_refcount_h 
 patch-drivers_unix_os_unix_cpp 
 patch-main_main_cpp 
 patch-platform_x11_detect_py 
 patch-platform_x11_os_x11_cpp 
Added files:
games/godot/patches: patch-platform_uwp_export_export_cpp 
 patch-thirdparty_minizip_unzip_c 
 patch-thirdparty_minizip_zip_c 
Removed files:
games/godot/patches: patch-servers_audio_server_cpp 
 patch-servers_visual_shader_language_cpp 
 patch-thirdparty_thekla_atlas_nvcore_nvcore_h 

Log message:
update to Godot 3.2.2, by Omar Polo - thanks!
some cleanup of patch comments by me



CVS: cvs.openbsd.org: ports

2020-07-19 Thread Thomas Frohwein
CVSROOT:/cvs
Module name:ports
Changes by: t...@cvs.openbsd.org2020/07/19 06:57:17

Modified files:
games/depotdownloader: Makefile distinfo 

Log message:
update to depotdownloader 2.3.6
this fixes downloading of the depots in some "bundles", as tested with
"SEGA Mega Drive & Genesis Classics" that now works as intended



CVS: cvs.openbsd.org: ports

2020-07-19 Thread Kirill Bychkov
CVSROOT:/cvs
Module name:ports
Changes by: ki...@cvs.openbsd.org   2020/07/19 05:04:36

Modified files:
net/munin  : Makefile distinfo 

Log message:
update to munin-2.0.64



CVS: cvs.openbsd.org: ports

2020-07-19 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2020/07/19 03:03:05

Modified files:
textproc/libxml: Makefile 
Added files:
textproc/libxml/patches: patch-elfgcchack_h patch-libxml_h 

Log message:
libxml2 has an internal mechanism to use strong aliases to make internal calls
to public interfaces of the library get resolved directly, rather than go
through the plt, when libxml is build as a shared library.

This is similar to what is done in libc and a few other libraries.

This logic is made conditional and currently only enabled under linux when
building with a compiler advertizing itself as gcc >= 3.3..

By enabling it on OpenBSD, the number of relocations in libxml2.so.16.1 (as
computed from objdump -R /usr/local/lib/libxml2.so.16.1 | wc -l) decreases from
4350 (4357 lines of output) to 3484 (3491 lines of output).

from Miod, thanks++

survived a bulk
runtime tested with a full blown GNOME Desktop, Libreoffice, Chromium...
ok jasper@