CVS: cvs.openbsd.org: ports

2023-01-17 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2023/01/18 00:42:21

Modified files:
lang/erlang/25 : Makefile 

Log message:
Needs EPOCH:
Found newer package erlang-21.2p2v0 in .../ports/plist/amd64



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2023/01/18 00:21:27

Modified files:
multimedia/mkvtoolnix: Makefile distinfo 
multimedia/mkvtoolnix/patches: patch-Rakefile 
   
patch-src_mkvtoolnix-gui_jobs_program_runner_cpp 
   
patch-src_mkvtoolnix-gui_jobs_program_runner_unix_program_runner_cpp 

Log message:
Update mkvtoolnix to 73.0.0



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2023/01/17 23:48:36

Modified files:
devel/jenkins/devel: Makefile distinfo 

Log message:
Update jenkins-devel to 2.387



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Kirill Bychkov
CVSROOT:/cvs
Module name:ports
Changes by: ki...@cvs.openbsd.org   2023/01/17 21:42:40

Modified files:
net/owncloudclient: Makefile distinfo 
Added files:
net/owncloudclient/patches: patch-src_libsync_CMakeLists_txt 

Log message:
Do not fetch extra files with cmake internals.
Unbreaks build without git being installed.
Breakage reported by ajacoutot@, hints from sthen@ and op@, thanks!



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Daniel Dickman
CVSROOT:/cvs
Module name:ports
Changes by: dan...@cvs.openbsd.org  2023/01/17 18:24:39

Modified files:
net/py-slixmpp : Makefile distinfo 
net/py-slixmpp/patches: patch-setup_py 
net/py-slixmpp/pkg: DESCR PLIST 

Log message:
update py-slixmpp to 1.8.3

This update includes a fix for CVE-2022-45197.

ok kmos@ (MAINTAINER)



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Daniel Jakots
CVSROOT:/cvs
Module name:ports
Changes by: d...@cvs.openbsd.org2023/01/17 16:54:50

Modified files:
databases/redis: Makefile distinfo 

Log message:
Update to redis-6.2.10



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Theo Buehler
CVSROOT:/cvs
Module name:ports
Changes by: t...@cvs.openbsd.org2023/01/17 16:00:44

Modified files:
x11/qt5/qtwebengine: Makefile 
Added files:
x11/qt5/qtwebengine/patches: 
 
patch-src_3rdparty_chromium_third_party_boringssl_linux-x86_64_crypto_chacha_chacha-x86_64_S
 
 
patch-src_3rdparty_chromium_third_party_boringssl_linux-x86_64_crypto_fipsmodule_aesni-gcm-x86_64_S
 
 
patch-src_3rdparty_chromium_third_party_boringssl_linux-x86_64_crypto_fipsmodule_aesni-x86_64_S
 
 
patch-src_3rdparty_chromium_third_party_boringssl_linux-x86_64_crypto_fipsmodule_ghash-ssse3-x86_64_S
 
 
patch-src_3rdparty_chromium_third_party_boringssl_linux-x86_64_crypto_fipsmodule_ghash-x86_64_S
 
 
patch-src_3rdparty_chromium_third_party_boringssl_linux-x86_64_crypto_fipsmodule_sha1-x86_64_S
 
 
patch-src_3rdparty_chromium_third_party_boringssl_linux-x86_64_crypto_fipsmodule_sha256-x86_64_S
 
 
patch-src_3rdparty_chromium_third_party_boringssl_linux-x86_64_crypto_fipsmodule_sha512-x86_64_S
 

Log message:
qtwebengine: fix amd64 assembly in embedded copy of BoringSSL.
Fixes the build on x-only amd64 (more fixes are needed for the
runtime).

"whatever it takes" rsadowski



Re: CVS: cvs.openbsd.org: ports

2023-01-17 Thread Omar Polo
On 2023/01/18 00:05:55 +0300, "Kirill Bychkov"  wrote:
> --- Makefile  15 Jan 2023 10:39:35 -  1.66
> +++ Makefile  17 Jan 2023 20:45:13 -
> @@ -1,8 +1,11 @@
>  COMMENT =owncloud sync client
> 
>  V =  3.0.0.9215
> +GRAPHAPI_V = 0.13.2
>  DISTNAME =   ownCloud-${V}
>  PKGNAME =owncloudclient-${V}
> +DISTFILES += ownCloud-${V}.tar.xz \
> + v${GRAPHAPI_V}.tar.gz:0

Haven't tested, but to get a nice name you can try with

DISTFILES +=graphapi-{}v${GRAPHAPI_V}.tar.xz:0

which will fetch v${GRAPHAPI_V}.tar.gz as graphapi-vX.Y.Z.tar.gz




Re: CVS: cvs.openbsd.org: ports

2023-01-17 Thread Kirill Bychkov
On Tue, January 17, 2023 21:47, Kirill Bychkov wrote:
> On Tue, January 17, 2023 13:26, Stuart Henderson wrote:
>> On 2023/01/17 08:48, Antoine Jacoutot wrote:
>>> CMake Error at /usr/local/share/cmake/Modules/ExternalProject.cmake:2790
>>> (message):
>>>   error: could not find git for clone of libregraphapisrc-populate
>>
>> Or alternatively if you do have git installed, but use PORTS_PRIVSEP
>> and the default "block .. user _pbuild" PF rules:
>>
[...]
>>
> Hi,
> Sorry for the breakage. I'm working on fix by using multiple
> distfiles and post-extract hooks.
>

The patch below is a bit ugly because of meaningless distname,
but it fixes build without git installed and without fetching extra
distfile using cmake internals.
I'm aware of the next ways to make it nicer:
 - host distfile myself with the correct name
 - create a new port for this extra dependency
Maybe some magic dance with DISTNAME I can't imagine? (like done with  GH_*
ports)

Index: Makefile
===
RCS file: /cvs/ports/net/owncloudclient/Makefile,v
retrieving revision 1.66
diff -u -p -u -p -r1.66 Makefile
--- Makefile15 Jan 2023 10:39:35 -  1.66
+++ Makefile17 Jan 2023 20:45:13 -
@@ -1,8 +1,11 @@
 COMMENT =  owncloud sync client

 V =3.0.0.9215
+GRAPHAPI_V =   0.13.2
 DISTNAME = ownCloud-${V}
 PKGNAME =  owncloudclient-${V}
+DISTFILES +=   ownCloud-${V}.tar.xz \
+   v${GRAPHAPI_V}.tar.gz:0

 SHARED_LIBS += owncloudsync8.0
 SHARED_LIBS += owncloud_csync  2.0
@@ -23,7 +26,7 @@ WANTLIB += ${COMPILER_LIBCXX} lib/inotif

 MASTER_SITES
=   
https://download.owncloud.com/desktop/ownCloud/stable/latest/source/ \

https://download.owncloud.com/desktop/ownCloud/stable/${V}/source/
-EXTRACT_SUFX = .tar.xz
+MASTER_SITES0 =

https://github.com/owncloud/libre-graph-api-cpp-qt-client/archive/refs/tags/

 MODULES =  devel/cmake x11/qt5

@@ -50,6 +53,9 @@ MODCMAKE_LDFLAGS =-L${LOCALBASE}/lib

 NO_TEST =  Yes

+post-extract:
+   cp -r ${WRKDIR}/libre-graph-api-cpp-qt-client-${GRAPHAPI_V} \
+   ${WRKDIST}/src/libsync/libregraphapisrc-src
 post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/ownCloud/
mv ${WRKINST}/etc/ownCloud ${PREFIX}/share/examples/
Index: distinfo
===
RCS file: /cvs/ports/net/owncloudclient/distinfo,v
retrieving revision 1.41
diff -u -p -u -p -r1.41 distinfo
--- distinfo15 Jan 2023 10:39:35 -  1.41
+++ distinfo17 Jan 2023 20:45:13 -
@@ -1,2 +1,4 @@
 SHA256 (ownCloud-3.0.0.9215.tar.xz) =
cORFiyMEEX1jKQJIW4eqFAkwIFoXcP18PZTn6Zi1y+U=
+SHA256 (v0.13.2.tar.gz) = ON0gpGaNz9honvyqppmj3C1jiHh99MciB5kgEwGXIAU=
 SIZE (ownCloud-3.0.0.9215.tar.xz) = 5676836
+SIZE (v0.13.2.tar.gz) = 79738
Index: patches/patch-src_libsync_CMakeLists_txt
===
RCS file: patches/patch-src_libsync_CMakeLists_txt
diff -N patches/patch-src_libsync_CMakeLists_txt
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-src_libsync_CMakeLists_txt17 Jan 2023 20:45:13 -
@@ -0,0 +1,17 @@
+Index: src/libsync/CMakeLists.txt
+--- src/libsync/CMakeLists.txt.orig
 src/libsync/CMakeLists.txt
+@@ -3,12 +3,7 @@ set(LibreGraphAPIVersion v0.13.2)
+ find_package(LibreGraphAPI QUIET)
+ if (NOT TARGET OpenAPI::LibreGraphAPI)
+ message(WARNING "Failed to find system OpenAPI::LibreGraphAPI: fetching
${LibreGraphAPIVersion}")
+-include(FetchContent)
+-FetchContent_Populate(LibreGraphAPISrc
+-QUIET
+-GIT_REPOSITORY
https://github.com/owncloud/libre-graph-api-cpp-qt-client.git
+-GIT_TAG ${LibreGraphAPIVersion})
+-add_subdirectory(${libregraphapisrc_SOURCE_DIR}/client
${libregraphapisrc_BINARY_DIR}/client EXCLUDE_FROM_ALL)
++add_subdirectory(libregraphapisrc-src/client libregraphapisrc-src/client
EXCLUDE_FROM_ALL)
+ endif()
+
+ set(libsync_SRCS



oc.diff
Description: Binary data


CVS: cvs.openbsd.org: ports

2023-01-17 Thread Mark Kettenis
CVSROOT:/cvs
Module name:ports
Changes by: kette...@cvs.openbsd.org2023/01/17 14:00:22

Modified files:
sysutils/firmware/apple-boot: Makefile 
sysutils/u-boot-asahi: Makefile 
Added files:
sysutils/u-boot-asahi/patches: patch-arch_arm_dts_t8103-j293_dts 
   patch-arch_arm_dts_t8103-j313_dts 

Log message:
Enable speakers on the M1 13" MacBook Pro and the M1 MacBook Air

ok tobhe@, sthen@



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Klemens Nanni
CVSROOT:/cvs
Module name:ports
Changes by: k...@cvs.openbsd.org2023/01/17 13:45:10

Modified files:
devel/git  : Makefile distinfo 

Log message:
Security update to 2.39.1

https://raw.githubusercontent.com/git/git/master/Documentation/RelNotes/2.30.7.txt



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2023/01/17 13:08:58

Modified files:
security/knockpy: Makefile distinfo 
security/knockpy/pkg: PLIST 

Log message:
Update knockpy to 6.0.0



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Matthieu Herrb
CVSROOT:/cvs
Module name:ports
Changes by: matth...@cvs.openbsd.org2023/01/17 13:03:49

Modified files:
mail/sendmail  : Makefile 
mail/sendmail/patches: patch-cf_m4_proto_m4 

Log message:
Add a patch to bump MaxHopCount to 50 to cope with modern smtp setups
with many relays. ok ajacoutot@ (maintainer)



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Peter Hessler
CVSROOT:/cvs
Module name:ports
Changes by: phess...@cvs.openbsd.org2023/01/17 12:58:45

Modified files:
editors/libreoffice/patches: patch-configure 

Log message:
fix the detection of openbsd aarch64



Re: CVS: cvs.openbsd.org: ports

2023-01-17 Thread Kirill Bychkov
On Tue, January 17, 2023 13:26, Stuart Henderson wrote:
> On 2023/01/17 08:48, Antoine Jacoutot wrote:
>> CMake Error at /usr/local/share/cmake/Modules/ExternalProject.cmake:2790
>> (message):
>>   error: could not find git for clone of libregraphapisrc-populate
>
> Or alternatively if you do have git installed, but use PORTS_PRIVSEP
> and the default "block .. user _pbuild" PF rules:
>
> -- Found Git: /usr/local/bin/git (found version "2.39.0")
> [1/9] Creating directories for 'libregraphapisrc-populate'
> [1/9] Performing download step (git clone) for 'libregraphapisrc-populate'
> Cloning into 'libregraphapisrc-src'...
> fatal: unable to access
> 'https://github.com/owncloud/libre-graph-api-cpp-qt-client.git/': Couldn't
> connect to server
> Cloning into 'libregraphapisrc-src'...
> fatal: unable to access
> 'https://github.com/owncloud/libre-graph-api-cpp-qt-client.git/': Couldn't
> connect to server
> Cloning into 'libregraphapisrc-src'...
> fatal: unable to access
> 'https://github.com/owncloud/libre-graph-api-cpp-qt-client.git/': Couldn't
> connect to server
> -- Had to git clone more than once: 3 times.
> CMake Error at
> libregraphapisrc-subbuild/libregraphapisrc-populate-prefix/tmp/libregraphapisrc-populate-gitclone.cmake:39
> (message):
>   Failed to clone repository:
>   'https://github.com/owncloud/libre-graph-api-cpp-qt-client.git'
>
>
Hi,
Sorry for the breakage. I'm working on fix by using multiple
distfiles and post-extract hooks.



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Robert Nagy
CVSROOT:/cvs
Module name:ports
Changes by: rob...@cvs.openbsd.org  2023/01/17 11:06:59

Modified files:
www/iridium: Makefile distinfo 
www/iridium/patches: patch-BUILD_gn patch-base_BUILD_gn 
 
patch-base_allocator_partition_allocator_page_allocator_internals_posix_h 
 
patch-base_allocator_partition_allocator_partition_address_space_cc 
 
patch-base_allocator_partition_allocator_partition_alloc_config_h 
 
patch-base_allocator_partition_allocator_partition_alloc_constants_h 
 
patch-base_allocator_partition_allocator_partition_root_cc 
 patch-base_files_file_util_unittest_cc 
 patch-base_process_memory_cc 
 patch-base_process_process_metrics_cc 
 patch-base_process_process_metrics_h 
 patch-base_system_sys_info_posix_cc 
 patch-base_test_launcher_test_launcher_cc 
 patch-base_threading_platform_thread_unittest_cc 
 patch-build_config_BUILDCONFIG_gn 
 patch-build_config_compiler_BUILD_gn 
 patch-build_gn_run_binary_py 
 patch-build_toolchain_gcc_toolchain_gni 
 patch-cc_BUILD_gn 
 patch-chrome_app_chrome_main_cc 
 patch-chrome_app_chrome_main_delegate_cc 
 patch-chrome_app_generated_resources_grd 
 patch-chrome_app_settings_strings_grdp 
 patch-chrome_browser_about_flags_cc 
 
patch-chrome_browser_background_background_mode_manager_cc 
 
patch-chrome_browser_chrome_browser_interface_binders_cc 
 patch-chrome_browser_chrome_browser_main_cc 
 
patch-chrome_browser_chrome_content_browser_client_cc 
 
patch-chrome_browser_chrome_content_browser_client_h 
 
patch-chrome_browser_download_chrome_download_manager_delegate_cc 
 
patch-chrome_browser_download_download_file_picker_cc 
 
patch-chrome_browser_download_download_item_model_cc 
 
patch-chrome_browser_enterprise_connectors_device_trust_signals_signals_service_factory_cc
 
 
patch-chrome_browser_enterprise_connectors_reporting_browser_crash_event_router_h
 
 patch-chrome_browser_extensions_BUILD_gn 
 
patch-chrome_browser_extensions_api_enterprise_reporting_private_enterprise_reporting_private_api_cc
 
 
patch-chrome_browser_extensions_api_passwords_private_passwords_private_delegate_impl_cc
 
 
patch-chrome_browser_extensions_external_provider_impl_cc 
 
patch-chrome_browser_file_system_access_chrome_file_system_access_permission_context_cc
 
 patch-chrome_browser_flag_descriptions_cc 
 patch-chrome_browser_flag_descriptions_h 
 
patch-chrome_browser_headless_headless_mode_util_cc 
 patch-chrome_browser_media_audio_service_util_cc 
 
patch-chrome_browser_metrics_chrome_metrics_service_client_cc 
 
patch-chrome_browser_net_system_network_context_manager_cc 
 
patch-chrome_browser_policy_configuration_policy_handler_list_factory_cc 
 patch-chrome_browser_prefs_browser_prefs_cc 
 
patch-chrome_browser_printing_print_backend_service_manager_cc 
 patch-chrome_browser_printing_print_job_worker_cc 
 
patch-chrome_browser_profiles_chrome_browser_main_extra_parts_profiles_cc 
 patch-chrome_browser_profiles_profile_impl_cc 
 
patch-chrome_browser_resources_settings_appearance_page_appearance_browser_proxy_ts
 
 
patch-chrome_browser_resources_signin_sync_confirmation_sync_confirmation_app_html
 
 
patch-chrome_browser_safe_browsing_cloud_content_scanning_binary_upload_service_cc
 
 
patch-chrome_browser_task_manager_sampling_task_group_cc 
 patch-chrome_browser_ui_browser_view_prefs_cc 
 patch-chrome_browser_ui_sad_tab_cc 
 
patch-chrome_browser_ui_startup_startup_browser_creator_cc 

CVS: cvs.openbsd.org: ports

2023-01-17 Thread Peter Hessler
CVSROOT:/cvs
Module name:ports
Changes by: phess...@cvs.openbsd.org2023/01/17 09:49:42

Modified files:
devel/xtensa-elf: Makefile.inc 
devel/xtensa-elf/binutils: Makefile 
devel/xtensa-elf/gcc: Makefile 
devel/xtensa-esp32-elf: Makefile.inc 
devel/xtensa-esp32-elf/binutils: Makefile 
devel/xtensa-esp32-elf/gcc: Makefile 
devel/xtensa-esp32-elf/gcc-bootstrap: Makefile 
devel/xtensa-esp32-elf/gdb: Makefile 
devel/xtensa-esp32-elf/newlib: Makefile 
devel/xtensa-esp32s2-elf: Makefile.inc 
devel/xtensa-esp32s2-elf/binutils: Makefile 
devel/xtensa-esp32s2-elf/gcc: Makefile 
devel/xtensa-esp32s2-elf/gcc-bootstrap: Makefile 
devel/xtensa-esp32s2-elf/gdb: Makefile 
devel/xtensa-esp32s2-elf/newlib: Makefile 
devel/xtensa-esp32s3-elf: Makefile.inc 
devel/xtensa-esp32s3-elf/binutils: Makefile 
devel/xtensa-esp32s3-elf/gcc: Makefile 
devel/xtensa-esp32s3-elf/gcc-bootstrap: Makefile 
devel/xtensa-esp32s3-elf/gdb: Makefile 
devel/xtensa-esp32s3-elf/newlib: Makefile 
devel/xtensa-lx106-elf: Makefile.inc 
devel/xtensa-lx106-elf/binutils: Makefile 
devel/xtensa-lx106-elf/gcc: Makefile 
devel/xtensa-lx106-elf/gcc-bootstrap: Makefile 
devel/xtensa-lx106-elf/lx106-hal: Makefile 
devel/xtensa-lx106-elf/newlib: Makefile 

Log message:
sprinkle some USE_NOEXECONLY to unbreak these gcc derivatives



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Theo Buehler
CVSROOT:/cvs
Module name:ports
Changes by: t...@cvs.openbsd.org2023/01/17 09:16:14

Modified files:
mail/postfix   : Makefile.inc 
mail/postfix/snapshot: Makefile 
mail/postfix/stable: Makefile 

Log message:
postfix: no need for USE_NOEXECONLY on riscv64.



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Theo Buehler
CVSROOT:/cvs
Module name:ports
Changes by: t...@cvs.openbsd.org2023/01/17 09:15:33

Modified files:
security/sslscan: Makefile 

Log message:
sslscan: no need for USE_NOEXECONLY on riscv64.



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Theo Buehler
CVSROOT:/cvs
Module name:ports
Changes by: t...@cvs.openbsd.org2023/01/17 09:14:42

Modified files:
security/openssl/1.1: Makefile 
security/openssl/3.0: Makefile 

Log message:
openssl: no need for USE_NOEXECONLY on riscv64: there's no perlasm.

pointed out by kettenis



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Stefan Sperling
CVSROOT:/cvs
Module name:ports
Changes by: s...@cvs.openbsd.org2023/01/17 09:01:28

Modified files:
devel/quirks   : Makefile 
devel/quirks/files: Quirks.pm 

Log message:
Add a quirks entry to handle gotweb removal.
ok kn@ op@



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Stefan Sperling
CVSROOT:/cvs
Module name:ports
Changes by: s...@cvs.openbsd.org2023/01/17 08:59:42

Modified files:
devel/got  : Makefile distinfo 
devel/got/pkg  : gotwebd.rc 
Added files:
devel/got/pkg  : DESCR-server PLIST-server gotd.rc 
Removed files:
devel/got/pkg  : DESCR-web PLIST-web 

Log message:
update to got 0.80

There are some port-specific changes:
- gotd is now packaged for wider testing
- gotweb has been removed and is superseded by gotwebd
- set rc_reload=NO in gotwebd.rc
- fix wantlib

See https://gameoftrees.org/releases/CHANGES for lots of changelog.

ok kn@ op@



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Stefan Sperling
CVSROOT:/cvs
Module name:ports
Changes by: s...@cvs.openbsd.org2023/01/17 08:52:14

Modified files:
infrastructure/db: user.list 

Log message:
reserve a UID/GID for _gotd
helpful hints from landry, tweak + ok kn



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2023/01/17 07:37:31

Modified files:
www/firefox-esr: Tag: OPENBSD_7_2 Makefile distinfo 

Log message:
www/firefox-esr: MFC update to 102.7.0.

see https://www.mozilla.org/en-US/firefox/102.7.0/releasenotes/
fixes https://www.mozilla.org/en-US/security/advisories/mfsa2023-02/



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2023/01/17 07:37:05

Modified files:
www/mozilla-firefox: Tag: OPENBSD_7_2 Makefile distinfo 
www/mozilla-firefox/patches: Tag: OPENBSD_7_2 
 patch-build_moz_configure_nss_configure 
 
patch-security_manager_pki_resources_content_exceptionDialog_js 
 
patch-toolkit_components_downloads_DownloadIntegration_sys_mjs 
 patch-toolkit_xre_glxtest_cpp 

Log message:
www/mozilla-firefox: MFC update to 109.0.

see https://www.mozilla.org/en-US/firefox/109.0/releasenotes/
fixes https://www.mozilla.org/en-US/security/advisories/mfsa2023-01/



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2023/01/17 07:36:36

Modified files:
www/mozilla: Tag: OPENBSD_7_2 mozilla.port.mk 

Log message:
www/mozilla: MFC 1.153: switch to selfhosted profdata archives for 
www/mozilla-firefox

upstream switched to clang 15.0.5 in the 109 cycle, and our llvm 13
doesn't know how to handle profdata files generated with that version.

profdata converted for llvm 13 on a debian VM.. thanks robert@ for the
hints.



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2023/01/17 07:34:48

Modified files:
www/firefox-esr: Makefile distinfo 
www/firefox-esr-i18n: Makefile.inc distinfo 

Log message:
www/firefox-esr: update to 102.7.0.

see https://www.mozilla.org/en-US/firefox/102.7.0/releasenotes/
fixes https://www.mozilla.org/en-US/security/advisories/mfsa2023-02/



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2023/01/17 07:33:28

Modified files:
www/mozilla-firefox: Makefile distinfo 
www/mozilla-firefox/patches: 
 
patch-security_manager_pki_resources_content_exceptionDialog_js 
 
patch-toolkit_components_downloads_DownloadIntegration_sys_mjs 
 patch-toolkit_xre_glxtest_cpp 
www/firefox-i18n: Makefile.inc distinfo 

Log message:
www/mozilla-firefox: update to 109.0.

see https://www.mozilla.org/en-US/firefox/109.0/releasenotes/
fixes https://www.mozilla.org/en-US/security/advisories/mfsa2023-01/



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2023/01/17 07:32:47

Modified files:
www/mozilla: mozilla.port.mk 

Log message:
www/mozilla: switch to selfhosted profdata archives for www/mozilla-firefox

upstream switched to clang 15.0.5 in the 109 cycle, and our llvm 13
doesn't know how to handle profdata files generated with that version.

profdata converted for llvm 13 on a debian VM.. thanks robert@ for the
hints. Should be dropped when we switch to llvm 15.



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2023/01/17 03:34:03

Modified files:
devel/spidermonkey102: Makefile distinfo 

Log message:
Update to spidermonkey102-102.7.0.



Re: CVS: cvs.openbsd.org: ports

2023-01-17 Thread Stuart Henderson
On 2023/01/17 08:48, Antoine Jacoutot wrote:
> CMake Error at /usr/local/share/cmake/Modules/ExternalProject.cmake:2790 
> (message):
>   error: could not find git for clone of libregraphapisrc-populate

Or alternatively if you do have git installed, but use PORTS_PRIVSEP
and the default "block .. user _pbuild" PF rules:

-- Found Git: /usr/local/bin/git (found version "2.39.0") 
[1/9] Creating directories for 'libregraphapisrc-populate'
[1/9] Performing download step (git clone) for 'libregraphapisrc-populate'
Cloning into 'libregraphapisrc-src'...
fatal: unable to access 
'https://github.com/owncloud/libre-graph-api-cpp-qt-client.git/': Couldn't 
connect to server
Cloning into 'libregraphapisrc-src'...
fatal: unable to access 
'https://github.com/owncloud/libre-graph-api-cpp-qt-client.git/': Couldn't 
connect to server
Cloning into 'libregraphapisrc-src'...
fatal: unable to access 
'https://github.com/owncloud/libre-graph-api-cpp-qt-client.git/': Couldn't 
connect to server
-- Had to git clone more than once: 3 times.
CMake Error at 
libregraphapisrc-subbuild/libregraphapisrc-populate-prefix/tmp/libregraphapisrc-populate-gitclone.cmake:39
 (message):
  Failed to clone repository:
  'https://github.com/owncloud/libre-graph-api-cpp-qt-client.git'



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2023/01/17 03:13:19

Modified files:
sysutils/p5-Sys-Virt: Makefile distinfo 

Log message:
Update to p5-Sys-Virt-9.0.0.



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2023/01/17 03:13:04

Modified files:
sysutils/libvirt-python: Makefile distinfo 

Log message:
Update to py3-libvirt-9.0.0.



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2023/01/17 03:12:52

Modified files:
sysutils/libvirt: Makefile distinfo 
sysutils/libvirt/patches: patch-meson_build 
sysutils/libvirt/pkg: PLIST 

Log message:
Update to libvirt-9.0.0.



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2023/01/17 02:43:50

Modified files:
devel/py-build : Makefile distinfo 
devel/py-build/pkg: PLIST 

Log message:
Update to py3-build-0.10.0, which has now moved to flit.core instead
of setuptools (i.e. simpler bootstrap chain).

Use of py-pep517 in py-build has been replaced by py-pyproject_hooks.



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2023/01/17 02:41:22

Modified files:
devel  : Makefile 

Log message:
+py-pyproject_hooks



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2023/01/17 02:40:55

Log message:
import ports/devel/py-pyproject_hooks, ok/tweak tb@

This is a low-level library for calling build-backends in
pyproject.toml-based projects. It provides the basic functionality
to help write tooling that generates distribution files from Python
projects.

If you want a tool that builds Python packages, you'll want to use
https://github.com/pypa/build instead. This is an underlying piece for
pip, build and other "build frontends" use to call "build backends"
within them.

Status:

Vendor Tag: sthen
Release Tags:   sthen_20230117

N ports/devel/py-pyproject_hooks/Makefile
N ports/devel/py-pyproject_hooks/distinfo
N ports/devel/py-pyproject_hooks/pkg/DESCR
N ports/devel/py-pyproject_hooks/pkg/PLIST

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2023-01-17 Thread Kirill Bychkov
CVSROOT:/cvs
Module name:ports
Changes by: ki...@cvs.openbsd.org   2023/01/17 02:40:26

Modified files:
games/wesnoth  : Makefile distinfo 
games/wesnoth/pkg: PLIST 

Log message:
update to wesnoth-1.16.7