*/*: sync with upstream

Taken from: FreeBSD
This commit is contained in:
Franco Fichtner 2024-01-04 10:22:49 +01:00
parent 06d7cca6fb
commit 96129d8c45
434 changed files with 21277 additions and 15625 deletions

View File

@ -78,6 +78,7 @@
SUBDIR += pal
SUBDIR += phd2
SUBDIR += phoon
SUBDIR += pngphoon
SUBDIR += pp3
SUBDIR += py-astlib
SUBDIR += py-astral

24
astro/pngphoon/Makefile Normal file
View File

@ -0,0 +1,24 @@
PORTNAME= pngphoon
DISTVERSION= 1.3
CATEGORIES= astro
MASTER_SITES= https://svolli.de/software/pngphoon/
COMMENT= PNG Phase of Moon
MAINTAINER= fuz@FreeBSD.org
WWW= https://svolli.de/software/pngphoon/
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libpng.so:graphics/png
USES= gmake localbase:ldflags tar:bz2
MAKE_ARGS= CC=${CC} CFLAGS="${CFLAGS}"
PLIST_FILES= bin/pngphoon
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/pngphoon ${STAGEDIR}${PREFIX}/bin/pngphoon
.include <bsd.port.mk>

3
astro/pngphoon/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1703936409
SHA256 (pngphoon-1.3.tar.bz2) = 86bd37d37d23da12aa38b239fa0b197d7a5052c6b96b82361716b54e152d3b23
SIZE (pngphoon-1.3.tar.bz2) = 67264

View File

@ -0,0 +1,62 @@
--- tws.c.orig 2014-09-11 21:54:21 UTC
+++ tws.c
@@ -30,16 +30,15 @@
#include <sys/types.h>
#include <time.h>
#include <stdlib.h>
-#ifdef SYS5
+#if !defined(__FreeBSD__)
+# ifdef SYS5
extern int daylight;
extern long timezone;
-#else /*SYS5*/
-#include <sys/timeb.h>
-#endif /*SYS5*/
+# else /*SYS5*/
+# include <sys/timeb.h>
+# endif /*SYS5*/
+#endif
-extern long time();
-struct tm* localtime();
-
struct tws *dtwstime()
{
long clock = 0;
@@ -59,12 +58,12 @@ struct tws* dlocaltime( long* clock )
struct tws* dlocaltime( long* clock )
{
-register struct tm* tm;
-#ifndef SYS5
+ register struct tm* tm;
+#if !defined(SYS5) && !defined(__FreeBSD__)
struct timeb tb;
#endif /*not SYS5*/
static struct tws tw;
-
+
if ( clock == (long*) 0 )
return (struct tws*) 0;
tw.tw_flags = TW_NULL;
@@ -80,13 +79,15 @@ register struct tm* tm;
tw.tw_yday = tm->tm_yday;
if ( tm->tm_isdst )
tw.tw_flags |= TW_DST;
-#ifndef SYS5
- ftime( &tb );
- tw.tw_zone = -tb.timezone;
-#else /*SYS5*/
+#ifdef __FreeBSD__
+ tw.tw_zone = tm->tm_gmtoff / 60;
+#elif defined(SYS5)
tzset();
tw.tw_zone = -( timezone / 60 );
-#endif /*SYS5*/
+#else /*!SYS5&&!__FreeBSD__*/
+ ftime( &tb );
+ tw.tw_zone = -tb.timezone;
+#endif
tw.tw_flags &= ~TW_SDAY;
tw.tw_flags |= TW_SEXP;
tw.tw_clock = *clock;

16
astro/pngphoon/pkg-descr Normal file
View File

@ -0,0 +1,16 @@
This program is intended as an alternative to the great xphoon program
(X PHase of mOON). xphoon is a program that displays the actual phase
of the moon on the X11 root window. Nowadays all desktop systems like
KDE hide the X11 rootwindow with an own background image, so xphoon
could paint as much in the root window as it likes to, but nothing was
to been seen.
Modern desktops have an advanced interface for programs to dynamically
provide background images in png format. Alternatively they just track
when the background image file has been changed. That is what this
program was originally written for.
The image must have a width of at least 760 pixels to place the moon.
If the image is smaller just the stars will be drawn. And by the way:
it is pronounced "pingphoon" (like "typhoon").

View File

@ -1,6 +1,5 @@
PORTNAME= soxr
DISTVERSION= 0.3.6
PORTREVISION= 1
DISTVERSION= 0.3.7
CATEGORIES= audio python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1692168308
SHA256 (soxr-0.3.6.tar.gz) = 6b3d98da77353b5bbb4401cef83cec7f1538844dc27c7badf89c2855b43f42b4
SIZE (soxr-0.3.6.tar.gz) = 291376
TIMESTAMP = 1704347538
SHA256 (soxr-0.3.7.tar.gz) = 436ddff00c6eb2c75b79c19cfdca7527b1e31b5fad738652f044045ba6258593
SIZE (soxr-0.3.7.tar.gz) = 296432

View File

@ -16,7 +16,7 @@ EXPIRATION_DATE= 2024-01-25
LIB_DEPENDS= libsphinxbase.so:audio/sphinxbase
USES= gmake libtool localbse:ldflags pathfix
USES= gmake libtool localbase:ldflags pathfix
USE_CSTD= gnu99
USE_LDCONFIG= yes

View File

@ -18,11 +18,15 @@ RUN_DEPENDS= ghdl:cad/ghdl
TEST_DEPENDS= pylint:devel/pylint@${PY_FLAVOR}
USES= python
USE_PYTHON= pep517 autoplist pytest # 42 tests fail, see https://github.com/VUnit/vunit/issues/941
USE_PYTHON= pep517 autoplist pytest # 1 test fails, see https://github.com/VUnit/vunit/issues/982
USE_GITHUB= yes
GH_ACCOUNT= VUnit
GH_PROJECT= vunit
GH_TUPLE= Paebbels:JSON-for-VHDL:95e848b:j4v/vunit/vhdl/JSON-for-VHDL \
OSVVM:OSVVM:2104430:osvvm/vunit/vhdl/osvvm
TEST_ENV= ${MAKE_ENV} PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}
NO_ARCH= yes

View File

@ -1,3 +1,7 @@
TIMESTAMP = 1686096347
TIMESTAMP = 1704219841
SHA256 (VUnit-vunit-v4.7.0_GH0.tar.gz) = 9e66a2eb5d48f5e5f668cd1d1f34166c8d5d075ff0b917f6a1933aee82e73a7c
SIZE (VUnit-vunit-v4.7.0_GH0.tar.gz) = 7082367
SHA256 (Paebbels-JSON-for-VHDL-95e848b_GH0.tar.gz) = 31416ec61bf99d1c6328121627f725c873d6e43819711263977205396fe36263
SIZE (Paebbels-JSON-for-VHDL-95e848b_GH0.tar.gz) = 57339
SHA256 (OSVVM-OSVVM-2104430_GH0.tar.gz) = 5e6226d7bff3ffd5883b01a326aa280b8180da28fe99a8cf3a7b66101d3dabb9
SIZE (OSVVM-OSVVM-2104430_GH0.tar.gz) = 216863

View File

@ -28,10 +28,4 @@ OPTIONS_DEFINE= NATIVE
NATIVE_CONFIGURE_ON+= --enable-optimizations=native
NATIVE_CONFIGURE_OFF+= --enable-optimizations=none
.include <bsd.port.pre.mk>
.if defined(PPC_ABI) && ${PPC_ABI} == ELFv1
CFLAGS+= -mminimal-toc
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View File

@ -1,5 +1,6 @@
PORTNAME= opencbm-kmod
PORTVERSION= ${OCBM_VERSION}
PORTREVISION= 1
CATEGORIES= comms archivers
MAINTAINER= zirias@FreeBSD.org

View File

@ -1,34 +0,0 @@
From 6e438c1b32d39e5238f65246e192c89b22fdfd82 Mon Sep 17 00:00:00 2001
From: John Baldwin <jhb@FreeBSD.org>
Date: Fri, 20 May 2022 17:10:09 +0000
Subject: [PATCH] FreeBSD kernel driver: compat with 14-CURRENT
In 14-CURRENT (upcoming major release), there was a slight change to the
driver API at version 1400058.
Add conditional code to retain compatibility.
--- opencbm.c.orig 2022-01-22 22:01:25 UTC
+++ opencbm.c
@@ -133,8 +133,6 @@ static struct cdevsw cbm_cdevsw = {
.d_name = CBM_NAME
};
-static devclass_t cbm_devclass;
-
/* forward references for parallel burst routines */
int cbm_parallel_burst_read_track(struct cbm_data *sc, device_t ppbus,
unsigned char *buffer);
@@ -930,7 +928,13 @@ static driver_t cbm_driver = {
sizeof(struct cbm_data)
};
+#if __FreeBSD_version >= 1400058
+DRIVER_MODULE(cbm, ppbus, cbm_driver, 0, 0);
+#else
+static devclass_t cbm_devclass;
+
DRIVER_MODULE(cbm, ppbus, cbm_driver, cbm_devclass, 0, 0);
+#endif
MODULE_DEPEND(cbm, ppbus, 1, 1, 1);
/*

View File

@ -0,0 +1,54 @@
--- opencbm.c.orig 2022-01-22 22:01:25 UTC
+++ opencbm.c
@@ -133,8 +133,6 @@ static struct cdevsw cbm_cdevsw = {
.d_name = CBM_NAME
};
-static devclass_t cbm_devclass;
-
/* forward references for parallel burst routines */
int cbm_parallel_burst_read_track(struct cbm_data *sc, device_t ppbus,
unsigned char *buffer);
@@ -699,7 +697,7 @@ cbm_ioctl(struct cdev *dev, u_long cmd, caddr_t data,
break;
}
rv = !cbm_parallel_burst_read_track(sc, ppbus, sc->sc_buf);
- if (!rv) copyout(sc->sc_buf, val->buffer, BUFFER_SIZE);
+ if (!rv) rv = copyout(sc->sc_buf, val->buffer, BUFFER_SIZE);
break;
case CBMCTRL_PARBURST_READ_TRACK_VAR:
@@ -710,7 +708,7 @@ cbm_ioctl(struct cdev *dev, u_long cmd, caddr_t data,
break;
}
rv = !cbm_parallel_burst_read_track_var(sc, ppbus, sc->sc_buf);
- if (!rv) copyout(sc->sc_buf, val->buffer, BUFFER_SIZE);
+ if (!rv) rv = copyout(sc->sc_buf, val->buffer, BUFFER_SIZE);
break;
case CBMCTRL_PARBURST_WRITE_TRACK:
@@ -720,7 +718,9 @@ cbm_ioctl(struct cdev *dev, u_long cmd, caddr_t data,
rv = EINVAL;
break;
}
- copyin(val->buffer, sc->sc_buf, val->length);
+ rv = copyin(val->buffer, sc->sc_buf, val->length);
+ if (rv)
+ break;
rv = !cbm_parallel_burst_write_track(sc, ppbus,
val->buffer, val->length);
break;
@@ -930,7 +930,13 @@ static driver_t cbm_driver = {
sizeof(struct cbm_data)
};
+#if __FreeBSD_version >= 1400058
+DRIVER_MODULE(cbm, ppbus, cbm_driver, 0, 0);
+#else
+static devclass_t cbm_devclass;
+
DRIVER_MODULE(cbm, ppbus, cbm_driver, cbm_devclass, 0, 0);
+#endif
MODULE_DEPEND(cbm, ppbus, 1, 1, 1);
/*

View File

@ -1,6 +1,6 @@
PORTNAME= babel
PORTVERSION= 2010.01.16
PORTREVISION= 81
PORTREVISION= 82
CATEGORIES= converters lisp
PKGNAMEPREFIX= cl-
DISTFILES= # none

View File

@ -1,5 +1,6 @@
PORTNAME= pdf2djvu
DISTVERSION= 0.9.19
PORTREVISION= 1
CATEGORIES= converters
MASTER_SITES= https://github.com/jwilk/${PORTNAME}/releases/download/${PORTVERSION}/

View File

@ -1,9 +0,0 @@
CATEGORIES= converters
MASTERDIR= ${.CURDIR}/../../lang/php80
PKGNAMESUFFIX= -mbstring
TEST_TARGET= test
.include "${MASTERDIR}/Makefile"

View File

@ -988,6 +988,7 @@
SUBDIR += rubygem-redis-cluster-client
SUBDIR += rubygem-redis-clustering
SUBDIR += rubygem-redis-namespace
SUBDIR += rubygem-redis-namespace110
SUBDIR += rubygem-redis-namespace19
SUBDIR += rubygem-redis4
SUBDIR += rubygem-scenic61

View File

@ -1,6 +1,6 @@
PORTNAME= kbibtex
DISTVERSION= 0.10.0
PORTREVISION= 5
PORTREVISION= 6
CATEGORIES= databases kde
MASTER_SITES= KDE/stable/KBibTeX/${DISTVERSION}

View File

@ -0,0 +1,22 @@
PORTNAME= redis-namespace
PORTVERSION= 1.10.0
CATEGORIES= databases rubygems
MASTER_SITES= RG
PKGNAMESUFFIX= 110
MAINTAINER= ruby@FreeBSD.org
COMMENT= Ruby client class for Redis with namespace support
WWW= https://github.com/resque/redis-namespace
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= rubygem-redis>=4:databases/rubygem-redis
USES= gem
NO_ARCH= yes
PORTSCOUT= limit:^1\.10\.
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1703587662
SHA256 (rubygem/redis-namespace-1.10.0.gem) = 2c1c6ea7c6c5e343e75b9bee3aa4c265e364a5b9966507397467af2bb3758d94
SIZE (rubygem/redis-namespace-1.10.0.gem) = 19456

View File

@ -0,0 +1,3 @@
Adds a Redis::Namespace class which can be used to namespace calls to Redis.
This is useful when using a single instance of Redis with multiple, different
applications.

View File

@ -99,6 +99,7 @@
SUBDIR += gnome-utils
SUBDIR += gnome-weather
SUBDIR += gnote
SUBDIR += gnotime
SUBDIR += gnustep-wrapper
SUBDIR += go-for-it
SUBDIR += goesimage

View File

@ -1,6 +1,6 @@
PORTNAME= bookworm
DISTVERSION= 1.1.2
PORTREVISION= 19
PORTREVISION= 20
CATEGORIES= deskutils
MAINTAINER= miguel@gocobachi.dev

View File

@ -1,5 +1,6 @@
PORTNAME= calibre
PORTVERSION= 7.2.0
PORTREVISION= 1
CATEGORIES= deskutils python
MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}

View File

@ -2,7 +2,7 @@ PORTNAME= cfiles
DISTVERSIONPREFIX= v
DISTVERSION= 1.8-6
DISTVERSIONSUFFIX= -g327d47f
PORTREVISION= 28
PORTREVISION= 29
CATEGORIES= deskutils
MAINTAINER= yuri@FreeBSD.org

View File

@ -0,0 +1,46 @@
PORTNAME= gnotime
DISTVERSION= g20231022
CATEGORIES= deskutils gnome
MAINTAINER= truckman@FreeBSD.org
COMMENT= Time tracker for GTK 3/WebkitGTK
WWW= https://github.com/GnoTime/gnotime
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= autoconf-archive>=0:devel/autoconf-archive \
scrollkeeper-config:textproc/rarian
LIB_DEPENDS= libqof.so:databases/qof \
libgc-threaded.so:devel/boehm-gc-threaded \
libdbus-1.so:devel/dbus \
libdbus-glib-1.so:devel/dbus-glib \
libsoup-2.4.so:devel/libsoup \
libguile-2.2.so:lang/guile2 \
libharfbuzz.so:print/harfbuzz \
libwebkit2gtk-4.0.so:www/webkit2-gtk3
USES= autoreconf desktop-file-utils gettext gmake gnome libtool pathfix pkgconfig xorg
USE_GITHUB= yes
GH_ACCOUNT= GnoTime
GH_PROJECT= gnotime
GH_TAGNAME= ee0ddbcb8945fc6b11a49b107b738e3c934357a1
USE_XORG= sm ice xscrnsaver x11
USE_GNOME= cairo gconf2 gdkpixbuf2 glib20 gtk30 libxml2
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
INSTALLS_OMF= yes
CPPFLAGS+= -I${LOCALBASE}/include
LIBS+= -L${LOCALBASE}/lib
GCONF_SCHEMAS= gnotime.schemas
#post-patch:
# @${REINPLACE_CMD} -e \
# '/^install-data-am/s|install-data-local||' \
# ${WRKSRC}/gconf/Makefile.in
# @${REINPLACE_CMD} -e \
# '/^AM_CFLAGS =/s|-g||' ${WRKSRC}/src/Makefile.in
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1703990813
SHA256 (GnoTime-gnotime-g20231022-ee0ddbcb8945fc6b11a49b107b738e3c934357a1_GH0.tar.gz) = 1a6dc83d73e34ded00ab042f784936c482ac6e9eed0d96b3f1f7cc7639ef2620
SIZE (GnoTime-gnotime-g20231022-ee0ddbcb8945fc6b11a49b107b738e3c934357a1_GH0.tar.gz) = 1759286

View File

@ -0,0 +1,6 @@
The Gnome Time Tracker is a to-do list/diary/journal tool that can
track the amount of time spent on projects, and, among other things,
generate reports and invoices based on that time. It can be used
to keep shopping lists, organize ideas, track bug reports, keep a
diary of activities, provide weekly status reports to management,
and even works as a consultant billing system.

106
deskutils/gnotime/pkg-plist Normal file
View File

@ -0,0 +1,106 @@
bin/gnotime
bin/gnotime-remote
man/man1/gnotime-remote.1.gz
man/man1/gnotime.1.gz
share/applications/gnotime.desktop
share/gnome/help/gnotime/C/figures/gtt_edit_reports_dialog.png
share/gnome/help/gnotime/C/figures/gtt_mainwin.png
share/gnome/help/gnotime/C/figures/gtt_new_project.png
share/gnome/help/gnotime/C/figures/gtt_new_report_dialog.png
share/gnome/help/gnotime/C/figures/gtt_prefs_display.png
share/gnome/help/gnotime/C/figures/gtt_prefs_fields.png
share/gnome/help/gnotime/C/figures/gtt_prefs_logfile.png
share/gnome/help/gnotime/C/figures/gtt_prefs_misc.png
share/gnome/help/gnotime/C/figures/gtt_prefs_reports.png
share/gnome/help/gnotime/C/figures/gtt_prefs_shell.png
share/gnome/help/gnotime/C/figures/gtt_prefs_toolbar.png
share/gnome/help/gnotime/C/figures/gtt_prefswin.png
share/gnome/help/gnotime/C/figures/gtt_props_intervals.png
share/gnome/help/gnotime/C/figures/gtt_props_planning.png
share/gnome/help/gnotime/C/figures/gtt_props_project.png
share/gnome/help/gnotime/C/figures/gtt_props_rates.png
share/gnome/help/gnotime/C/figures/gtt_report_activity.png
share/gnome/help/gnotime/C/figures/gtt_report_daily.png
share/gnome/help/gnotime/C/figures/gtt_report_invoice.png
share/gnome/help/gnotime/C/figures/gtt_report_journal.png
share/gnome/help/gnotime/C/figures/gtt_report_todo.png
share/gnome/help/gnotime/C/figures/gtt_restartwin.png
share/gnome/help/gnotime/C/figures/gtt_startprojwin.png
share/gnome/help/gnotime/C/gnotime.xml
%%DATADIR%%/ghtml/C/activity.ghtml
%%DATADIR%%/ghtml/C/basic-daily.ghtml
%%DATADIR%%/ghtml/C/basic-invoice.ghtml
%%DATADIR%%/ghtml/C/basic-journal.ghtml
%%DATADIR%%/ghtml/C/basic-todo.ghtml
%%DATADIR%%/ghtml/C/daily.ghtml
%%DATADIR%%/ghtml/C/gnotime-logo.png
%%DATADIR%%/ghtml/C/gtt-style.css
%%DATADIR%%/ghtml/C/gtt.scm
%%DATADIR%%/ghtml/C/invoice.ghtml
%%DATADIR%%/ghtml/C/journal-rss.ghtml
%%DATADIR%%/ghtml/C/journal.ghtml
%%DATADIR%%/ghtml/C/monthly-daily.ghtml
%%DATADIR%%/ghtml/C/noproject.ghtml
%%DATADIR%%/ghtml/C/primer.ghtml
%%DATADIR%%/ghtml/C/query.ghtml
%%DATADIR%%/ghtml/C/status.ghtml
%%DATADIR%%/ghtml/C/tab-delim.ghtml
%%DATADIR%%/ghtml/C/todo-export.ghtml
%%DATADIR%%/ghtml/C/todo.ghtml
%%DATADIR%%/ui/active.ui
%%DATADIR%%/ui/column_menu.ui
%%DATADIR%%/ui/idle.ui
%%DATADIR%%/ui/interval_edit.ui
%%DATADIR%%/ui/interval_popup.ui
%%DATADIR%%/ui/journal.ui
%%DATADIR%%/ui/mainmenu.ui
%%DATADIR%%/ui/notes.ui
%%DATADIR%%/ui/plugin.ui
%%DATADIR%%/ui/plugin_editor.ui
%%DATADIR%%/ui/prefs.ui
%%DATADIR%%/ui/project_properties.ui
%%DATADIR%%/ui/task_popup.ui
%%DATADIR%%/ui/task_properties.ui
share/glib-2.0/schemas/org.gnotime.app.gschema.xml
share/locale/az/LC_MESSAGES/gnotime.mo
share/locale/bg/LC_MESSAGES/gnotime.mo
share/locale/ca/LC_MESSAGES/gnotime.mo
share/locale/cs/LC_MESSAGES/gnotime.mo
share/locale/da/LC_MESSAGES/gnotime.mo
share/locale/de/LC_MESSAGES/gnotime.mo
share/locale/el/LC_MESSAGES/gnotime.mo
share/locale/en_GB/LC_MESSAGES/gnotime.mo
share/locale/es/LC_MESSAGES/gnotime.mo
share/locale/et/LC_MESSAGES/gnotime.mo
share/locale/eu/LC_MESSAGES/gnotime.mo
share/locale/fi/LC_MESSAGES/gnotime.mo
share/locale/fr/LC_MESSAGES/gnotime.mo
share/locale/ga/LC_MESSAGES/gnotime.mo
share/locale/gl/LC_MESSAGES/gnotime.mo
share/locale/hu/LC_MESSAGES/gnotime.mo
share/locale/it/LC_MESSAGES/gnotime.mo
share/locale/ja/LC_MESSAGES/gnotime.mo
share/locale/ko/LC_MESSAGES/gnotime.mo
share/locale/lt/LC_MESSAGES/gnotime.mo
share/locale/lv/LC_MESSAGES/gnotime.mo
share/locale/ms/LC_MESSAGES/gnotime.mo
share/locale/nb/LC_MESSAGES/gnotime.mo
share/locale/nl/LC_MESSAGES/gnotime.mo
share/locale/nn/LC_MESSAGES/gnotime.mo
share/locale/pl/LC_MESSAGES/gnotime.mo
share/locale/pt/LC_MESSAGES/gnotime.mo
share/locale/pt_BR/LC_MESSAGES/gnotime.mo
share/locale/ro/LC_MESSAGES/gnotime.mo
share/locale/ru/LC_MESSAGES/gnotime.mo
share/locale/sk/LC_MESSAGES/gnotime.mo
share/locale/sl/LC_MESSAGES/gnotime.mo
share/locale/sv/LC_MESSAGES/gnotime.mo
share/locale/ta/LC_MESSAGES/gnotime.mo
share/locale/tr/LC_MESSAGES/gnotime.mo
share/locale/uk/LC_MESSAGES/gnotime.mo
share/locale/vi/LC_MESSAGES/gnotime.mo
share/locale/wa/LC_MESSAGES/gnotime.mo
share/locale/zh_CN/LC_MESSAGES/gnotime.mo
share/locale/zh_TW/LC_MESSAGES/gnotime.mo
share/omf/gnotime/gnotime-C.omf
share/pixmaps/gnotime_128x128.png

View File

@ -1,6 +1,6 @@
PORTNAME= lumina-pdf
DISTVERSION= 1.6.2
PORTREVISION= 13
PORTREVISION= 14
CATEGORIES= deskutils
MAINTAINER= jwb@FreeBSD.org

View File

@ -1,6 +1,6 @@
PORTNAME= recoll
PORTVERSION= 1.33.1
PORTREVISION= 5
PORTREVISION= 6
CATEGORIES= deskutils
MASTER_SITES= https://www.lesbonscomptes.com/recoll/

View File

@ -1,5 +1,6 @@
PORTNAME= tumbler
PORTVERSION= 4.18.2
PORTREVISION= 1
CATEGORIES= deskutils xfce
MASTER_SITES= XFCE
PKGNAMEPREFIX= xfce4-

View File

@ -960,6 +960,7 @@
SUBDIR += hwloc
SUBDIR += hwloc2
SUBDIR += hyperscan
SUBDIR += hyprlang
SUBDIR += ice
SUBDIR += ice37
SUBDIR += icestorm
@ -6915,6 +6916,7 @@
SUBDIR += rubygem-gitlab-labkit
SUBDIR += rubygem-gitlab-license
SUBDIR += rubygem-gitlab-pygments.rb
SUBDIR += rubygem-gitlab-sdk
SUBDIR += rubygem-gitlab_chronic_duration
SUBDIR += rubygem-gitlab_git
SUBDIR += rubygem-gitlab_meta
@ -7381,6 +7383,7 @@
SUBDIR += rubygem-sidekiq
SUBDIR += rubygem-sidekiq-bulk
SUBDIR += rubygem-sidekiq-cron
SUBDIR += rubygem-sidekiq-cron-rails70
SUBDIR += rubygem-sidekiq-cron18
SUBDIR += rubygem-sidekiq-scheduler
SUBDIR += rubygem-sidekiq-unique-jobs
@ -7793,6 +7796,7 @@
SUBDIR += tokei
SUBDIR += tokio-console
SUBDIR += toml11
SUBDIR += tomlplusplus
SUBDIR += tortoisehg
SUBDIR += tpasm
SUBDIR += tradcpp

View File

@ -19,10 +19,6 @@ OPTIONS_DEFAULT= OPENMP
OPENMP_CONFIGURE_ENABLE= openmp
.if defined(PPC_ABI) && ${PPC_ABI} == ELFv1
USE_GCC= yes
.endif
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/R/library/data.table/libs/data_table.so

View File

@ -1,5 +1,5 @@
PORTNAME= aws-sdk-cpp
DISTVERSION= 1.11.216
DISTVERSION= 1.11.235
CATEGORIES= devel
MAINTAINER= eduardo@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1701611587
SHA256 (aws-aws-sdk-cpp-1.11.216_GH0.tar.gz) = 310d9fc07ae9e631227ccc6bea1e39b91ebd1e9498fbafc438c13c28ec3c065f
SIZE (aws-aws-sdk-cpp-1.11.216_GH0.tar.gz) = 58583437
TIMESTAMP = 1704205662
SHA256 (aws-aws-sdk-cpp-1.11.235_GH0.tar.gz) = c311a481f510719ceac1f6778fbb6473f65f9e840ed2bf33b64c4213a3aa5e73
SIZE (aws-aws-sdk-cpp-1.11.235_GH0.tar.gz) = 59094882

View File

@ -1,6 +1,6 @@
PORTNAME= ccache
PORTVERSION= 3.7.12
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= devel
MASTER_SITES= https://github.com/ccache/ccache/releases/download/v${DISTVERSION}/ \
LOCAL/bdrewery

View File

@ -18,7 +18,7 @@ CCACHE_COMPILERS+= cc c++ CC gcc g++ ${GNU_COMPILERS:S|^|gcc|} \
${GNU_COMPILERS:S|^|cpp|}
.if ${PORT_OPTIONS:MCLANGLINK}
CLANG_COMPILERS+= 33 34 35 36 37 38 39 40 50 60 70 80 90 10 11 12 13 14 15 -devel
CLANG_COMPILERS+= 33 34 35 36 37 38 39 40 50 60 70 80 90 10 11 12 13 14 15 16 17 -devel
CCACHE_COMPILERS+= clang clang++ ${CLANG_COMPILERS:S|^|clang|} \
${CLANG_COMPILERS:S|^|clang++|} \
${CLANG_COMPILERS:S|^|cpp|}

View File

@ -1,5 +1,5 @@
PORTNAME= cirrus-cli
PORTVERSION= 0.108.2
PORTVERSION= 0.108.3
DISTVERSIONPREFIX= v
CATEGORIES= devel

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1703738349
SHA256 (go/devel_cirrus-cli/cirrus-cli-v0.108.2/v0.108.2.mod) = 75ce075270920129d449ca1fb4114757517ccafae17b9c8eaacc5361cbab510b
SIZE (go/devel_cirrus-cli/cirrus-cli-v0.108.2/v0.108.2.mod) = 7520
SHA256 (go/devel_cirrus-cli/cirrus-cli-v0.108.2/v0.108.2.zip) = b772ea3efdc8dff05022e6d47b6d604c1c984fd669b8adffede061b217124387
SIZE (go/devel_cirrus-cli/cirrus-cli-v0.108.2/v0.108.2.zip) = 1019065
TIMESTAMP = 1704341409
SHA256 (go/devel_cirrus-cli/cirrus-cli-v0.108.3/v0.108.3.mod) = 19b7beefc444a8e8f7078662f1325ae16971e8511544c9843fa45f21886d56bb
SIZE (go/devel_cirrus-cli/cirrus-cli-v0.108.3/v0.108.3.mod) = 7520
SHA256 (go/devel_cirrus-cli/cirrus-cli-v0.108.3/v0.108.3.zip) = 34a4d7da96cc9edbcaa9713083fd63bb647a47754a8fc9f4ec2cfde428f93ea0
SIZE (go/devel_cirrus-cli/cirrus-cli-v0.108.3/v0.108.3.zip) = 1019250

View File

@ -1,6 +1,6 @@
PORTNAME= alexandria
PORTVERSION= 1.2
PORTREVISION= 30
PORTREVISION= 31
PORTEPOCH= 1
CATEGORIES= devel lisp
PKGNAMEPREFIX= cl-

View File

@ -1,6 +1,6 @@
PORTNAME= infix
PORTVERSION= 19960628
PORTREVISION= 85
PORTREVISION= 86
CATEGORIES= devel lisp
PKGNAMEPREFIX= cl-
DISTFILES= # none

View File

@ -1,6 +1,6 @@
PORTNAME= port
PORTVERSION= 2002.10.02.1
PORTREVISION= 83
PORTREVISION= 84
CATEGORIES= devel lisp
PKGNAMEPREFIX= cl-
DISTFILES= # none

View File

@ -1,6 +1,6 @@
PORTNAME= split-sequence
PORTVERSION= 20011114.1
PORTREVISION= 82
PORTREVISION= 83
CATEGORIES= devel lisp
PKGNAMEPREFIX= cl-
DISTFILES= # none

View File

@ -1,6 +1,6 @@
PORTNAME= trivial-features
PORTVERSION= 2010.01.16
PORTREVISION= 82
PORTREVISION= 83
CATEGORIES= devel lisp
PKGNAMEPREFIX= cl-
DISTFILES= # none

View File

@ -1,6 +1,6 @@
PORTNAME= trivial-gray-streams
PORTVERSION= 2008.11.02
PORTREVISION= 82
PORTREVISION= 83
CATEGORIES= devel lisp
PKGNAMEPREFIX= cl-
DISTFILES= # none

View File

@ -1,6 +1,6 @@
PORTNAME= cpp-utilities
DISTVERSIONPREFIX= v
DISTVERSION= 5.24.4
DISTVERSION= 5.24.5
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1702363284
SHA256 (Martchus-cpp-utilities-v5.24.4_GH0.tar.gz) = f27be37d67fd97d934d70d4a9a5dc3368313dae6be219f388f7214511eb61f3b
SIZE (Martchus-cpp-utilities-v5.24.4_GH0.tar.gz) = 194082
TIMESTAMP = 1704272311
SHA256 (Martchus-cpp-utilities-v5.24.5_GH0.tar.gz) = 28cfbfe4e91eb37d9c0224f39def16b4aab41d09d7762a120c83382cf2fb3cbc
SIZE (Martchus-cpp-utilities-v5.24.5_GH0.tar.gz) = 194628

View File

@ -34,7 +34,7 @@ include/c++utilities/tests/testutils.h
include/c++utilities/version.h
lib/libc++utilities.so
lib/libc++utilities.so.5
lib/libc++utilities.so.5.24.4
lib/libc++utilities.so.5.24.5
libdata/pkgconfig/c++utilities.pc
share/c++utilities/cmake/c++utilitiesConfig.cmake
share/c++utilities/cmake/c++utilitiesConfigVersion.cmake

View File

@ -1,5 +1,6 @@
PORTNAME= efl
DISTVERSION= 1.27.0
PORTREVISION= 1
CATEGORIES= devel enlightenment
MASTER_SITES= http://download.enlightenment.org/rel/libs/${PORTNAME}/
DIST_SUBDIR= enlightenment

View File

@ -1,7 +1,6 @@
PORTNAME= electron
DISTVERSIONPREFIX= v
DISTVERSION= ${ELECTRON_VER:S/-beta./.b/}
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= https://github.com/tagattie/FreeBSD-Electron/releases/download/v26.3.0/:chromium \
https://commondatastorage.googleapis.com/chromium-nodejs/:chromium_node \
@ -233,7 +232,7 @@ REACTIVEOBJC_VER= 74ab5baccc6f7202c8ac69a8d1e152c29dc1ea76
# See ${WRKSRC}/electron/DEPS for MANTLE_VER
MANTLE_VER= 78d3966b3c331292ea29ec38661b25df0a245948
YARN_TIMESTAMP= 1703223125
YARN_TIMESTAMP= 61171200
.include "Makefile.version"
.include <bsd.port.pre.mk>

View File

@ -1,2 +1,2 @@
ELECTRON_VER= 26.6.3
ELECTRON_VER= 26.6.4
ELECTRON_VER_MAJOR= ${ELECTRON_VER:C/\..*//}

View File

@ -1,14 +1,14 @@
TIMESTAMP = 1703223790
TIMESTAMP = 1704348782
SHA256 (electron/chromium-116.0.5845.228.tar.xz) = ccf3d7f2e17fd2fcda6ebaef576787b2aaba7a6b2b4e3103b92260ac26fbc6a1
SIZE (electron/chromium-116.0.5845.228.tar.xz) = 1447024772
SHA256 (electron/937cea04689b7b8dcf3cb9adbb12c79d1d6c38bb) = f7f7f38661b107fc1d91b7918f36362d9180e87f34e3027562eb5db8735746fe
SIZE (electron/937cea04689b7b8dcf3cb9adbb12c79d1d6c38bb) = 8881070
SHA256 (electron/336e775eec536b2d785cc80eff6ac39051931286) = a2ca2962daf482a8f943163541e1c73ba4b2694fabcd2510981f2db4eda493c8
SIZE (electron/336e775eec536b2d785cc80eff6ac39051931286) = 32624734
SHA256 (electron/electron-yarn-cache-26.6.3.tar.xz) = effdfcefc780679931811fe01a5ef6c58f9cb8e1ab3f5d8bbed8a5476629b07c
SIZE (electron/electron-yarn-cache-26.6.3.tar.xz) = 32345460
SHA256 (electron/electron-electron-v26.6.3_GH0.tar.gz) = 095acf4a8467e94fe2afb9e61e814a5eab16590f5e2706550438f645b8ec813f
SIZE (electron/electron-electron-v26.6.3_GH0.tar.gz) = 11366217
SHA256 (electron/electron-yarn-cache-26.6.4.tar.xz) = 0fbc5dfd81619c971c29a865cfe496c8a54fefcbbb34429896a3ae6901960719
SIZE (electron/electron-yarn-cache-26.6.4.tar.xz) = 32345420
SHA256 (electron/electron-electron-v26.6.4_GH0.tar.gz) = 5cbed1fdce7b711e0e8caa6f1154cc3aed331f069f8015fd15309867584878ee
SIZE (electron/electron-electron-v26.6.4_GH0.tar.gz) = 11372216
SHA256 (electron/nodejs-node-v18.16.1_GH0.tar.gz) = 750b09907a0b7054bda042bfc26879b9ccb84f9f436182a820ea188b654ce77b
SIZE (electron/nodejs-node-v18.16.1_GH0.tar.gz) = 112039326
SHA256 (electron/nodejs-nan-16fa32231e2ccd89d2804b3f765319128b20c4ac_GH0.tar.gz) = 3807ae6a1e451a29f068540472f100f9718d457c60ac62f2f8469d1d57475d39

View File

@ -1,4 +1,4 @@
--- v8/src/execution/isolate.cc.orig 2023-08-10 01:51:22 UTC
--- v8/src/execution/isolate.cc.orig 2024-01-04 06:17:44 UTC
+++ v8/src/execution/isolate.cc
@@ -147,6 +147,10 @@
#include "src/execution/simulator-base.h"
@ -11,7 +11,7 @@
extern "C" const uint8_t v8_Default_embedded_blob_code_[];
extern "C" uint32_t v8_Default_embedded_blob_code_size_;
extern "C" const uint8_t v8_Default_embedded_blob_data_[];
@@ -3932,6 +3936,11 @@ void Isolate::InitializeDefaultEmbeddedBlob() {
@@ -3950,6 +3954,11 @@ void Isolate::InitializeDefaultEmbeddedBlob() {
uint32_t code_size = DefaultEmbeddedBlobCodeSize();
const uint8_t* data = DefaultEmbeddedBlobData();
uint32_t data_size = DefaultEmbeddedBlobDataSize();

View File

@ -1,6 +1,6 @@
PORTNAME= glaze
DISTVERSIONPREFIX= v
DISTVERSION= 1.9.9
DISTVERSION= 2.0.1
CATEGORIES= devel textproc
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1703752856
SHA256 (stephenberry-glaze-v1.9.9_GH0.tar.gz) = 7e2605046742a89ec455887a5a0d6b3188ed5c14ea309c5eb9814848c26bedca
SIZE (stephenberry-glaze-v1.9.9_GH0.tar.gz) = 248031
TIMESTAMP = 1704344193
SHA256 (stephenberry-glaze-v2.0.1_GH0.tar.gz) = 0f515588189796696a802c88b0308b5386376d202c7ff1875683f38316f09c90
SIZE (stephenberry-glaze-v2.0.1_GH0.tar.gz) = 251868

View File

@ -1,13 +1,13 @@
- correct the directory where to find glaze for testing
--- tests/CMakeLists.txt.orig 2023-12-15 09:39:27 UTC
--- tests/CMakeLists.txt.orig 2024-01-02 19:10:49 UTC
+++ tests/CMakeLists.txt
@@ -119,7 +119,7 @@ add_test(
"${CMAKE_CURRENT_SOURCE_DIR}/find_package"
"${CMAKE_CURRENT_BINARY_DIR}/find_package"
--build-options
- "-Dglaze_ROOT:PATH=${CMAKE_CURRENT_BINARY_DIR}/install"
+ "-Dglaze_ROOT:PATH=${FREEBSD_STAGEDIR_PREFIX}"
"-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}"
"-DBUILD_TESTING=ON"
--test-command "${CMAKE_CTEST_COMMAND}" --verbose --output-on-failure # inner ctest command
@@ -114,7 +114,7 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang")
"${CMAKE_CURRENT_SOURCE_DIR}/find_package"
"${CMAKE_CURRENT_BINARY_DIR}/find_package"
--build-options
- "-Dglaze_ROOT:PATH=${CMAKE_CURRENT_BINARY_DIR}/install"
+ "-Dglaze_ROOT:PATH=${FREEBSD_STAGEDIR_PREFIX}"
"-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}"
"-DBUILD_TESTING=ON"
--test-command "${CMAKE_CTEST_COMMAND}" --verbose --output-on-failure # inner ctest command

View File

@ -51,6 +51,7 @@ include/glaze/ext/eigen.hpp
include/glaze/ext/jsonrpc.hpp
include/glaze/file/file_ops.hpp
include/glaze/file/file_watch.hpp
include/glaze/file/hostname_include.hpp
include/glaze/glaze.hpp
include/glaze/glaze_exceptions.hpp
include/glaze/json.hpp

View File

@ -1,7 +1,6 @@
PORTNAME= goreleaser
DISTVERSIONPREFIX= v
DISTVERSION= 1.22.1
PORTREVISION= 1
DISTVERSION= 1.23.0
CATEGORIES= devel
MAINTAINER= fuz@FreeBSD.org

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1699545080
SHA256 (go/devel_goreleaser/goreleaser-v1.22.1/v1.22.1.mod) = 06d2237394171ed6bcbce45b44762c16401a554d8c83ae3404101f1a1c082aeb
SIZE (go/devel_goreleaser/goreleaser-v1.22.1/v1.22.1.mod) = 14084
SHA256 (go/devel_goreleaser/goreleaser-v1.22.1/v1.22.1.zip) = e1403263768173237dc09b27ac37bde4a502e21539ad0b91633e30faadaad20d
SIZE (go/devel_goreleaser/goreleaser-v1.22.1/v1.22.1.zip) = 1281606
TIMESTAMP = 1704203299
SHA256 (go/devel_goreleaser/goreleaser-v1.23.0/v1.23.0.mod) = 1e01e04cfe936986dc8f693783d1f0cc9534020cca919aa68da9885158b1f58d
SIZE (go/devel_goreleaser/goreleaser-v1.23.0/v1.23.0.mod) = 14031
SHA256 (go/devel_goreleaser/goreleaser-v1.23.0/v1.23.0.zip) = 92a0e3edf91df4c2e0e06cb7db4fb0ca33c44cd2c46efb34571413232b770b5f
SIZE (go/devel_goreleaser/goreleaser-v1.23.0/v1.23.0.zip) = 1292951

26
devel/hyprlang/Makefile Normal file
View File

@ -0,0 +1,26 @@
PORTNAME= hyprlang
DISTVERSIONPREFIX= v
DISTVERSION= 0.2.1
PORTREVISION= 1
CATEGORIES= devel
MAINTAINER= jbeich@FreeBSD.org
COMMENT= Library to parse hypr config files
WWW= https://hyprland.org/hyprlang
LICENSE= GPLv3+
LICENSE_FILE= ${WRKSRC}/LICENSE
BROKEN_armv7= https://github.com/hyprwm/hyprlang/issues/8
BROKEN_i386= https://github.com/hyprwm/hyprlang/issues/8
BROKEN_powerpc= https://github.com/hyprwm/hyprlang/issues/8
USES= cmake:testing compiler:c++11-lib
USE_GITHUB= yes
USE_LDCONFIG= yes
GH_ACCOUNT= hyprwm
PLIST_FILES= include/${PORTNAME}.hpp \
lib/lib${PORTNAME}.so \
share/pkgconfig/${PORTNAME}.pc
.include <bsd.port.mk>

3
devel/hyprlang/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1704233442
SHA256 (hyprwm-hyprlang-v0.2.1_GH0.tar.gz) = e41b265f09c1e84e03f052f584fcc086fe48ec5057191ef35917ce79e7dc4190
SIZE (hyprwm-hyprlang-v0.2.1_GH0.tar.gz) = 61006

View File

@ -0,0 +1,36 @@
https://github.com/hyprwm/hyprlang/issues/6
https://github.com/hyprwm/hyprlang/issues/7
https://github.com/hyprwm/hyprlang/issues/11
--- CMakeLists.txt.orig 2024-01-02 22:10:42 UTC
+++ CMakeLists.txt
@@ -2,7 +2,8 @@ set(PREFIX ${CMAKE_INSTALL_PREFIX})
set(HYPRLANG_VERSION "0.2.1")
set(PREFIX ${CMAKE_INSTALL_PREFIX})
-set(INCLUDE ${CMAKE_INSTALL_INCLUDEDIR})
+include(GNUInstallDirs)
+set(INCLUDE ${CMAKE_INSTALL_FULL_INCLUDEDIR})
project(hyprlang
VERSION ${HYPRLANG_VERSION}
@@ -31,16 +32,16 @@ target_link_libraries(hyprlang_test PRIVATE hyprlang)
add_executable(hyprlang_test "tests/parse/main.cpp")
target_link_libraries(hyprlang_test PRIVATE hyprlang)
-add_test(NAME "Parsing" WORKING_DIRECTORY "../tests/" COMMAND hyprlang_test "parse")
+add_test(NAME "Parsing" WORKING_DIRECTORY "${PROJECT_SOURCE_DIR}/tests/" COMMAND hyprlang_test "parse")
add_dependencies(tests hyprlang_test)
add_executable(hyprlang_fuzz "tests/fuzz/main.cpp")
target_link_libraries(hyprlang_fuzz PRIVATE hyprlang)
-add_test(NAME "Fuzz" WORKING_DIRECTORY "../tests/" COMMAND hyprlang_fuzz "fuzz")
+add_test(NAME "Fuzz" WORKING_DIRECTORY "${PROJECT_SOURCE_DIR}/tests/" COMMAND hyprlang_fuzz "fuzz")
add_dependencies(tests hyprlang_fuzz)
# Installation
install(TARGETS hyprlang
PUBLIC_HEADER DESTINATION include
LIBRARY DESTINATION lib)
-install(FILES build/hyprlang.pc DESTINATION ${CMAKE_INSTALL_PREFIX}/share/pkgconfig)
+install(FILES ${CMAKE_BINARY_DIR}/hyprlang.pc DESTINATION ${CMAKE_INSTALL_PREFIX}/share/pkgconfig)

4
devel/hyprlang/pkg-descr Normal file
View File

@ -0,0 +1,4 @@
The hypr configuration language is an extremely efficient, yet easy to
work with, configuration language for linux applications.
It's user-friendly, easy to grasp, and easy to implement.

View File

@ -1,5 +1,6 @@
PORTNAME= kfilemetadata
DISTVERSION= ${KDE_FRAMEWORKS_VERSION}
PORTREVISION= 1
CATEGORIES= devel kde kde-frameworks
MAINTAINER= kde@FreeBSD.org

View File

@ -1,7 +1,6 @@
PORTNAME= lefthook
DISTVERSIONPREFIX= v
DISTVERSION= 1.4.11
PORTREVISION= 1
DISTVERSION= 1.5.5
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1699202701
SHA256 (go/devel_lefthook/lefthook-v1.4.11/v1.4.11.mod) = 7bae13bdfda56f3350cdfbf49867e791f2ec7e1bcdab776bd681f363a4bb76ba
SIZE (go/devel_lefthook/lefthook-v1.4.11/v1.4.11.mod) = 1672
SHA256 (go/devel_lefthook/lefthook-v1.4.11/v1.4.11.zip) = 6dd28148ac634a2fed356b2e2999a149dc6ae5f376fa6b79344080998b397cce
SIZE (go/devel_lefthook/lefthook-v1.4.11/v1.4.11.zip) = 142560
TIMESTAMP = 1704322547
SHA256 (go/devel_lefthook/lefthook-v1.5.5/v1.5.5.mod) = 7bae13bdfda56f3350cdfbf49867e791f2ec7e1bcdab776bd681f363a4bb76ba
SIZE (go/devel_lefthook/lefthook-v1.5.5/v1.5.5.mod) = 1672
SHA256 (go/devel_lefthook/lefthook-v1.5.5/v1.5.5.zip) = 91391276c2a9d5fa7a0f1427e4eea88510a62dda96ca2792ec3d1d0bd772ea7b
SIZE (go/devel_lefthook/lefthook-v1.5.5/v1.5.5.zip) = 146739

View File

@ -1,5 +1,5 @@
PORTNAME= libbacktrace
DISTVERSION= 1.0
DISTVERSION= 1.0-20221130 # from README: This is version 1.0. It is likely that this will always be version 1.0.
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org
@ -14,7 +14,7 @@ USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= ianlancetaylor
GH_TAGNAME= 4f57c99
GH_TAGNAME= 14818b7
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-shared

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1620061382
SHA256 (ianlancetaylor-libbacktrace-1.0-4f57c99_GH0.tar.gz) = 428938b5f9b1330f1bb20cd4d3b867c1c68c5f21e054620423e2cfc3a35e95d7
SIZE (ianlancetaylor-libbacktrace-1.0-4f57c99_GH0.tar.gz) = 664774
TIMESTAMP = 1704322893
SHA256 (ianlancetaylor-libbacktrace-1.0-20221130-14818b7_GH0.tar.gz) = 4dee601e38b2c3639bc43bdfa38c28014e655b8af1680f5d4bfb685de341bba4
SIZE (ianlancetaylor-libbacktrace-1.0-20221130-14818b7_GH0.tar.gz) = 680786

View File

@ -4,7 +4,7 @@ CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org
COMMENT= Structured concurrency library in C
WWW= http://libdill.org
WWW= https://github.com/sustrik/libdill
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/COPYING

View File

@ -5,7 +5,7 @@ MASTER_SITES= http://libmill.org/
MAINTAINER= bapt@FreeBSD.org
COMMENT= Go-style concurrency in CGo-style concurrency in C
WWW= http://libmill.org
WWW= https://github.com/sustrik/libmill
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/COPYING

View File

@ -22,7 +22,7 @@ CFLAGS:= ${CFLAGS:N-O*} -O2
.include <bsd.port.options.mk>
.if (defined(PPC_ABI) && ${PPC_ABI} == ELFv2) || ${ARCH} == powerpc
.if ${ARCH} == powerpc || ${ARCH} == powerpc64
USES+= compiler:gcc-c++11-lib
.endif

View File

@ -9,6 +9,8 @@ WWW= https://github.com/rmind/libqsbr
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/../LICENSE
BROKEN_FreeBSD_armv7= static assertion failed due to requirement 'sizeof(unsigned long) == 8': expected 64-bit counter
USES= compiler:c11 gmake libtool:build
USE_GITHUB= yes
GH_ACCOUNT= rmind
@ -21,4 +23,10 @@ MAKE_ENV= DESTDIR=${STAGEDIR}${PREFIX} \
MANDIR=${LOCALBASE}/man
TEST_TARGET= tests
.include <bsd.port.options.mk>
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1500006
CFLAGS_i386= -Wno-error=sync-alignment
.endif
.include <bsd.port.mk>

View File

@ -115,6 +115,8 @@ STRIP_LIBS= BugpointPasses.so \
${LIBNAME}.0 \
libLTO.so
EXTRA_PATCHES+= ${PATCHDIR}/llvm${LLVM_MAJOR}-backport-version-fixes
.include <bsd.port.options.mk>
# keep in sync with /usr/src/lib/clang/clang.build.mk

View File

@ -0,0 +1,355 @@
diff --git llvm/tools/lto/CMakeLists.txt llvm/tools/lto/CMakeLists.txt
index 0af29ad762c5..055ce247e4e3 100644
--- llvm/tools/lto/CMakeLists.txt
+++ llvm/tools/lto/CMakeLists.txt
@@ -19,7 +19,11 @@ set(SOURCES
lto.cpp
)
-set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/lto.exports)
+if (LLVM_LINK_LLVM_DYLIB)
+ set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/lto.dylib.exports)
+else()
+ set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/lto.exports)
+endif()
if(CMAKE_SYSTEM_NAME STREQUAL AIX)
set(LTO_LIBRARY_TYPE MODULE)
diff --git llvm/tools/lto/lto.dylib.exports llvm/tools/lto/lto.dylib.exports
new file mode 100644
index 000000000000..8fdbd3522b9b
--- /dev/null
+++ llvm/tools/lto/lto.dylib.exports
@@ -0,0 +1,76 @@
+lto_get_error_message
+lto_get_version
+lto_initialize_disassembler
+lto_module_create
+lto_module_create_from_fd
+lto_module_create_from_fd_at_offset
+lto_module_create_from_memory
+lto_module_create_from_memory_with_path
+lto_module_create_in_local_context
+lto_module_create_in_codegen_context
+lto_module_get_linkeropts
+lto_module_get_macho_cputype
+lto_module_get_num_symbols
+lto_module_get_symbol_attribute
+lto_module_get_symbol_name
+lto_module_get_target_triple
+lto_module_set_target_triple
+lto_module_is_object_file
+lto_module_is_object_file_for_target
+lto_module_is_object_file_in_memory
+lto_module_is_object_file_in_memory_for_target
+lto_module_has_objc_category
+lto_module_dispose
+lto_api_version
+lto_codegen_set_diagnostic_handler
+lto_codegen_add_module
+lto_codegen_set_module
+lto_codegen_add_must_preserve_symbol
+lto_codegen_compile
+lto_codegen_create
+lto_codegen_create_in_local_context
+lto_codegen_dispose
+lto_codegen_set_debug_model
+lto_codegen_set_pic_model
+lto_codegen_write_merged_modules
+lto_codegen_debug_options
+lto_codegen_debug_options_array
+lto_codegen_set_assembler_args
+lto_codegen_set_assembler_path
+lto_codegen_set_cpu
+lto_codegen_compile_to_file
+lto_codegen_optimize
+lto_codegen_compile_optimized
+lto_codegen_set_should_internalize
+lto_codegen_set_should_embed_uselists
+lto_set_debug_options
+thinlto_create_codegen
+thinlto_codegen_dispose
+thinlto_codegen_add_module
+thinlto_codegen_process
+thinlto_module_get_num_objects
+thinlto_module_get_object
+thinlto_codegen_set_pic_model
+thinlto_codegen_set_cache_dir
+thinlto_codegen_set_cache_pruning_interval
+thinlto_codegen_set_cache_entry_expiration
+thinlto_codegen_set_final_cache_size_relative_to_available_space
+thinlto_codegen_set_cache_size_bytes
+thinlto_codegen_set_cache_size_megabytes
+thinlto_codegen_set_cache_size_files
+thinlto_codegen_set_savetemps_dir
+thinlto_codegen_set_cpu
+thinlto_debug_options
+lto_module_is_thinlto
+thinlto_codegen_add_must_preserve_symbol
+thinlto_codegen_add_cross_referenced_symbol
+thinlto_codegen_set_codegen_only
+thinlto_codegen_disable_codegen
+thinlto_module_get_num_object_files
+thinlto_module_get_object_file
+thinlto_set_generated_objects_dir
+lto_input_create
+lto_input_dispose
+lto_input_get_num_dependent_libraries
+lto_input_get_dependent_library
+lto_runtime_lib_symbols_list
diff --git llvm/tools/lto/lto.exports llvm/tools/lto/lto.exports
index 1948bba29b67..8fdbd3522b9b 100644
--- llvm/tools/lto/lto.exports
+++ llvm/tools/lto/lto.exports
@@ -44,12 +44,6 @@ lto_codegen_compile_optimized
lto_codegen_set_should_internalize
lto_codegen_set_should_embed_uselists
lto_set_debug_options
-LLVMCreateDisasm
-LLVMCreateDisasmCPU
-LLVMDisasmDispose
-LLVMDisasmInstruction
-LLVMSetDisasmOptions
-LLVMCreateDisasmCPUFeatures
thinlto_create_codegen
thinlto_codegen_dispose
thinlto_codegen_add_module
diff --git llvm/tools/remarks-shlib/CMakeLists.txt llvm/tools/remarks-shlib/CMakeLists.txt
index 865436247270..81a1d75964f0 100644
--- llvm/tools/remarks-shlib/CMakeLists.txt
+++ llvm/tools/remarks-shlib/CMakeLists.txt
@@ -9,7 +9,11 @@ if(LLVM_ENABLE_PIC)
libremarks.cpp
)
- set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/Remarks.exports)
+ if (LLVM_LINK_LLVM_DYLIB)
+ set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/Remarks.dylib.exports)
+ else()
+ set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/Remarks.exports)
+ endif()
add_llvm_library(Remarks SHARED INSTALL_WITH_TOOLCHAIN ${SOURCES})
diff --git llvm/tools/remarks-shlib/Remarks.dylib.exports llvm/tools/remarks-shlib/Remarks.dylib.exports
new file mode 100644
index 000000000000..0c2a3c38c78c
--- /dev/null
+++ llvm/tools/remarks-shlib/Remarks.dylib.exports
@@ -0,0 +1 @@
+LLVMRemarkVersion
diff --git openmp/libomptarget/plugins/exports openmp/libomptarget/plugins/exports
index 61cc6746defd..cc7beda183af 100644
--- openmp/libomptarget/plugins/exports
+++ openmp/libomptarget/plugins/exports
@@ -1,29 +1,6 @@
VERS1.0 {
global:
- __tgt_rtl_is_valid_binary;
- __tgt_rtl_is_data_exchangable;
- __tgt_rtl_number_of_devices;
- __tgt_rtl_init_requires;
- __tgt_rtl_init_device;
- __tgt_rtl_load_binary;
- __tgt_rtl_data_alloc;
- __tgt_rtl_data_submit;
- __tgt_rtl_data_submit_async;
- __tgt_rtl_data_retrieve;
- __tgt_rtl_data_retrieve_async;
- __tgt_rtl_data_exchange;
- __tgt_rtl_data_exchange_async;
- __tgt_rtl_data_delete;
- __tgt_rtl_run_target_team_region;
- __tgt_rtl_run_target_team_region_async;
- __tgt_rtl_run_target_region;
- __tgt_rtl_run_target_region_async;
- __tgt_rtl_synchronize;
- __tgt_rtl_register_lib;
- __tgt_rtl_unregister_lib;
- __tgt_rtl_supports_empty_images;
- __tgt_rtl_set_info_flag;
- __tgt_rtl_print_device_info;
+ __tgt_rtl*;
local:
*;
};
diff --git openmp/runtime/cmake/LibompHandleFlags.cmake openmp/runtime/cmake/LibompHandleFlags.cmake
index 9e19e59ba17d..1ddbc870e0f1 100644
--- openmp/runtime/cmake/LibompHandleFlags.cmake
+++ openmp/runtime/cmake/LibompHandleFlags.cmake
@@ -98,7 +98,6 @@ function(libomp_get_ldflags ldflags)
IF_DEFINED CMAKE_C_OSX_CURRENT_VERSION_FLAG)
libomp_append(ldflags_local "${CMAKE_C_OSX_COMPATIBILITY_VERSION_FLAG}${LIBOMP_VERSION_MAJOR}.${LIBOMP_VERSION_MINOR}"
IF_DEFINED CMAKE_C_OSX_COMPATIBILITY_VERSION_FLAG)
- libomp_append(ldflags_local -Wl,--warn-shared-textrel LIBOMP_HAVE_WARN_SHARED_TEXTREL_FLAG)
libomp_append(ldflags_local -Wl,--as-needed LIBOMP_HAVE_AS_NEEDED_FLAG)
libomp_append(ldflags_local "-Wl,--version-script=${LIBOMP_SRC_DIR}/exports_so.txt" LIBOMP_HAVE_VERSION_SCRIPT_FLAG)
libomp_append(ldflags_local -static-libgcc LIBOMP_HAVE_STATIC_LIBGCC_FLAG)
diff --git openmp/runtime/cmake/config-ix.cmake openmp/runtime/cmake/config-ix.cmake
index 56d0ddb321f6..6608d182692d 100644
--- openmp/runtime/cmake/config-ix.cmake
+++ openmp/runtime/cmake/config-ix.cmake
@@ -114,9 +114,8 @@ if(WIN32)
libomp_check_linker_flag(/SAFESEH LIBOMP_HAVE_SAFESEH_FLAG)
elseif(NOT APPLE)
libomp_check_linker_flag(-Wl,-x LIBOMP_HAVE_X_FLAG)
- libomp_check_linker_flag(-Wl,--warn-shared-textrel LIBOMP_HAVE_WARN_SHARED_TEXTREL_FLAG)
libomp_check_linker_flag(-Wl,--as-needed LIBOMP_HAVE_AS_NEEDED_FLAG)
- libomp_check_linker_flag("-Wl,--version-script=${LIBOMP_SRC_DIR}/exports_so.txt" LIBOMP_HAVE_VERSION_SCRIPT_FLAG)
+ libomp_check_linker_flag("-Wl,--version-script=${LIBOMP_SRC_DIR}/exports_test_so.txt" LIBOMP_HAVE_VERSION_SCRIPT_FLAG)
libomp_check_linker_flag(-static-libgcc LIBOMP_HAVE_STATIC_LIBGCC_FLAG)
libomp_check_linker_flag(-Wl,-z,noexecstack LIBOMP_HAVE_Z_NOEXECSTACK_FLAG)
endif()
diff --git openmp/runtime/src/exports_so.txt openmp/runtime/src/exports_so.txt
index cb79ae72e67b..16f2438647fe 100644
--- openmp/runtime/src/exports_so.txt
+++ openmp/runtime/src/exports_so.txt
@@ -71,10 +71,8 @@ VERSION {
__kmp_fork_call;
__kmp_invoke_microtask;
#if KMP_USE_MONITOR
- __kmp_launch_monitor;
__kmp_reap_monitor;
#endif
- __kmp_launch_worker;
__kmp_reap_worker;
__kmp_release_64;
__kmp_wait_64;
diff --git openmp/runtime/src/exports_test_so.txt openmp/runtime/src/exports_test_so.txt
new file mode 100644
index 000000000000..912d160e7c06
--- /dev/null
+++ openmp/runtime/src/exports_test_so.txt
@@ -0,0 +1,60 @@
+# exports_test_so.txt #
+
+#
+#//===----------------------------------------------------------------------===//
+#//
+#// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+#// See https://llvm.org/LICENSE.txt for license information.
+#// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+#//
+#//===----------------------------------------------------------------------===//
+#
+
+# This is used only to test if the linker supports version scripts. If the full
+# version script it used we may error on undefined symbols and erroneously fail.
+
+VERSION {
+
+ global: # Exported symbols.
+
+ *; # All symbols as exported for testing.
+
+ local: # Non-exported symbols.
+
+ *; # All other symbols are not exported.
+
+}; # VERSION
+
+# sets up GCC OMP_ version dependency chain
+OMP_1.0 {
+};
+OMP_2.0 {
+} OMP_1.0;
+OMP_3.0 {
+} OMP_2.0;
+OMP_3.1 {
+} OMP_3.0;
+OMP_4.0 {
+} OMP_3.1;
+OMP_4.5 {
+} OMP_4.0;
+OMP_5.0 {
+} OMP_4.5;
+
+# sets up GCC GOMP_ version dependency chain
+GOMP_1.0 {
+};
+GOMP_2.0 {
+} GOMP_1.0;
+GOMP_3.0 {
+} GOMP_2.0;
+GOMP_4.0 {
+} GOMP_3.0;
+GOMP_4.5 {
+} GOMP_4.0;
+GOMP_5.0 {
+} GOMP_4.5;
+GOMP_5.0.1 {
+} GOMP_5.0;
+
+# end of file #
diff --git openmp/runtime/src/kmp_runtime.cpp openmp/runtime/src/kmp_runtime.cpp
index 16d415dc8a74..1d873773bbc2 100644
--- openmp/runtime/src/kmp_runtime.cpp
+++ openmp/runtime/src/kmp_runtime.cpp
@@ -8844,3 +8844,20 @@ void __kmp_set_nesting_mode_threads() {
if (__kmp_nesting_mode == 1) // turn on nesting for this case only
set__max_active_levels(thread, __kmp_nesting_mode_nlevels);
}
+
+// Empty symbols to export (see exports_so.txt) when feature is disabled
+extern "C" {
+#if !KMP_STATS_ENABLED
+void __kmp_reset_stats() {}
+#endif
+#if !USE_DEBUGGER
+int __kmp_omp_debug_struct_info = FALSE;
+int __kmp_debugging = FALSE;
+#endif
+#if !USE_ITT_BUILD || !USE_ITT_NOTIFY
+void __kmp_itt_fini_ittlib() {}
+void __kmp_itt_init_ittlib() {}
+#endif
+}
+
+// end of file
diff --git openmp/runtime/src/kmp_utility.cpp openmp/runtime/src/kmp_utility.cpp
index c4bfead9d0d6..5846a993619e 100644
--- openmp/runtime/src/kmp_utility.cpp
+++ openmp/runtime/src/kmp_utility.cpp
@@ -397,3 +397,16 @@ void __kmp_expand_file_name(char *result, size_t rlen, char *pattern) {
*pos = '\0';
}
+
+#if !OMPT_SUPPORT
+extern "C" {
+typedef struct ompt_start_tool_result_t ompt_start_tool_result_t;
+// Define symbols expected by VERSION script
+ompt_start_tool_result_t *ompt_start_tool(unsigned int omp_version,
+ const char *runtime_version) {
+ return nullptr;
+}
+
+void ompt_libomp_connect(ompt_start_tool_result_t *result) { result = nullptr; }
+}
+#endif
diff --git openmp/runtime/src/z_Linux_util.cpp openmp/runtime/src/z_Linux_util.cpp
index 42ad1d56f9ec..19fca31a2db0 100644
--- openmp/runtime/src/z_Linux_util.cpp
+++ openmp/runtime/src/z_Linux_util.cpp
@@ -987,7 +987,7 @@ void __kmp_exit_thread(int exit_status) {
#if KMP_USE_MONITOR
void __kmp_resume_monitor();
-void __kmp_reap_monitor(kmp_info_t *th) {
+extern "C" void __kmp_reap_monitor(kmp_info_t *th) {
int status;
void *exit_val;
@@ -1029,6 +1029,12 @@ void __kmp_reap_monitor(kmp_info_t *th) {
KMP_MB(); /* Flush all pending memory write invalidates. */
}
+#else
+// Empty symbol to export (see exports_so.txt) when
+// monitor thread feature is disabled
+extern "C" void __kmp_reap_monitor(kmp_info_t *th) {
+ (void)th;
+}
#endif // KMP_USE_MONITOR
void __kmp_reap_worker(kmp_info_t *th) {

View File

@ -0,0 +1,375 @@
diff --git llvm/tools/lto/CMakeLists.txt llvm/tools/lto/CMakeLists.txt
index 67f6d3af40e0..9382ee9588b3 100644
--- llvm/tools/lto/CMakeLists.txt
+++ llvm/tools/lto/CMakeLists.txt
@@ -19,7 +19,11 @@ set(SOURCES
lto.cpp
)
-set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/lto.exports)
+if (LLVM_LINK_LLVM_DYLIB)
+ set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/lto.dylib.exports)
+else()
+ set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/lto.exports)
+endif()
if(CMAKE_SYSTEM_NAME STREQUAL AIX)
set(LTO_LIBRARY_TYPE MODULE)
diff --git llvm/tools/lto/lto.dylib.exports llvm/tools/lto/lto.dylib.exports
new file mode 100644
index 000000000000..4164c3919a97
--- /dev/null
+++ llvm/tools/lto/lto.dylib.exports
@@ -0,0 +1,77 @@
+lto_get_error_message
+lto_get_version
+lto_initialize_disassembler
+lto_module_create
+lto_module_create_from_fd
+lto_module_create_from_fd_at_offset
+lto_module_create_from_memory
+lto_module_create_from_memory_with_path
+lto_module_create_in_local_context
+lto_module_create_in_codegen_context
+lto_module_has_ctor_dtor
+lto_module_get_linkeropts
+lto_module_get_macho_cputype
+lto_module_get_num_symbols
+lto_module_get_symbol_attribute
+lto_module_get_symbol_name
+lto_module_get_target_triple
+lto_module_set_target_triple
+lto_module_is_object_file
+lto_module_is_object_file_for_target
+lto_module_is_object_file_in_memory
+lto_module_is_object_file_in_memory_for_target
+lto_module_has_objc_category
+lto_module_dispose
+lto_api_version
+lto_codegen_set_diagnostic_handler
+lto_codegen_add_module
+lto_codegen_set_module
+lto_codegen_add_must_preserve_symbol
+lto_codegen_compile
+lto_codegen_create
+lto_codegen_create_in_local_context
+lto_codegen_dispose
+lto_codegen_set_debug_model
+lto_codegen_set_pic_model
+lto_codegen_write_merged_modules
+lto_codegen_debug_options
+lto_codegen_debug_options_array
+lto_codegen_set_assembler_args
+lto_codegen_set_assembler_path
+lto_codegen_set_cpu
+lto_codegen_compile_to_file
+lto_codegen_optimize
+lto_codegen_compile_optimized
+lto_codegen_set_should_internalize
+lto_codegen_set_should_embed_uselists
+lto_set_debug_options
+thinlto_create_codegen
+thinlto_codegen_dispose
+thinlto_codegen_add_module
+thinlto_codegen_process
+thinlto_module_get_num_objects
+thinlto_module_get_object
+thinlto_codegen_set_pic_model
+thinlto_codegen_set_cache_dir
+thinlto_codegen_set_cache_pruning_interval
+thinlto_codegen_set_cache_entry_expiration
+thinlto_codegen_set_final_cache_size_relative_to_available_space
+thinlto_codegen_set_cache_size_bytes
+thinlto_codegen_set_cache_size_megabytes
+thinlto_codegen_set_cache_size_files
+thinlto_codegen_set_savetemps_dir
+thinlto_codegen_set_cpu
+thinlto_debug_options
+lto_module_is_thinlto
+thinlto_codegen_add_must_preserve_symbol
+thinlto_codegen_add_cross_referenced_symbol
+thinlto_codegen_set_codegen_only
+thinlto_codegen_disable_codegen
+thinlto_module_get_num_object_files
+thinlto_module_get_object_file
+thinlto_set_generated_objects_dir
+lto_input_create
+lto_input_dispose
+lto_input_get_num_dependent_libraries
+lto_input_get_dependent_library
+lto_runtime_lib_symbols_list
diff --git llvm/tools/lto/lto.exports llvm/tools/lto/lto.exports
index 3abae5f0fcba..4164c3919a97 100644
--- llvm/tools/lto/lto.exports
+++ llvm/tools/lto/lto.exports
@@ -45,12 +45,6 @@ lto_codegen_compile_optimized
lto_codegen_set_should_internalize
lto_codegen_set_should_embed_uselists
lto_set_debug_options
-LLVMCreateDisasm
-LLVMCreateDisasmCPU
-LLVMDisasmDispose
-LLVMDisasmInstruction
-LLVMSetDisasmOptions
-LLVMCreateDisasmCPUFeatures
thinlto_create_codegen
thinlto_codegen_dispose
thinlto_codegen_add_module
diff --git llvm/tools/remarks-shlib/CMakeLists.txt llvm/tools/remarks-shlib/CMakeLists.txt
index f22cedd9ead7..2f108a42c9aa 100644
--- llvm/tools/remarks-shlib/CMakeLists.txt
+++ llvm/tools/remarks-shlib/CMakeLists.txt
@@ -9,7 +9,11 @@ if(LLVM_ENABLE_PIC)
libremarks.cpp
)
- set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/Remarks.exports)
+ if (LLVM_LINK_LLVM_DYLIB)
+ set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/Remarks.dylib.exports)
+ else()
+ set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/Remarks.exports)
+ endif()
add_llvm_library(Remarks SHARED INSTALL_WITH_TOOLCHAIN ${SOURCES})
diff --git llvm/tools/remarks-shlib/Remarks.dylib.exports llvm/tools/remarks-shlib/Remarks.dylib.exports
new file mode 100644
index 000000000000..0c2a3c38c78c
--- /dev/null
+++ llvm/tools/remarks-shlib/Remarks.dylib.exports
@@ -0,0 +1 @@
+LLVMRemarkVersion
diff --git openmp/libomptarget/plugins/exports openmp/libomptarget/plugins/exports
index 8664a2e493ee..cc7beda183af 100644
--- openmp/libomptarget/plugins/exports
+++ openmp/libomptarget/plugins/exports
@@ -1,36 +1,6 @@
VERS1.0 {
global:
- __tgt_rtl_is_valid_binary;
- __tgt_rtl_is_data_exchangable;
- __tgt_rtl_number_of_devices;
- __tgt_rtl_init_requires;
- __tgt_rtl_init_device;
- __tgt_rtl_load_binary;
- __tgt_rtl_data_alloc;
- __tgt_rtl_data_submit;
- __tgt_rtl_data_submit_async;
- __tgt_rtl_data_retrieve;
- __tgt_rtl_data_retrieve_async;
- __tgt_rtl_data_exchange;
- __tgt_rtl_data_exchange_async;
- __tgt_rtl_data_delete;
- __tgt_rtl_run_target_team_region;
- __tgt_rtl_run_target_team_region_async;
- __tgt_rtl_run_target_region;
- __tgt_rtl_run_target_region_async;
- __tgt_rtl_synchronize;
- __tgt_rtl_register_lib;
- __tgt_rtl_unregister_lib;
- __tgt_rtl_supports_empty_images;
- __tgt_rtl_set_info_flag;
- __tgt_rtl_print_device_info;
- __tgt_rtl_create_event;
- __tgt_rtl_record_event;
- __tgt_rtl_wait_event;
- __tgt_rtl_sync_event;
- __tgt_rtl_destroy_event;
- __tgt_rtl_init_device_info;
- __tgt_rtl_init_async_info;
+ __tgt_rtl*;
local:
*;
};
diff --git openmp/libomptarget/src/exports openmp/libomptarget/src/exports
index 0ef4c8cce521..425a6fad49cf 100644
--- openmp/libomptarget/src/exports
+++ openmp/libomptarget/src/exports
@@ -48,7 +48,6 @@ VERS1.0 {
omp_get_interop_int;
omp_get_interop_name;
omp_get_interop_type_desc;
- omp_get_interop_rc_desc;
__tgt_interop_init;
__tgt_interop_use;
__tgt_interop_destroy;
diff --git openmp/runtime/cmake/LibompHandleFlags.cmake openmp/runtime/cmake/LibompHandleFlags.cmake
index 9e19e59ba17d..1ddbc870e0f1 100644
--- openmp/runtime/cmake/LibompHandleFlags.cmake
+++ openmp/runtime/cmake/LibompHandleFlags.cmake
@@ -98,7 +98,6 @@ function(libomp_get_ldflags ldflags)
IF_DEFINED CMAKE_C_OSX_CURRENT_VERSION_FLAG)
libomp_append(ldflags_local "${CMAKE_C_OSX_COMPATIBILITY_VERSION_FLAG}${LIBOMP_VERSION_MAJOR}.${LIBOMP_VERSION_MINOR}"
IF_DEFINED CMAKE_C_OSX_COMPATIBILITY_VERSION_FLAG)
- libomp_append(ldflags_local -Wl,--warn-shared-textrel LIBOMP_HAVE_WARN_SHARED_TEXTREL_FLAG)
libomp_append(ldflags_local -Wl,--as-needed LIBOMP_HAVE_AS_NEEDED_FLAG)
libomp_append(ldflags_local "-Wl,--version-script=${LIBOMP_SRC_DIR}/exports_so.txt" LIBOMP_HAVE_VERSION_SCRIPT_FLAG)
libomp_append(ldflags_local -static-libgcc LIBOMP_HAVE_STATIC_LIBGCC_FLAG)
diff --git openmp/runtime/cmake/config-ix.cmake openmp/runtime/cmake/config-ix.cmake
index 0fe1266b0067..d3806a446743 100644
--- openmp/runtime/cmake/config-ix.cmake
+++ openmp/runtime/cmake/config-ix.cmake
@@ -131,9 +131,8 @@ if(WIN32)
libomp_check_linker_flag(/SAFESEH LIBOMP_HAVE_SAFESEH_FLAG)
elseif(NOT APPLE)
libomp_check_linker_flag(-Wl,-x LIBOMP_HAVE_X_FLAG)
- libomp_check_linker_flag(-Wl,--warn-shared-textrel LIBOMP_HAVE_WARN_SHARED_TEXTREL_FLAG)
libomp_check_linker_flag(-Wl,--as-needed LIBOMP_HAVE_AS_NEEDED_FLAG)
- libomp_check_linker_flag("-Wl,--version-script=${LIBOMP_SRC_DIR}/exports_so.txt" LIBOMP_HAVE_VERSION_SCRIPT_FLAG)
+ libomp_check_linker_flag("-Wl,--version-script=${LIBOMP_SRC_DIR}/exports_test_so.txt" LIBOMP_HAVE_VERSION_SCRIPT_FLAG)
libomp_check_linker_flag(-static-libgcc LIBOMP_HAVE_STATIC_LIBGCC_FLAG)
libomp_check_linker_flag(-Wl,-z,noexecstack LIBOMP_HAVE_Z_NOEXECSTACK_FLAG)
endif()
diff --git openmp/runtime/src/exports_so.txt openmp/runtime/src/exports_so.txt
index ac188af31055..834c6118d820 100644
--- openmp/runtime/src/exports_so.txt
+++ openmp/runtime/src/exports_so.txt
@@ -71,10 +71,8 @@ VERSION {
__kmp_fork_call;
__kmp_invoke_microtask;
#if KMP_USE_MONITOR
- __kmp_launch_monitor;
__kmp_reap_monitor;
#endif
- __kmp_launch_worker;
__kmp_reap_worker;
__kmp_release_64;
__kmp_wait_64;
diff --git openmp/runtime/src/exports_test_so.txt openmp/runtime/src/exports_test_so.txt
new file mode 100644
index 000000000000..912d160e7c06
--- /dev/null
+++ openmp/runtime/src/exports_test_so.txt
@@ -0,0 +1,60 @@
+# exports_test_so.txt #
+
+#
+#//===----------------------------------------------------------------------===//
+#//
+#// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+#// See https://llvm.org/LICENSE.txt for license information.
+#// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+#//
+#//===----------------------------------------------------------------------===//
+#
+
+# This is used only to test if the linker supports version scripts. If the full
+# version script it used we may error on undefined symbols and erroneously fail.
+
+VERSION {
+
+ global: # Exported symbols.
+
+ *; # All symbols as exported for testing.
+
+ local: # Non-exported symbols.
+
+ *; # All other symbols are not exported.
+
+}; # VERSION
+
+# sets up GCC OMP_ version dependency chain
+OMP_1.0 {
+};
+OMP_2.0 {
+} OMP_1.0;
+OMP_3.0 {
+} OMP_2.0;
+OMP_3.1 {
+} OMP_3.0;
+OMP_4.0 {
+} OMP_3.1;
+OMP_4.5 {
+} OMP_4.0;
+OMP_5.0 {
+} OMP_4.5;
+
+# sets up GCC GOMP_ version dependency chain
+GOMP_1.0 {
+};
+GOMP_2.0 {
+} GOMP_1.0;
+GOMP_3.0 {
+} GOMP_2.0;
+GOMP_4.0 {
+} GOMP_3.0;
+GOMP_4.5 {
+} GOMP_4.0;
+GOMP_5.0 {
+} GOMP_4.5;
+GOMP_5.0.1 {
+} GOMP_5.0;
+
+# end of file #
diff --git openmp/runtime/src/kmp_runtime.cpp openmp/runtime/src/kmp_runtime.cpp
index e1af2f43dae7..3db713e8c88b 100644
--- openmp/runtime/src/kmp_runtime.cpp
+++ openmp/runtime/src/kmp_runtime.cpp
@@ -9156,3 +9156,20 @@ void __kmp_set_nesting_mode_threads() {
if (__kmp_nesting_mode == 1) // turn on nesting for this case only
set__max_active_levels(thread, __kmp_nesting_mode_nlevels);
}
+
+// Empty symbols to export (see exports_so.txt) when feature is disabled
+extern "C" {
+#if !KMP_STATS_ENABLED
+void __kmp_reset_stats() {}
+#endif
+#if !USE_DEBUGGER
+int __kmp_omp_debug_struct_info = FALSE;
+int __kmp_debugging = FALSE;
+#endif
+#if !USE_ITT_BUILD || !USE_ITT_NOTIFY
+void __kmp_itt_fini_ittlib() {}
+void __kmp_itt_init_ittlib() {}
+#endif
+}
+
+// end of file
diff --git openmp/runtime/src/kmp_utility.cpp openmp/runtime/src/kmp_utility.cpp
index 48d31e5ee7b7..5937f8026e39 100644
--- openmp/runtime/src/kmp_utility.cpp
+++ openmp/runtime/src/kmp_utility.cpp
@@ -403,3 +403,16 @@ void __kmp_expand_file_name(char *result, size_t rlen, char *pattern) {
*pos = '\0';
}
+
+#if !OMPT_SUPPORT
+extern "C" {
+typedef struct ompt_start_tool_result_t ompt_start_tool_result_t;
+// Define symbols expected by VERSION script
+ompt_start_tool_result_t *ompt_start_tool(unsigned int omp_version,
+ const char *runtime_version) {
+ return nullptr;
+}
+
+void ompt_libomp_connect(ompt_start_tool_result_t *result) { result = nullptr; }
+}
+#endif
diff --git openmp/runtime/src/z_Linux_util.cpp openmp/runtime/src/z_Linux_util.cpp
index 5cd6ad6a0339..f6cad7b5320a 100644
--- openmp/runtime/src/z_Linux_util.cpp
+++ openmp/runtime/src/z_Linux_util.cpp
@@ -987,7 +987,7 @@ void __kmp_exit_thread(int exit_status) {
#if KMP_USE_MONITOR
void __kmp_resume_monitor();
-void __kmp_reap_monitor(kmp_info_t *th) {
+extern "C" void __kmp_reap_monitor(kmp_info_t *th) {
int status;
void *exit_val;
@@ -1029,6 +1029,12 @@ void __kmp_reap_monitor(kmp_info_t *th) {
KMP_MB(); /* Flush all pending memory write invalidates. */
}
+#else
+// Empty symbol to export (see exports_so.txt) when
+// monitor thread feature is disabled
+extern "C" void __kmp_reap_monitor(kmp_info_t *th) {
+ (void)th;
+}
#endif // KMP_USE_MONITOR
void __kmp_reap_worker(kmp_info_t *th) {

View File

@ -206,10 +206,6 @@ EXTRAS_PATTERN= ${EXTRAS_COMMANDS:tW:C/ */|/g}|${EXTRAS_LIBS:tW:C/ */|/g}|${EX
.include <bsd.port.options.mk>
.if defined(PPC_ABI) && ${PPC_ABI} == ELFv2
EXTRA_PATCHES= ${FILESDIR}/extra-patch-clang_lib_Driver_ToolChains_Clang.cpp
.endif
# keep in sync with /usr/src/lib/clang/clang.build.mk
# ----------- start of sync block ------------------
# Armv6 and armv7 uses hard float abi, unless the CPUTYPE has soft in it.

View File

@ -234,10 +234,6 @@ MLIR_PATTERN= ${MLIR_COMMANDS:S/^/bin./:tW:C/ */|/g}|mlir|libMLIR|obj.MLIRCAP
.include <bsd.port.options.mk>
.if defined(PPC_ABI) && ${PPC_ABI} == ELFv2
EXTRA_PATCHES= ${FILESDIR}/extra-patch-clang_lib_Driver_ToolChains_Clang.cpp
.endif
# keep in sync with /usr/src/lib/clang/clang.build.mk
# ----------- start of sync block ------------------
# Armv6 and armv7 uses hard float abi, unless the CPUTYPE has soft in it.

View File

@ -256,10 +256,6 @@ MLIR_PATTERN= ${MLIR_COMMANDS:S/^/bin./:tW:C/ */|/g}|mlir|libMLIR|obj.MLIRCAP
.include <bsd.port.options.mk>
.if defined(PPC_ABI) && ${PPC_ABI} == ELFv2
EXTRA_PATCHES= ${FILESDIR}/extra-patch-clang_lib_Driver_ToolChains_Clang.cpp
.endif
# keep in sync with /usr/src/lib/clang/clang.build.mk
# ----------- start of sync block ------------------
# Armv6 and armv7 uses hard float abi, unless the CPUTYPE has soft in it.

View File

@ -1,7 +1,7 @@
PORTNAME= loguru
DISTVERSIONPREFIX= v
DISTVERSION= 2.1.0-21
DISTVERSIONSUFFIX= -g2295c2b
DISTVERSION= 2.1.0-49
DISTVERSIONSUFFIX= -g4adaa18
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1615223773
SHA256 (emilk-loguru-v2.1.0-21-g2295c2b_GH0.tar.gz) = fad5a5952526f679218358842b7e647d822f973af75ace706d9fc561a0605f7d
SIZE (emilk-loguru-v2.1.0-21-g2295c2b_GH0.tar.gz) = 246814
TIMESTAMP = 1704324051
SHA256 (emilk-loguru-v2.1.0-49-g4adaa18_GH0.tar.gz) = a3d602dd6023363bc3cabf433740b94b1bf2af300c983d530ef1895097fbf026
SIZE (emilk-loguru-v2.1.0-49-g4adaa18_GH0.tar.gz) = 253817

View File

@ -1,5 +1,5 @@
PORTNAME= marl
PORTVERSION= g20210818
PORTVERSION= g20231218
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org
@ -17,8 +17,9 @@ USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= google
GH_TAGNAME= 4960243
GH_TUPLE= google:googletest:fb49e6c:googletest/third_party/googletest
GH_TAGNAME= dbf097e
GH_TUPLE= google:benchmark:2dd015d:benchmark/third_party/benchmark \
google:googletest:fb49e6c:googletest/third_party/googletest
CMAKE_ON= MARL_BUILD_SHARED MARL_INSTALL
CMAKE_TESTING_ON= MARL_BUILD_TESTS MARL_BUILD_EXAMPLES # tests are built but not run, see https://github.com/google/marl/issues/205

View File

@ -1,5 +1,7 @@
TIMESTAMP = 1631469318
SHA256 (google-marl-g20210818-4960243_GH0.tar.gz) = 0afe4b5345a67e3a4a8eb1a6fbbf7e9ff6b56d0903bd767bb91c1171bdd0226f
SIZE (google-marl-g20210818-4960243_GH0.tar.gz) = 101005
TIMESTAMP = 1704327882
SHA256 (google-marl-g20231218-dbf097e_GH0.tar.gz) = 7420862dee528e77f4cf4cb0483da61f867683fcfe79918784a9a25089db4ec0
SIZE (google-marl-g20231218-dbf097e_GH0.tar.gz) = 108223
SHA256 (google-benchmark-2dd015d_GH0.tar.gz) = 8ba5709151bf1578c7599a6d7b535aaa3951515d9096e56973e3bb2dded46d83
SIZE (google-benchmark-2dd015d_GH0.tar.gz) = 204703
SHA256 (google-googletest-fb49e6c_GH0.tar.gz) = 9dea59892fff919ab6c005f36971e76b4bb4e399a6b22fbf85a30352d8a52be2
SIZE (google-googletest-fb49e6c_GH0.tar.gz) = 905489

View File

@ -16,6 +16,7 @@ include/marl/sanitizers.h
include/marl/scheduler.h
include/marl/task.h
include/marl/thread.h
include/marl/thread_local.h
include/marl/ticket.h
include/marl/trace.h
include/marl/tsa.h

View File

@ -1,7 +1,7 @@
PORTNAME= mongo-c-driver
DISTVERSION= 1.25.3
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= https://codeload.github.com/mongodb/${PORTNAME}/tar.gz/${DISTVERSION}?dummy=/
MAINTAINER= ports@bsdserwis.com
COMMENT= C Driver for MongoDB
@ -11,12 +11,18 @@ LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libbson-1.0.so:devel/libbson \
libutf8proc.so:textproc/utf8proc \
libzstd.so:archivers/zstd
USES= cmake cpe pathfix pkgconfig python:env
CPE_VENDOR= mongodb
PATHFIX_WRKSRC= ${WRKSRC}/src/libmongoc
USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= mongodb
GH_PROJECT= mongo-c-driver
CMAKE_ARGS= -DENABLE_ZLIB=SYSTEM
CMAKE_ON= ENABLE_MONGOC \
ENABLE_ZSTD \
@ -24,10 +30,11 @@ CMAKE_ON= ENABLE_MONGOC \
CMAKE_OFF= BUILD_TESTING \
ENABLE_EXAMPLES \
ENABLE_TESTS \
ENABLE_UNINSTALL
ENABLE_UNINSTALL \
USE_BUNDLED_UTF8PROC
OPTIONS_DEFINE= CRYPTOPROFILE DOCS ICU MONGODBAWS RDTSCP SASL SNAPPY \
SRV SSL UTF8PROC ZSTD
SRV SSL ZSTD
OPTIONS_DEFAULT= SSL
OPTIONS_SUB= yes
@ -35,7 +42,6 @@ CRYPTOPROFILE_DESC= Use system crypto profile (requires OpenSSL)
MONGODBAWS_DESC= Enable support for the MONGODB-AWS authentication mechanism
RDTSCP_DESC= Fast performance counters on Intel using the RDTSCP instruction
SRV_DESC= Enable support for mongodb+srv URIs
UTF8PROC_DESC= SCRAM-SHA-256 authentication with non-ASCII passwords (Use system utf8proc instead of bundled one)
CRYPTOPROFILE_CMAKE_ON= -DENABLE_CRYPTO_SYSTEM_PROFILE=ON
CRYPTOPROFILE_CMAKE_OFF= -DENABLE_CRYPTO_SYSTEM_PROFILE=OFF
@ -69,10 +75,6 @@ SRV_CMAKE_OFF= -DENABLE_SRV=OFF
SSL_USES= ssl
SSL_CMAKE_OFF= -DENABLE_SSL=OFF
UTF8PROC_LIB_DEPENDS= libutf8proc.so:textproc/utf8proc
UTF8PROC_CMAKE_ON= -DUSE_BUNDLED_UTF8PROC=OFF
UTF8PROC_CMAKE_OFF= -DUSE_BUNDLED_UTF8PROC=ON
ZSTD_LIB_DEPENDS= libzstd.so:archivers/zstd
ZSTD_CMAKE_ON= -DENABLE_ZSTD=ON
ZSTD_CMAKE_OFF= -DENABLE_ZSTD=OFF

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1703795554
SHA256 (mongo-c-driver-1.25.3.tar.gz) = d7cdedc5164b7b8ca39bb45bee789da44097052c882fa84996e4d90eec6fe8d3
SIZE (mongo-c-driver-1.25.3.tar.gz) = 7306922
TIMESTAMP = 1704141051
SHA256 (mongodb-mongo-c-driver-1.25.3_GH0.tar.gz) = d7cdedc5164b7b8ca39bb45bee789da44097052c882fa84996e4d90eec6fe8d3
SIZE (mongodb-mongo-c-driver-1.25.3_GH0.tar.gz) = 7306922

View File

@ -10,6 +10,9 @@ WWW= http://omniorb.sourceforge.net/
LICENSE= GPLv2
BROKEN_FreeBSD_armv7= use of overloaded operator '[]' is ambiguous (with operand types
BROKEN_FreeBSD_i386= use of overloaded operator '[]' is ambiguous (with operand types
LIB_DEPENDS= libzstd.so:archivers/zstd
USES= gmake pkgconfig python shebangfix ssl tar:bzip2

View File

@ -1,7 +1,7 @@
PORTNAME= pcg-cpp
DISTVERSIONPREFIX= v
DISTVERSION= 0.98.1-59
DISTVERSIONSUFFIX= -g5b5cac8
DISTVERSION= 0.98.1-70
DISTVERSIONSUFFIX= -g428802d
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1615225111
SHA256 (imneme-pcg-cpp-v0.98.1-59-g5b5cac8_GH0.tar.gz) = 35d2efafa991927098d94b8765e977da4b7cbe1573725feee640015ba711ac5b
SIZE (imneme-pcg-cpp-v0.98.1-59-g5b5cac8_GH0.tar.gz) = 77523
TIMESTAMP = 1704328330
SHA256 (imneme-pcg-cpp-v0.98.1-70-g428802d_GH0.tar.gz) = 59fc9dec4cb102ff0e6c7117df5827f42d12d8eabcb9833fdc20b4518b34f2a7
SIZE (imneme-pcg-cpp-v0.98.1-70-g428802d_GH0.tar.gz) = 78194

View File

@ -1,5 +1,5 @@
PORTNAME= argh
PORTVERSION= 0.30.5
PORTVERSION= 0.31.0
PORTREVISION= 0
CATEGORIES= devel
MASTER_SITES= PYPI
@ -12,11 +12,12 @@ WWW= https://github.com/neithere/argh
LICENSE= LGPL3
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flit-core>=3.2<4:devel/py-flit-core@${PY_FLAVOR}
# tests require tox >= 4.11.3
#TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-cov>=4.1:devel/py-pytest-cov@${PY_FLAVOR} \
# ${PYTHON_PKGNAMEPREFIX}tox>=4.11.3:devel/py-tox@${PY_FLAVOR}
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-cov>=4.1:devel/py-pytest-cov@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}tox>=4.11.3:devel/py-tox@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist pep517 # pytest
# tests: 169 passed, 1 warning
USE_PYTHON= autoplist pep517 pytest
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1703688437
SHA256 (argh-0.30.5.tar.gz) = b37dfd617a09d19a4a7bcaed0e060b288bc7ac8dfdc0facf886a49a25ff33728
SIZE (argh-0.30.5.tar.gz) = 63041
TIMESTAMP = 1704209957
SHA256 (argh-0.31.0.tar.gz) = b93093544309ddbfe6c73dc9bfd60dbc4acecef39f3f464774b3084a1ec5d7b0
SIZE (argh-0.31.0.tar.gz) = 65743

View File

@ -1,5 +1,5 @@
PORTNAME= poetry-plugin-export
DISTVERSION= 1.5.0
DISTVERSION= 1.6.0
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -12,7 +12,7 @@ WWW= https://python-poetry.org/
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
PY_DEPENDS= ${PYTHON_PKGNAMEPREFIX}poetry-core>=1.6.0:devel/py-poetry-core@${PY_FLAVOR}
PY_DEPENDS= ${PYTHON_PKGNAMEPREFIX}poetry-core>=1.7.0:devel/py-poetry-core@${PY_FLAVOR}
BUILD_DEPENDS= ${PY_DEPENDS}
RUN_DEPENDS= ${PY_DEPENDS}
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mypy>=0.971:devel/py-mypy@${PY_FLAVOR} \

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1692603556
SHA256 (poetry_plugin_export-1.5.0.tar.gz) = ecc8738da0c81c3758e36b4e72e04ae59648a547492af2ffe6245af3594bb00f
SIZE (poetry_plugin_export-1.5.0.tar.gz) = 28902
TIMESTAMP = 1704354807
SHA256 (poetry_plugin_export-1.6.0.tar.gz) = 091939434984267a91abf2f916a26b00cff4eee8da63ec2a24ba4b17cf969a59
SIZE (poetry_plugin_export-1.6.0.tar.gz) = 29265

View File

@ -1,5 +1,5 @@
PORTNAME= python-dbusmock
PORTVERSION= 0.30.0
PORTVERSION= 0.30.2
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1702459004
SHA256 (python-dbusmock-0.30.0.tar.gz) = dbb59e715b4d88089caed950edf93c46cb5f022ceae5d8ae37064b73baf956c1
SIZE (python-dbusmock-0.30.0.tar.gz) = 98201
TIMESTAMP = 1704319492
SHA256 (python-dbusmock-0.30.2.tar.gz) = 1d7b3794af7b280942f7f6cda4d8bb5d17d8c7216000825cf8b43b6af8792d7d
SIZE (python-dbusmock-0.30.2.tar.gz) = 98188

View File

@ -1,5 +1,5 @@
PORTNAME= rapidfuzz
DISTVERSION= 3.5.2
DISTVERSION= 3.6.1
CATEGORIES= devel
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

Some files were not shown because too many files have changed in this diff Show More