sync ports with The Matrix
This commit is contained in:
parent
d97ea2d955
commit
6dacb122d0
148 changed files with 6228 additions and 2485 deletions
|
@ -1,6 +1,8 @@
|
||||||
COMMENT= database drivers for Sybase/Microsoft SQL Server
|
COMMENT= database drivers for Sybase/Microsoft SQL Server
|
||||||
|
|
||||||
DISTNAME= freetds-1.3.20
|
DISTNAME= freetds-1.4
|
||||||
|
# 1.4 was rerolled
|
||||||
|
DISTFILES= freetds-1.4-0{freetds-1.4}.tar.gz
|
||||||
|
|
||||||
SHARED_LIBS += ct 6.1 # 4.0
|
SHARED_LIBS += ct 6.1 # 4.0
|
||||||
SHARED_LIBS += sybdb 8.1 # 6.0
|
SHARED_LIBS += sybdb 8.1 # 6.0
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
SHA256 (freetds-1.3.20.tar.gz) = CukG4Yc+neqc6ufAeIo6q7/qeBDn2hn6WYH5a7vI92Y=
|
SHA256 (freetds-1.4-0.tar.gz) = BSFF4IfN6bsNNbmQEAkCj03gp32ev/GrFvrCEX7MY9I=
|
||||||
SIZE (freetds-1.3.20.tar.gz) = 3063826
|
SIZE (freetds-1.4-0.tar.gz) = 3288184
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
CATEGORIES = databases
|
CATEGORIES = databases
|
||||||
V = 7.48
|
V = 7.49
|
||||||
DISTNAME = sqlports-$V
|
DISTNAME = sqlports-$V
|
||||||
DISTFILES =
|
DISTFILES =
|
||||||
COMMENT-main = sqlite database of ports
|
COMMENT-main = sqlite database of ports
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $OpenBSD: Var.pm,v 1.73 2023/09/06 21:07:16 espie Exp $
|
# $OpenBSD: Var.pm,v 1.74 2023/09/25 17:10:44 espie Exp $
|
||||||
#
|
#
|
||||||
# Copyright (c) 2006-2010 Marc Espie <espie@openbsd.org>
|
# Copyright (c) 2006-2010 Marc Espie <espie@openbsd.org>
|
||||||
#
|
#
|
||||||
|
@ -910,20 +910,6 @@ sub table($) { 'ConfigureArgs' }
|
||||||
package DebugConfigureArgsVar;
|
package DebugConfigureArgsVar;
|
||||||
our @ISA = qw(ConfigureArgsVar);
|
our @ISA = qw(ConfigureArgsVar);
|
||||||
sub table($) { 'DebugConfigureArgs' }
|
sub table($) { 'DebugConfigureArgs' }
|
||||||
package Sql::Column::View::WithSite;
|
|
||||||
our @ISA = qw(Sql::Column::View::Expr);
|
|
||||||
|
|
||||||
sub expr($self)
|
|
||||||
{
|
|
||||||
my $c = $self->column;
|
|
||||||
my $n = $self->column("N");
|
|
||||||
return
|
|
||||||
qq{CASE 1
|
|
||||||
WHEN $n IS NULL THEN $c
|
|
||||||
ELSE $c||':'||$n
|
|
||||||
END
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
package DistfilesVar;
|
package DistfilesVar;
|
||||||
our @ISA = qw(ListVar);
|
our @ISA = qw(ListVar);
|
||||||
|
@ -932,25 +918,16 @@ sub table($) { 'Distfiles' }
|
||||||
sub match($) { 0 }
|
sub match($) { 0 }
|
||||||
sub want_in_ports_view($) { 0 }
|
sub want_in_ports_view($) { 0 }
|
||||||
|
|
||||||
sub _add($self, $ins, $value, $num)
|
sub add_value($self, $ins, $value, @extra)
|
||||||
{
|
{
|
||||||
my $sufx;
|
my $sufx;
|
||||||
if ($self->var =~ m/^(?:DISTFILES|SUPDISTFILES|PATCHFILES)(.+)$/) {
|
if ($self->var =~ m/^(?:DISTFILES|SUPDISTFILES|PATCHFILES)(.+)$/) {
|
||||||
$sufx = $1;
|
$sufx = $1;
|
||||||
}
|
}
|
||||||
$self->normal_insert($ins, $self->keyword($ins, $value), $num,
|
$self->normal_insert($ins, $self->keyword($ins, $value),
|
||||||
$sufx, $self->match);
|
$sufx, $self->match);
|
||||||
}
|
}
|
||||||
|
|
||||||
sub add_value($self, $ins, $value, @extra)
|
|
||||||
{
|
|
||||||
if ($value =~ m/^(.*?)\:(\d)$/) {
|
|
||||||
$self->_add($ins, $1, $2);
|
|
||||||
} else {
|
|
||||||
$self->_add($ins, $value, undef);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
sub create_tables($self, $inserter)
|
sub create_tables($self, $inserter)
|
||||||
{
|
{
|
||||||
my $t = $self->table_name($self->table);
|
my $t = $self->table_name($self->table);
|
||||||
|
@ -958,15 +935,13 @@ sub create_tables($self, $inserter)
|
||||||
$self->create_table(
|
$self->create_table(
|
||||||
$self->fullpkgpath,
|
$self->fullpkgpath,
|
||||||
Sql::Column::Integer->new("Value")->references($k)->constraint,
|
Sql::Column::Integer->new("Value")->references($k)->constraint,
|
||||||
Sql::Column::Integer->new("N")->constraint,
|
|
||||||
Sql::Column::Text->new("SUFX")->constraint,
|
Sql::Column::Text->new("SUFX")->constraint,
|
||||||
Sql::Column::Integer->new("Type")->constraint->notnull);
|
Sql::Column::Integer->new("Type")->constraint->notnull);
|
||||||
|
|
||||||
$self->create_view(
|
$self->create_view(
|
||||||
$self->pathref,
|
$self->pathref,
|
||||||
Sql::Column::View::WithSite->new("Value")->join(Sql::Join->new($k)
|
Sql::Column::View->new("Value")->join(Sql::Join->new($k)
|
||||||
->add(Sql::Equal->new("KeyRef", "Value"))),
|
->add(Sql::Equal->new("KeyRef", "Value"))),
|
||||||
Sql::Column::View->new("N"),
|
|
||||||
Sql::Column::View->new("Sufx"),
|
Sql::Column::View->new("Sufx"),
|
||||||
Sql::Column::View->new("Type"));
|
Sql::Column::View->new("Type"));
|
||||||
$inserter->make_ordered_view($self);
|
$inserter->make_ordered_view($self);
|
||||||
|
@ -977,7 +952,7 @@ sub subselect($self)
|
||||||
my $t = $self->table_name($self->table);
|
my $t = $self->table_name($self->table);
|
||||||
my $k = $self->keyword_table;
|
my $k = $self->keyword_table;
|
||||||
return (Sql::Column::View->new('FullPkgPath'),
|
return (Sql::Column::View->new('FullPkgPath'),
|
||||||
Sql::Column::View::WithSite->new("Value")->join(Sql::Join->new($k)
|
Sql::Column::View->new("Value")->join(Sql::Join->new($k)
|
||||||
->add(Sql::Equal->new("KeyRef", "Value"))),
|
->add(Sql::Equal->new("KeyRef", "Value"))),
|
||||||
Sql::Column::View->new("Sufx"),
|
Sql::Column::View->new("Sufx"),
|
||||||
Sql::Column::View->new("Type"),
|
Sql::Column::View->new("Type"),
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.\" $OpenBSD: sqlports.5,v 1.11 2023/09/06 11:56:34 espie Exp $
|
.\" $OpenBSD: sqlports.5,v 1.12 2023/09/25 17:10:44 espie Exp $
|
||||||
.\"
|
.\"
|
||||||
.\" Copyright (c) 2020 Marc Espie <espie@openbsd.org>
|
.\" Copyright (c) 2020 Marc Espie <espie@openbsd.org>
|
||||||
.\"
|
.\"
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||||
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
.\"
|
.\"
|
||||||
.Dd $Mdocdate: September 6 2023 $
|
.Dd $Mdocdate: September 25 2023 $
|
||||||
.Dt SQLPORTS 5
|
.Dt SQLPORTS 5
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
|
@ -147,7 +147,7 @@ FULLDEPENDS is the full text of the dependency, which parses as DEPENDSPATH,
|
||||||
the actual PKGPATH we depend upon, PKGSPEC, the spec we depend upon
|
the actual PKGPATH we depend upon, PKGSPEC, the spec we depend upon
|
||||||
(if explicit), and REST the remainder of the text (things like :configure and
|
(if explicit), and REST the remainder of the text (things like :configure and
|
||||||
such).
|
such).
|
||||||
.It _Distfiles(FULLPKGPATH, VALUE, N, Sufx, Type)
|
.It _Distfiles(FULLPKGPATH, VALUE, Sufx, Type)
|
||||||
All distfiles/patchfiles/supdistfiles are stored in a single table, with Type
|
All distfiles/patchfiles/supdistfiles are stored in a single table, with Type
|
||||||
.Bl -tag -width 10 -offset indent -compact
|
.Bl -tag -width 10 -offset indent -compact
|
||||||
.It 0
|
.It 0
|
||||||
|
@ -157,7 +157,6 @@ patchfiles
|
||||||
.It 2
|
.It 2
|
||||||
supdistfiles
|
supdistfiles
|
||||||
.El
|
.El
|
||||||
Note that N is :N from Sites, those are not considered ordered lists.
|
|
||||||
.It _DPBProperties (FULLPKGPATH, VALUE, N)
|
.It _DPBProperties (FULLPKGPATH, VALUE, N)
|
||||||
.It _Wantlib(FULLPKGPATH, VALUE, EXTRA)
|
.It _Wantlib(FULLPKGPATH, VALUE, EXTRA)
|
||||||
All the libraries the FULLPKGPATH depends upon, with optional version
|
All the libraries the FULLPKGPATH depends upon, with optional version
|
||||||
|
|
|
@ -22,8 +22,8 @@ WANTLIB += xcb-sync xcb-xfixes xshmfence z
|
||||||
|
|
||||||
COMPILER = base-clang ports-gcc base-gcc
|
COMPILER = base-clang ports-gcc base-gcc
|
||||||
|
|
||||||
MASTER_SITES = ${HOMEPAGE}raw-attachment/wiki/download/
|
SITES = ${HOMEPAGE}raw-attachment/wiki/download/
|
||||||
MASTER_SITES0 = http://www.linklevel.net/distfiles/
|
SITES.sfx = http://www.linklevel.net/distfiles/
|
||||||
|
|
||||||
LIB_DEPENDS = converters/libiconv \
|
LIB_DEPENDS = converters/libiconv \
|
||||||
devel/sdl-mixer \
|
devel/sdl-mixer \
|
||||||
|
@ -33,8 +33,8 @@ LIB_DEPENDS = converters/libiconv \
|
||||||
audio/libmikmod \
|
audio/libmikmod \
|
||||||
audio/libvorbis
|
audio/libvorbis
|
||||||
|
|
||||||
DISTFILES = ${DISTNAME}.tar.gz \
|
DISTFILES = ${DISTNAME}.tar.gz
|
||||||
${ABUSE_SFX}.tar.gz:0
|
DISTFILES.sfx = ${ABUSE_SFX}.tar.gz
|
||||||
|
|
||||||
SEPARATE_BUILD =Yes
|
SEPARATE_BUILD =Yes
|
||||||
|
|
||||||
|
|
|
@ -4,14 +4,14 @@ CATEGORIES = games
|
||||||
|
|
||||||
MAINTAINER = Peter Hessler <phessler@openbsd.org>
|
MAINTAINER = Peter Hessler <phessler@openbsd.org>
|
||||||
|
|
||||||
MASTER_SITES = http://trilogyrelease.bungie.org/files/
|
SITES = http://trilogyrelease.bungie.org/files/
|
||||||
MASTER_SITES0 = ftp://ftp2.fileball.net/fileball/marathon/aleph1/alterations/
|
SITES.a = ftp://ftp2.fileball.net/fileball/marathon/aleph1/alterations/
|
||||||
MASTER_SITES1 = http://www.lhowon.org/
|
SITES.b = http://www.lhowon.org/
|
||||||
MASTER_SITES2 = http://nardofiles.bungie.org/
|
SITES.c = http://nardofiles.bungie.org/
|
||||||
MASTER_SITES3 = http://www.appleswitch.com/uploads/
|
SITES.d = http://www.appleswitch.com/uploads/
|
||||||
MASTER_SITES4 = http://archives2.bungie.org/manuals/
|
SITES.e = http://archives2.bungie.org/manuals/
|
||||||
MASTER_SITES5 = http://files3.bungie.org/trilogy/
|
SITES.f = http://files3.bungie.org/trilogy/
|
||||||
MASTER_SITES6 = https://github.com/Aleph-One-Marathon/alephone/releases/download/release-${V}/
|
SITES.g = https://github.com/Aleph-One-Marathon/alephone/releases/download/release-${V}/
|
||||||
|
|
||||||
RUN_DEPENDS = games/alephone/alephone
|
RUN_DEPENDS = games/alephone/alephone
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,8 @@ V = 0.0.20090509
|
||||||
DISTNAME = marathon-evil-${V}
|
DISTNAME = marathon-evil-${V}
|
||||||
HOMEPAGE = http://bighouse.bungie.org/evil/
|
HOMEPAGE = http://bighouse.bungie.org/evil/
|
||||||
|
|
||||||
DISTFILES = MarathonEvil.zip:5
|
DISTFILES =
|
||||||
|
DISTFILES.f = MarathonEvil.zip
|
||||||
|
|
||||||
## You may, however, freely distribute this adventure as a whole, unaltered,
|
## You may, however, freely distribute this adventure as a whole, unaltered,
|
||||||
## adventure to anyone and any place.
|
## adventure to anyone and any place.
|
||||||
|
|
|
@ -5,13 +5,14 @@ V = 20200904
|
||||||
DISTNAME = marathon-0.0.${V}
|
DISTNAME = marathon-0.0.${V}
|
||||||
HOMEPAGE = https://alephone.lhowon.org/games/marathon.html
|
HOMEPAGE = https://alephone.lhowon.org/games/marathon.html
|
||||||
|
|
||||||
DISTFILES = Marathon-${V}-Data.zip:6
|
DISTFILES =
|
||||||
DISTFILES += Marathon_Manual.pdf:4
|
DISTFILES.g = Marathon-${V}-Data.zip
|
||||||
|
DISTFILES.e = Marathon_Manual.pdf
|
||||||
|
|
||||||
# http://trilogyrelease.bungie.org/faq.html
|
# http://trilogyrelease.bungie.org/faq.html
|
||||||
PERMIT_PACKAGE = YES
|
PERMIT_PACKAGE = YES
|
||||||
|
|
||||||
EXTRACT_ONLY = Marathon-${V}-Data.zip
|
EXTRACT_ONLY = ${DISTFILES.g}
|
||||||
INSTALL_LOC = ${PREFIX}/share/alephone
|
INSTALL_LOC = ${PREFIX}/share/alephone
|
||||||
INSTALL_M = ${INSTALL_LOC}/Marathon
|
INSTALL_M = ${INSTALL_LOC}/Marathon
|
||||||
|
|
||||||
|
|
|
@ -6,13 +6,14 @@ DISTNAME= marathon2-0.0.${V}
|
||||||
PKGNAME= marathon2-0.0.${V}
|
PKGNAME= marathon2-0.0.${V}
|
||||||
HOMEPAGE= https://alephone.lhowon.org/games/marathon2.html
|
HOMEPAGE= https://alephone.lhowon.org/games/marathon2.html
|
||||||
|
|
||||||
DISTFILES= Marathon2-${V}-Data.zip:6
|
DISTFILES=
|
||||||
DISTFILES += Marathon_2_Manual.pdf:4
|
DISTFILES.g= Marathon2-${V}-Data.zip
|
||||||
|
DISTFILES.e = Marathon_2_Manual.pdf
|
||||||
|
|
||||||
# http://trilogyrelease.bungie.org/faq.html
|
# http://trilogyrelease.bungie.org/faq.html
|
||||||
PERMIT_PACKAGE= YES
|
PERMIT_PACKAGE= YES
|
||||||
|
|
||||||
EXTRACT_ONLY = Marathon2-${V}-Data.zip
|
EXTRACT_ONLY = ${DISTFILES.g}
|
||||||
INSTALL_LOC= ${PREFIX}/share/alephone
|
INSTALL_LOC= ${PREFIX}/share/alephone
|
||||||
INSTALL_M2= ${INSTALL_LOC}/Marathon2
|
INSTALL_M2= ${INSTALL_LOC}/Marathon2
|
||||||
|
|
||||||
|
|
|
@ -6,13 +6,14 @@ DISTNAME = marathoninfinity-0.0.${V}
|
||||||
PKGNAME = marathoninfinity-0.0.${V}
|
PKGNAME = marathoninfinity-0.0.${V}
|
||||||
HOMEPAGE = https://alephone.lhowon.org/games/infinity.html
|
HOMEPAGE = https://alephone.lhowon.org/games/infinity.html
|
||||||
|
|
||||||
DISTFILES = MarathonInfinity-${V}-Data.zip:6
|
DISTFILES =
|
||||||
DISTFILES += Trilogy_Manual.pdf:4
|
DISTFILES.g = MarathonInfinity-${V}-Data.zip
|
||||||
|
DISTFILES.e = Trilogy_Manual.pdf
|
||||||
|
|
||||||
# http://trilogyrelease.bungie.org/faq.html
|
# http://trilogyrelease.bungie.org/faq.html
|
||||||
PERMIT_PACKAGE = YES
|
PERMIT_PACKAGE = YES
|
||||||
|
|
||||||
EXTRACT_ONLY = MarathonInfinity-${V}-Data.zip
|
EXTRACT_ONLY = ${DISTFILES.g}
|
||||||
INSTALL_LOC = ${PREFIX}/share/alephone
|
INSTALL_LOC = ${PREFIX}/share/alephone
|
||||||
INSTALL_MI = ${INSTALL_LOC}/Infinity
|
INSTALL_MI = ${INSTALL_LOC}/Infinity
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,8 @@ V = 0.0.20090509
|
||||||
DISTNAME = marathon-red-${V}
|
DISTNAME = marathon-red-${V}
|
||||||
HOMEPAGE = http://bighouse.bungie.org/red/
|
HOMEPAGE = http://bighouse.bungie.org/red/
|
||||||
|
|
||||||
DISTFILES = MarathonRED.zip:5
|
DISTFILES =
|
||||||
|
DISTFILES.f = MarathonRED.zip
|
||||||
|
|
||||||
PERMIT_PACKAGE = YES
|
PERMIT_PACKAGE = YES
|
||||||
|
|
||||||
|
|
|
@ -15,9 +15,9 @@ MAINTAINER = David Carlier <devnexen@gmail.com>
|
||||||
PERMIT_PACKAGE = Yes
|
PERMIT_PACKAGE = Yes
|
||||||
|
|
||||||
RAPIDJSON_V = 1.1.0
|
RAPIDJSON_V = 1.1.0
|
||||||
MASTER_SITES0 = https://github.com/Tencent/rapidjson/archive/
|
SITES.json = https://github.com/Tencent/rapidjson/archive/
|
||||||
DISTFILES += Barony-${V}.tar.gz \
|
DISTFILES += Barony-${V}.tar.gz
|
||||||
rapidjson-{}v${RAPIDJSON_V}.tar.gz:0
|
DISTFILES.json = rapidjson-{}v${RAPIDJSON_V}.tar.gz
|
||||||
|
|
||||||
WANTLIB += ${COMPILER_LIBCXX} GL GLU SDL2 SDL2_image SDL2_net
|
WANTLIB += ${COMPILER_LIBCXX} GL GLU SDL2 SDL2_image SDL2_net
|
||||||
WANTLIB += SDL2_ttf c execinfo m ogg openal png vorbisfile physfs
|
WANTLIB += SDL2_ttf c execinfo m ogg openal png vorbisfile physfs
|
||||||
|
|
|
@ -8,11 +8,11 @@ GH_TAGNAME = 1.5.1
|
||||||
|
|
||||||
MAINTAINER = Brian Callahan <bcallah@openbsd.org>
|
MAINTAINER = Brian Callahan <bcallah@openbsd.org>
|
||||||
|
|
||||||
MASTER_SITES0 = ${MASTER_SITES_GITHUB}
|
SITES = ${SITES_GITHUB}
|
||||||
MASTER_SITES1 = https://github.com/diasurgical/devilutionX/releases/download/${GH_TAGNAME}/
|
SITES.a = https://github.com/diasurgical/devilutionX/releases/download/${GH_TAGNAME}/
|
||||||
|
|
||||||
DISTFILES = ${GH_DISTFILE}:0 \
|
DISTFILES = ${GH_DISTFILE}
|
||||||
devilutionx-src-${GH_TAGNAME}{devilutionx-src}.tar.xz:1
|
DISTFILES.a = devilutionx-src-${GH_TAGNAME}{devilutionx-src}.tar.xz
|
||||||
|
|
||||||
# Sustainable Use License 1.0
|
# Sustainable Use License 1.0
|
||||||
PERMIT_PACKAGE = Yes
|
PERMIT_PACKAGE = Yes
|
||||||
|
|
|
@ -7,7 +7,8 @@ EXTRACT_SUFX = .zip
|
||||||
CATEGORIES = games
|
CATEGORIES = games
|
||||||
|
|
||||||
|
|
||||||
DISTFILES = doom_v18${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}:0
|
DISTFILES = doom_v18${EXTRACT_SUFX}
|
||||||
|
DISTFILES.19 = ${DISTNAME}${EXTRACT_SUFX}
|
||||||
|
|
||||||
MAINTAINER = Paul de Weerd <weerd@weirdnet.nl>
|
MAINTAINER = Paul de Weerd <weerd@weirdnet.nl>
|
||||||
|
|
||||||
|
@ -17,8 +18,8 @@ PKG_ARCH = *
|
||||||
PERMIT_PACKAGE = Yes
|
PERMIT_PACKAGE = Yes
|
||||||
|
|
||||||
# 1.8 first so 1.9 files are preferred
|
# 1.8 first so 1.9 files are preferred
|
||||||
MASTER_SITES = http://www.gamers.org/pub/idgames/historic/
|
SITES = http://www.gamers.org/pub/idgames/historic/
|
||||||
MASTER_SITES0 = http://www.gamers.org/pub/idgames/idstuff/doom/
|
SITES.19 = http://www.gamers.org/pub/idgames/idstuff/doom/
|
||||||
|
|
||||||
WRKSRC = ${WRKDIR}
|
WRKSRC = ${WRKDIR}
|
||||||
|
|
||||||
|
|
|
@ -5,16 +5,16 @@ CATEGORIES = games
|
||||||
|
|
||||||
HOMEPAGE = https://nongnu.org/eliot/
|
HOMEPAGE = https://nongnu.org/eliot/
|
||||||
|
|
||||||
MASTER_SITES = http://dl.sv.nongnu.org/releases/eliot/releases/${V}/
|
SITES = http://dl.sv.nongnu.org/releases/eliot/releases/${V}/
|
||||||
|
|
||||||
EXTRACT_ONLY = ${DISTNAME}${EXTRACT_SUFX}
|
EXTRACT_ONLY = ${DISTFILES}
|
||||||
DISTFILES += ${DISTNAME}${EXTRACT_SUFX}
|
DISTFILES += ${DISTNAME}${EXTRACT_SUFX}
|
||||||
DIST_SUBDIR = eliot
|
DIST_SUBDIR = eliot
|
||||||
DICTS = danosc eliot-dic-cs eliot-dic-fr lex-fise rak sowpods06 twl06
|
DICTS = danosc eliot-dic-cs eliot-dic-fr lex-fise rak sowpods06 twl06
|
||||||
.for dict in ${DICTS}
|
.for dict in ${DICTS}
|
||||||
DISTFILES+= ${dict}.dawg:0
|
DISTFILES.dict+= ${dict}.dawg
|
||||||
.endfor
|
.endfor
|
||||||
MASTER_SITES0 = ${MASTER_SITE_SAVANNAH:=eliot/dict/}
|
SITES.dict = ${SITE_SAVANNAH:=eliot/dict/}
|
||||||
|
|
||||||
# GPLv2
|
# GPLv2
|
||||||
PERMIT_PACKAGE = Yes
|
PERMIT_PACKAGE = Yes
|
||||||
|
|
|
@ -25,12 +25,12 @@ WANTLIB += vulkan z
|
||||||
RPAVLIK_CMAKE_MOD = 7cef9577d6fc35057ea57f46b4986a8a28aeff50
|
RPAVLIK_CMAKE_MOD = 7cef9577d6fc35057ea57f46b4986a8a28aeff50
|
||||||
LIBROCKET = ecd648a43aff8a9f3daf064d75ca5725237d5b38
|
LIBROCKET = ecd648a43aff8a9f3daf064d75ca5725237d5b38
|
||||||
|
|
||||||
MASTER_SITES0 = https://github.com/asarium/cmake-modules/archive/
|
SITES.a = https://github.com/asarium/cmake-modules/archive/
|
||||||
MASTER_SITES1 = https://github.com/asarium/libRocket/archive/
|
SITES.b = https://github.com/asarium/libRocket/archive/
|
||||||
|
|
||||||
DISTFILES = ${DISTNAME}${EXTRACT_SUFX} \
|
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
||||||
${RPAVLIK_CMAKE_MOD}.tar.gz:0 \
|
DISTFILES.a = ${RPAVLIK_CMAKE_MOD}.tar.gz
|
||||||
${LIBROCKET}.tar.gz:1
|
DISTFILES.b = ${LIBROCKET}.tar.gz
|
||||||
|
|
||||||
DIST_SUBDIR = fs2open-${V}
|
DIST_SUBDIR = fs2open-${V}
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,7 @@ WANTLIB-tools = ${WANTLIB}
|
||||||
# C++14
|
# C++14
|
||||||
COMPILER = base-clang ports-gcc
|
COMPILER = base-clang ports-gcc
|
||||||
|
|
||||||
MASTER_SITES = https://downloads.tuxfamily.org/godotengine/${V}/
|
SITES = https://downloads.tuxfamily.org/godotengine/${V}/
|
||||||
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
||||||
EXTRACT_SUFX = .tar.xz
|
EXTRACT_SUFX = .tar.xz
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,8 @@ REVISION = 6
|
||||||
|
|
||||||
WANTLIB += ${COMPILER_LIBCXX} X11 m
|
WANTLIB += ${COMPILER_LIBCXX} X11 m
|
||||||
|
|
||||||
DISTFILES ?= ${DISTNAME}${EXTRACT_SUFX} \
|
DISTFILES ?= ${DISTNAME}${EXTRACT_SUFX}
|
||||||
m2repo-libgdx-${VERSION}-tools-p0.tar.gz:0
|
DISTFILES.a ?= m2repo-libgdx-${VERSION}-tools-p0.tar.gz
|
||||||
|
|
||||||
post-install:
|
post-install:
|
||||||
${INSTALL_SCRIPT} ${FILESDIR}/libgdx-run.sh ${PREFIX}/bin/libgdx-run
|
${INSTALL_SCRIPT} ${FILESDIR}/libgdx-run.sh ${PREFIX}/bin/libgdx-run
|
||||||
|
|
|
@ -3,7 +3,8 @@ REVISION = 1
|
||||||
|
|
||||||
WANTLIB += ${COMPILER_LIBCXX} X11 m
|
WANTLIB += ${COMPILER_LIBCXX} X11 m
|
||||||
|
|
||||||
DISTFILES ?= ${DISTNAME}${EXTRACT_SUFX} \
|
DISTFILES ?= ${DISTNAME}${EXTRACT_SUFX}
|
||||||
m2repo-libgdx-${VERSION}-tools-p0.tar.gz:0
|
|
||||||
|
DISTFILES.a ?= m2repo-libgdx-${VERSION}-tools-p0.tar.gz
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
|
|
@ -20,10 +20,10 @@ MAINTAINER ?= Thomas Frohwein <thfr@openbsd.org>
|
||||||
# Eclipse Public License (junit)
|
# Eclipse Public License (junit)
|
||||||
PERMIT_PACKAGE ?= Yes
|
PERMIT_PACKAGE ?= Yes
|
||||||
|
|
||||||
MASTER_SITES0 ?= https://thfr.info/distfiles/
|
SITES.a ?= https://thfr.info/distfiles/
|
||||||
|
|
||||||
DISTFILES ?= ${DISTNAME}${EXTRACT_SUFX} \
|
DISTFILES ?= ${DISTNAME}${EXTRACT_SUFX}
|
||||||
m2repo-libgdx-${VERSION}-tools.tar.gz:0
|
DISTFILES.a ?= m2repo-libgdx-${VERSION}-tools.tar.gz
|
||||||
|
|
||||||
DIST_SUBDIR ?= libgdx
|
DIST_SUBDIR ?= libgdx
|
||||||
|
|
||||||
|
|
|
@ -33,18 +33,16 @@ MAINTAINER = Kurt Mosiejczuk <kmos@openbsd.org>
|
||||||
|
|
||||||
COMPILER = base-clang ports-gcc
|
COMPILER = base-clang ports-gcc
|
||||||
|
|
||||||
EXTRACT_ONLY = ${DISTNAME}.tar.gz
|
EXTRACT_ONLY = ${DISTFILES}
|
||||||
|
|
||||||
# Build downloads kotlin compiler and libraries from maven if not available
|
# Build downloads kotlin compiler and libraries from maven if not available
|
||||||
|
|
||||||
DISTFILES += ${DISTNAME}.tar.gz \
|
DISTFILES = ${DISTNAME}.tar.gz
|
||||||
kotlin-compiler-${KOTLIN_V}.zip:1 \
|
DISTFILES.c = kotlin-compiler-${KOTLIN_V}.zip
|
||||||
lwjgl3-maven-20210208.tar.gz:2
|
DISTFILES.m = lwjgl3-maven-20210208.tar.gz
|
||||||
MASTER_SITES = \
|
SITES = https://github.com/kmosiejczuk/lwjgl3/releases/download/${V}/
|
||||||
https://github.com/kmosiejczuk/lwjgl3/releases/download/${V}/
|
SITES.c = https://github.com/JetBrains/kotlin/releases/download/v${KOTLIN_V}/
|
||||||
MASTER_SITES1 = \
|
SITES.m = https://kurt.mosiejcz.uk/pub/distfiles/
|
||||||
https://github.com/JetBrains/kotlin/releases/download/v${KOTLIN_V}/
|
|
||||||
MASTER_SITES2 = https://kurt.mosiejcz.uk/pub/distfiles/
|
|
||||||
|
|
||||||
# BSD
|
# BSD
|
||||||
PERMIT_PACKAGE = Yes
|
PERMIT_PACKAGE = Yes
|
||||||
|
|
|
@ -3,11 +3,11 @@ GH_PROJECT = megaglest-source
|
||||||
PKGNAME = megaglest-${GH_TAGNAME}
|
PKGNAME = megaglest-${GH_TAGNAME}
|
||||||
REVISION = 7
|
REVISION = 7
|
||||||
|
|
||||||
MASTER_SITES0 = https://github.com/MegaGlest/megaglest-source/commit/
|
SITES.p = https://github.com/MegaGlest/megaglest-source/commit/
|
||||||
PATCHFILES = 789e1cdf.patch:0 \
|
PATCHFILES.p = 789e1cdf.patch \
|
||||||
5801b1fa.patch:0 \
|
5801b1fa.patch \
|
||||||
412b37d0.patch:0 \
|
412b37d0.patch \
|
||||||
e09ba53c.patch:0
|
e09ba53c.patch
|
||||||
PATCH_DIST_STRIP = -p1
|
PATCH_DIST_STRIP = -p1
|
||||||
|
|
||||||
WANTLIB += ${COMPILER_LIBCXX} GL GLEW GLU ICE SDL2 SM X11 Xext
|
WANTLIB += ${COMPILER_LIBCXX} GL GLEW GLU ICE SDL2 SM X11 Xext
|
||||||
|
|
|
@ -12,15 +12,15 @@ MAINTAINER = Tom Murphy <openbsd@pertho.net>
|
||||||
|
|
||||||
QWP_COMMIT = 0023db327bc1db00068284b70e1db45857aeee35
|
QWP_COMMIT = 0023db327bc1db00068284b70e1db45857aeee35
|
||||||
QWP_VERSION = 20120131
|
QWP_VERSION = 20120131
|
||||||
MASTER_SITES0 = https://raw.githubusercontent.com/id-Software/Quake/${QWP_COMMIT}/QW/progs/
|
SITES.a = https://raw.githubusercontent.com/id-Software/Quake/${QWP_COMMIT}/QW/progs/
|
||||||
|
|
||||||
# GPLv2+
|
# GPLv2+
|
||||||
PERMIT_PACKAGE = Yes
|
PERMIT_PACKAGE = Yes
|
||||||
|
|
||||||
WANTLIB += c curl m pcre pthread
|
WANTLIB += c curl m pcre pthread
|
||||||
|
|
||||||
DISTFILES = mvdsv-{}${GH_TAGNAME}.tar.gz \
|
DISTFILES = mvdsv-{}${GH_TAGNAME}.tar.gz
|
||||||
qwprogs-${QWP_VERSION}{qwprogs}.dat:0
|
DISTFILES.a = qwprogs-${QWP_VERSION}{qwprogs}.dat
|
||||||
EXTRACT_ONLY = mvdsv-${GH_TAGNAME}.tar.gz
|
EXTRACT_ONLY = mvdsv-${GH_TAGNAME}.tar.gz
|
||||||
|
|
||||||
MODULES = devel/cmake
|
MODULES = devel/cmake
|
||||||
|
|
|
@ -21,13 +21,14 @@ REVISION-server = 0
|
||||||
PKG_ARCH-data = *
|
PKG_ARCH-data = *
|
||||||
|
|
||||||
DISTNAME = openarena-${V}
|
DISTNAME = openarena-${V}
|
||||||
DISTFILES = ${DISTNAME}.zip openarena-engine-source-${E_V}.tar.bz2:0
|
DISTFILES = ${DISTNAME}.zip
|
||||||
|
DISTFILES.a = openarena-engine-source-${E_V}.tar.bz2
|
||||||
|
|
||||||
HOMEPAGE = http://www.openarena.ws/
|
HOMEPAGE = http://www.openarena.ws/
|
||||||
MS_PREFIX = https://download.tuxfamily.org/openarena/rel/
|
MS_PREFIX = https://download.tuxfamily.org/openarena/rel/
|
||||||
MASTER_SITES = ${MS_PREFIX}${V:S/.//g}/ \
|
SITES = ${MS_PREFIX}${V:S/.//g}/ \
|
||||||
${MS_PREFIX}${E_V:S/.//g}/source/
|
${MS_PREFIX}${E_V:S/.//g}/source/
|
||||||
MASTER_SITES0 = http://files.poulsander.com/~poul19/public_files/oa/dev088/ \
|
SITES.a = http://files.poulsander.com/~poul19/public_files/oa/dev088/ \
|
||||||
http://openbsd.fi/distfiles/
|
http://openbsd.fi/distfiles/
|
||||||
|
|
||||||
# GPLv2 but contains software with other (free) licenses as well
|
# GPLv2 but contains software with other (free) licenses as well
|
||||||
|
|
|
@ -8,10 +8,10 @@ GH_PROJECT = openmw
|
||||||
GH_TAGNAME = openmw-$V
|
GH_TAGNAME = openmw-$V
|
||||||
DISTNAME = openmw-$V
|
DISTNAME = openmw-$V
|
||||||
|
|
||||||
DISTFILES = ${DISTNAME}${EXTRACT_SUFX} \
|
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
||||||
e75adf86f91eb3082220085e42dda62679f9a3ea.zip:0
|
DISTFILES.a = e75adf86f91eb3082220085e42dda62679f9a3ea.zip
|
||||||
DIST_SUBDIR = openmw
|
DIST_SUBDIR = openmw
|
||||||
MASTER_SITES0 = https://github.com/recastnavigation/recastnavigation/archive/
|
SITES.a = https://github.com/recastnavigation/recastnavigation/archive/
|
||||||
|
|
||||||
CATEGORIES = games
|
CATEGORIES = games
|
||||||
|
|
||||||
|
|
|
@ -19,10 +19,9 @@ DIST_SUBDIR = openra
|
||||||
# dlopen'd via mono-config(5)
|
# dlopen'd via mono-config(5)
|
||||||
WANTLIB += SDL2 freetype openal
|
WANTLIB += SDL2 freetype openal
|
||||||
|
|
||||||
MASTER_SITES = https://thfr.info/distfiles/
|
SITES = https://thfr.info/distfiles/
|
||||||
MASTER_SITES0 = https://thfr.info/distfiles/
|
|
||||||
DISTFILES = ${DISTNAME}${EXTRACT_SUFX} \
|
DISTFILES = ${DISTNAME}${EXTRACT_SUFX} \
|
||||||
nuget-${DISTNAME}${EXTRACT_SUFX}:0
|
nuget-${DISTNAME}${EXTRACT_SUFX}
|
||||||
EXTRACT_SUFX = .tar.xz
|
EXTRACT_SUFX = .tar.xz
|
||||||
|
|
||||||
FIX_CRLF_FILES = thirdparty/download/SharpFont.dll.config
|
FIX_CRLF_FILES = thirdparty/download/SharpFont.dll.config
|
||||||
|
|
|
@ -8,12 +8,12 @@ OPENSFX_V = 1.0.3
|
||||||
OPENMSX_V = 1.3.0
|
OPENMSX_V = 1.3.0
|
||||||
REPLAYS_V = 0.0.78
|
REPLAYS_V = 0.0.78
|
||||||
COMMENT = open source re-implementation of RollerCoaster Tycoon 2
|
COMMENT = open source re-implementation of RollerCoaster Tycoon 2
|
||||||
DISTFILES = openrct2-${V}{v${V}}.tar.gz:0 \
|
DISTFILES = openrct2-${V}{v${V}}.tar.gz
|
||||||
title-sequences-${TITLE_V}{title-sequences}.zip:1 \
|
DISTFILES.a = title-sequences-${TITLE_V}{title-sequences}.zip
|
||||||
objects-${OBJECTS_V}{objects}.zip:2 \
|
DISTFILES.b = objects-${OBJECTS_V}{objects}.zip
|
||||||
opensfx-${OPENSFX_V}{opensound}.zip:3 \
|
DISTFILES.c = opensfx-${OPENSFX_V}{opensound}.zip
|
||||||
openmsx-${OPENMSX_V}{openmusic}.zip:4 \
|
DISTFILES.d = openmsx-${OPENMSX_V}{openmusic}.zip
|
||||||
replays-${REPLAYS_V}{replays}.zip:5
|
DISTFILES.e = replays-${REPLAYS_V}{replays}.zip
|
||||||
PKGNAME = openrct2-${V}
|
PKGNAME = openrct2-${V}
|
||||||
CATEGORIES = games x11
|
CATEGORIES = games x11
|
||||||
|
|
||||||
|
@ -30,14 +30,15 @@ WANTLIB += zip
|
||||||
# Upstream does not make proper source releases.
|
# Upstream does not make proper source releases.
|
||||||
# See: https://github.com/OpenRCT2/OpenRCT2/issues/5887
|
# See: https://github.com/OpenRCT2/OpenRCT2/issues/5887
|
||||||
# Find repos and version numbers in top-level CMakeLists.txt
|
# Find repos and version numbers in top-level CMakeLists.txt
|
||||||
MASTER_SITES0 = https://github.com/OpenRCT2/OpenRCT2/archive/refs/tags/
|
BASE = https://github.com/OpenRCT2/
|
||||||
MASTER_SITES1 = https://github.com/OpenRCT2/title-sequences/releases/download/v${TITLE_V}/
|
SITES = ${BASE}OpenRCT2/archive/refs/tags/
|
||||||
MASTER_SITES2 = https://github.com/OpenRCT2/objects/releases/download/v${OBJECTS_V}/
|
SITES.a = ${BASE}title-sequences/releases/download/v${TITLE_V}/
|
||||||
MASTER_SITES3 = https://github.com/OpenRCT2/OpenSoundEffects/releases/download/v${OPENSFX_V}/
|
SITES.b = ${BASE}objects/releases/download/v${OBJECTS_V}/
|
||||||
MASTER_SITES4 = https://github.com/OpenRCT2/OpenMusic/releases/download/v${OPENMSX_V}/
|
SITES.c = ${BASE}OpenSoundEffects/releases/download/v${OPENSFX_V}/
|
||||||
MASTER_SITES5 = https://github.com/OpenRCT2/replays/releases/download/v${REPLAYS_V}/
|
SITES.d = ${BASE}OpenMusic/releases/download/v${OPENMSX_V}/
|
||||||
|
SITES.e = ${BASE}replays/releases/download/v${REPLAYS_V}/
|
||||||
|
|
||||||
EXTRACT_ONLY = openrct2-${V}.tar.gz
|
EXTRACT_ONLY = openrct2-$V.tar.gz
|
||||||
|
|
||||||
# C++17
|
# C++17
|
||||||
COMPILER = base-clang ports-gcc
|
COMPILER = base-clang ports-gcc
|
||||||
|
|
|
@ -9,8 +9,8 @@ REVISION= 2
|
||||||
|
|
||||||
CATEGORIES= games
|
CATEGORIES= games
|
||||||
|
|
||||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
|
||||||
endgame-singularity-music-${MUSIC_V}.zip:0
|
DISTFILES.m = endgame-singularity-music-${MUSIC_V}.zip
|
||||||
|
|
||||||
HOMEPAGE= http://emhsoft.com/singularity/
|
HOMEPAGE= http://emhsoft.com/singularity/
|
||||||
|
|
||||||
|
@ -18,8 +18,8 @@ HOMEPAGE= http://emhsoft.com/singularity/
|
||||||
# music under CC Attribution-ShareAlike 3.0 Unported
|
# music under CC Attribution-ShareAlike 3.0 Unported
|
||||||
PERMIT_PACKAGE= Yes
|
PERMIT_PACKAGE= Yes
|
||||||
|
|
||||||
MASTER_SITES= https://github.com/singularity/singularity/releases/download/v${V}/
|
SITES= https://github.com/singularity/singularity/releases/download/v${V}/
|
||||||
MASTER_SITES0= http://emhsoft.com/singularity/
|
SITES.m=http://emhsoft.com/singularity/
|
||||||
|
|
||||||
WRKDIST= ${WRKDIR}/singularity-${V}
|
WRKDIST= ${WRKDIR}/singularity-${V}
|
||||||
|
|
||||||
|
|
|
@ -5,10 +5,11 @@ PKGNAME = slash-3.2.2.e8
|
||||||
REVISION = 8
|
REVISION = 8
|
||||||
CATEGORIES = games
|
CATEGORIES = games
|
||||||
|
|
||||||
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=nethack/}
|
SITES = ${SITE_SOURCEFORGE:=nethack/}
|
||||||
MASTER_SITES0 = http://www.rz.tu-ilmenau.de/~wi019/Slash/
|
SITES.sl = http://www.rz.tu-ilmenau.de/~wi019/Slash/
|
||||||
|
|
||||||
DISTFILES = nethack-322.tgz Slash-Unix.tar.gz:0
|
DISTFILES = nethack-322.tgz
|
||||||
|
DISTFILES.sl = Slash-Unix.tar.gz
|
||||||
PATCHFILES = nh-3.2.2-3.2.3.diff
|
PATCHFILES = nh-3.2.2-3.2.3.diff
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -18,12 +18,11 @@ PERMIT_PACKAGE = Yes
|
||||||
|
|
||||||
WANTLIB += ${COMPILER_LIBCXX} c m
|
WANTLIB += ${COMPILER_LIBCXX} c m
|
||||||
|
|
||||||
# XXX: Ports does not permit GH_* and MASTER_SITES together.
|
SITES = https://github.com/official-stockfish/Stockfish/archive/
|
||||||
MASTER_SITES0 = https://github.com/official-stockfish/Stockfish/archive/
|
SITES.a = https://tests.stockfishchess.org/api/nn/
|
||||||
MASTER_SITES1 = https://tests.stockfishchess.org/api/nn/
|
DISTFILES = sf_${V}.tar.gz
|
||||||
DISTFILES = sf_${V}.tar.gz:0 \
|
DISTFILES.a = ${NNUE}
|
||||||
${NNUE}:1
|
EXTRACT_ONLY = ${DISTFILES}
|
||||||
EXTRACT_ONLY = sf_${V}.tar.gz
|
|
||||||
|
|
||||||
# C++17
|
# C++17
|
||||||
COMPILER = base-clang ports-gcc
|
COMPILER = base-clang ports-gcc
|
||||||
|
|
|
@ -11,13 +11,13 @@ HOMEPAGE= https://www.teeworlds.com
|
||||||
|
|
||||||
MAINTAINER= Stefan Hagen <sh+ports@codevoid.de>
|
MAINTAINER= Stefan Hagen <sh+ports@codevoid.de>
|
||||||
|
|
||||||
MASTER_SITES= https://github.com/teeworlds/teeworlds/releases/download/${V}/
|
SITES= https://github.com/teeworlds/teeworlds/releases/download/${V}/
|
||||||
# maps repo without tags/releases on https://github.com/teeworlds/teeworlds-maps
|
# maps repo without tags/releases on https://github.com/teeworlds/teeworlds-maps
|
||||||
# therefore hosted as archive.
|
# therefore hosted as archive.
|
||||||
MASTER_SITES0= http://si3t.ch/pub/openbsd/distfiles/
|
SITES.a= http://si3t.ch/pub/openbsd/distfiles/
|
||||||
|
|
||||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
|
||||||
teeworlds-${V}-data.tar.gz{teeworlds-data.tar.gz}:0
|
DISTFILES.a= teeworlds-${V}-data.tar.gz{teeworlds-data.tar.gz}
|
||||||
|
|
||||||
# BSD-like
|
# BSD-like
|
||||||
PERMIT_PACKAGE= Yes
|
PERMIT_PACKAGE= Yes
|
||||||
|
|
|
@ -4,17 +4,17 @@ GH_ACCOUNT= hughsie
|
||||||
GH_PROJECT= colord
|
GH_PROJECT= colord
|
||||||
GH_TAGNAME= 1.4.6
|
GH_TAGNAME= 1.4.6
|
||||||
|
|
||||||
MASTER_SITES0= https://github.com/hughsie/colord/commit/
|
SITES.p= https://github.com/hughsie/colord/commit/
|
||||||
PATCHFILES= fa832689e2574436b0e4cd3db5f99df6aa55882b.diff:0 \
|
PATCHFILES.p= fa832689e2574436b0e4cd3db5f99df6aa55882b.diff \
|
||||||
41bf6b99a11ccf4235aa946a3bc9fc37ea4ee4d9.diff:0 \
|
41bf6b99a11ccf4235aa946a3bc9fc37ea4ee4d9.diff \
|
||||||
c357ea2e1f65b5127a33960e89163245355a4d7c.diff:0 \
|
c357ea2e1f65b5127a33960e89163245355a4d7c.diff \
|
||||||
124efd03f3cb9b1df819134eb7cb6683497be9b1.diff:0 \
|
124efd03f3cb9b1df819134eb7cb6683497be9b1.diff \
|
||||||
7ec44427a82bf1779098dcb1ae979a070d6eefa6.diff:0 \
|
7ec44427a82bf1779098dcb1ae979a070d6eefa6.diff \
|
||||||
1452a975ecae14299fb27d41522dfd32305481ce.diff:0 \
|
1452a975ecae14299fb27d41522dfd32305481ce.diff \
|
||||||
f7e487584d1a22ffcfd910e9ae47429599c39b44.diff:0 \
|
f7e487584d1a22ffcfd910e9ae47429599c39b44.diff \
|
||||||
be3aa625c10e9f1053c520d2cf849332cb535bd4.diff:0 \
|
be3aa625c10e9f1053c520d2cf849332cb535bd4.diff \
|
||||||
91a3cc2e994be587def3b70762f15461101d43a1.diff:0 \
|
91a3cc2e994be587def3b70762f15461101d43a1.diff \
|
||||||
4a33e7c0b46f0c8d940bd2bafbe60b114428413e.diff:0
|
4a33e7c0b46f0c8d940bd2bafbe60b114428413e.diff
|
||||||
PATCH_DIST_STRIP= -p1
|
PATCH_DIST_STRIP= -p1
|
||||||
|
|
||||||
SHARED_LIBS += colordprivate 2.0 # 2.0.5
|
SHARED_LIBS += colordprivate 2.0 # 2.0.5
|
||||||
|
|
|
@ -5,9 +5,10 @@ GH_PROJECT = cstitch
|
||||||
GH_TAGNAME = 0.9.8
|
GH_TAGNAME = 0.9.8
|
||||||
REVISION = 4
|
REVISION = 4
|
||||||
|
|
||||||
DISTFILES= ${DISTNAME}.tar.gz ${DISTNAME}-icons{icons}.zip:0
|
DISTFILES= ${DISTNAME}.tar.gz
|
||||||
|
DISTFILES.icons = ${DISTNAME}-icons{icons}.zip
|
||||||
|
|
||||||
MASTER_SITES0 = http://sourceforge.net/projects/cstitch/files/Cstitch/Icons/
|
SITES.icons = http://sourceforge.net/projects/cstitch/files/Cstitch/Icons/
|
||||||
|
|
||||||
MODULES = devel/qmake lang/python x11/qt5
|
MODULES = devel/qmake lang/python x11/qt5
|
||||||
MODPY_VERSION = ${MODPY_DEFAULT_VERSION_2}
|
MODPY_VERSION = ${MODPY_DEFAULT_VERSION_2}
|
||||||
|
|
|
@ -4,8 +4,8 @@ COMMENT= fractal program with GTK interface
|
||||||
GH_ACCOUNT= oskusalerma
|
GH_ACCOUNT= oskusalerma
|
||||||
GH_PROJECT= gfract
|
GH_PROJECT= gfract
|
||||||
GH_TAGNAME= v1.0
|
GH_TAGNAME= v1.0
|
||||||
DISTFILES= ${DISTNAME}.tar.gz \
|
DISTFILES= ${DISTNAME}.tar.gz
|
||||||
gfract-palettes-0.1.tar.gz:0
|
DISTFILES.gfx= gfract-palettes-0.1.tar.gz
|
||||||
CATEGORIES= graphics math
|
CATEGORIES= graphics math
|
||||||
REVISION= 3
|
REVISION= 3
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ WANTLIB += pangoft2-1.0 png z
|
||||||
|
|
||||||
COMPILER = base-clang ports-gcc base-gcc
|
COMPILER = base-clang ports-gcc base-gcc
|
||||||
|
|
||||||
MASTER_SITES0= http://distfiles.sigtrap.nl/
|
SITES.gfx= http://distfiles.sigtrap.nl/
|
||||||
|
|
||||||
MODULES= lang/python
|
MODULES= lang/python
|
||||||
|
|
||||||
|
|
|
@ -2,11 +2,11 @@ COMMENT = decoder for JBIG2 monochrome hi-res image compression format
|
||||||
|
|
||||||
DISTNAME = jbig2dec-0.19
|
DISTNAME = jbig2dec-0.19
|
||||||
CATEGORIES = graphics
|
CATEGORIES = graphics
|
||||||
MASTER_SITES = https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs9531/
|
SITES = https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs9531/
|
||||||
MASTER_SITES0 = https://jbig2dec.com/tests/
|
SITES.t = https://jbig2dec.com/tests/
|
||||||
|
|
||||||
DISTFILES = ${DISTNAME}${EXTRACT_SUFX} \
|
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
||||||
jb2streams.zip:0
|
DISTFILES.t = jb2streams.zip
|
||||||
|
|
||||||
SHARED_LIBS += jbig2dec 1.0 # 0.0
|
SHARED_LIBS += jbig2dec 1.0 # 0.0
|
||||||
|
|
||||||
|
|
|
@ -7,9 +7,9 @@ GH_TESTDATA_COMMIT=98b37ee31189f1a31bb384191de0ea4b0358e0a0
|
||||||
CATEGORIES = graphics
|
CATEGORIES = graphics
|
||||||
|
|
||||||
# add external test data
|
# add external test data
|
||||||
DISTFILES = ${DISTNAME}${EXTRACT_SUFX} \
|
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
||||||
libjxl-testdata-${GH_TAGNAME}{${GH_TESTDATA_COMMIT}}${EXTRACT_SUFX}:0
|
DISTFILES.t = libjxl-testdata-${GH_TAGNAME}{${GH_TESTDATA_COMMIT}}${EXTRACT_SUFX}
|
||||||
MASTER_SITES0 = https://github.com/libjxl/testdata/archive/
|
SITES.t = https://github.com/libjxl/testdata/archive/
|
||||||
|
|
||||||
SHARED_LIBS += jxl 0.0 # 0.0
|
SHARED_LIBS += jxl 0.0 # 0.0
|
||||||
SHARED_LIBS += jxl_threads 0.0 # 0.0
|
SHARED_LIBS += jxl_threads 0.0 # 0.0
|
||||||
|
|
|
@ -5,10 +5,10 @@ PLUGIN = PostgreSQL
|
||||||
|
|
||||||
DISTNAME = Orthanc${PLUGIN}-${VERSION}
|
DISTNAME = Orthanc${PLUGIN}-${VERSION}
|
||||||
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
||||||
EXTRACT_ONLY = ${DISTNAME}${EXTRACT_SUFX}
|
EXTRACT_ONLY = ${DISTFILES}
|
||||||
|
|
||||||
DISTFILES += ${FRAMEWORK_DISTFILE:C/$/:1/}
|
DISTFILES.f = ${FRAMEWORK_DISTFILE}
|
||||||
MASTER_SITES1 = https://www.orthanc-server.com/downloads/get.php?path=/orthanc/
|
SITES.f = https://www.orthanc-server.com/downloads/get.php?path=/orthanc/
|
||||||
|
|
||||||
WANTLIB += ${COMPILER_LIBCXX} boost_atomic-mt boost_chrono-mt
|
WANTLIB += ${COMPILER_LIBCXX} boost_atomic-mt boost_chrono-mt
|
||||||
WANTLIB += boost_date_time-mt boost_filesystem-mt boost_iostreams-mt
|
WANTLIB += boost_date_time-mt boost_filesystem-mt boost_iostreams-mt
|
||||||
|
|
|
@ -12,13 +12,13 @@ PLUGIN_3RDPARTY = cornerstone-0.11.0.zip \
|
||||||
|
|
||||||
DISTNAME = Orthanc${PLUGIN}-${VERSION}
|
DISTNAME = Orthanc${PLUGIN}-${VERSION}
|
||||||
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
||||||
EXTRACT_ONLY = ${DISTNAME}${EXTRACT_SUFX}
|
EXTRACT_ONLY = ${DISTFILES}
|
||||||
|
|
||||||
DISTFILES += ${PLUGIN_3RDPARTY:C/$/:1/}
|
DISTFILES.p += ${PLUGIN_3RDPARTY}
|
||||||
MASTER_SITES1 = https://www.orthanc-server.com/downloads/third-party/WebViewer/
|
SITES.p = https://www.orthanc-server.com/downloads/third-party/WebViewer/
|
||||||
|
|
||||||
DISTFILES += ${FRAMEWORK_DISTFILE:C/$/:2/}
|
DISTFILES.f += ${FRAMEWORK_DISTFILE}
|
||||||
MASTER_SITES2 = https://www.orthanc-server.com/downloads/get.php?path=/orthanc/
|
SITES.f = https://www.orthanc-server.com/downloads/get.php?path=/orthanc/
|
||||||
|
|
||||||
WANTLIB += ${COMPILER_LIBCXX} boost_atomic-mt boost_chrono-mt
|
WANTLIB += ${COMPILER_LIBCXX} boost_atomic-mt boost_chrono-mt
|
||||||
WANTLIB += boost_date_time-mt boost_filesystem-mt boost_iostreams-mt
|
WANTLIB += boost_date_time-mt boost_filesystem-mt boost_iostreams-mt
|
||||||
|
|
|
@ -16,10 +16,10 @@ MAINTAINER = Riccardo Mazzurco <mazzurco.riccardo@protonmail.com>
|
||||||
# MIT
|
# MIT
|
||||||
PERMIT_PACKAGE = Yes
|
PERMIT_PACKAGE = Yes
|
||||||
|
|
||||||
MASTER_SITES = https://github.com/Orama-Interactive/Pixelorama/releases/download/v$V/
|
SITES = https://github.com/Orama-Interactive/Pixelorama/releases/download/v$V/
|
||||||
MASTER_SITES0 = https://github.com/Orama-Interactive/Pixelorama/raw/v$V/Misc/Clickable/click/
|
SITES.i = https://github.com/Orama-Interactive/Pixelorama/raw/v$V/Misc/Clickable/click/
|
||||||
DISTFILES = ${DISTNAME}{Pixelorama.Linux-64bit}${EXTRACT_SUFX} \
|
DISTFILES = ${DISTNAME}{Pixelorama.Linux-64bit}${EXTRACT_SUFX}
|
||||||
pixelorama-$V{icon}.png:0
|
DISTFILES.i = pixelorama-$V{icon}.png
|
||||||
|
|
||||||
EXTRACT_ONLY = ${DISTNAME}${EXTRACT_SUFX}
|
EXTRACT_ONLY = ${DISTNAME}${EXTRACT_SUFX}
|
||||||
|
|
||||||
|
|
|
@ -12,16 +12,16 @@ WANTLIB += ICE SM X11 Xpm c jpeg m ${COMPILER_LIBCXX} tiff z
|
||||||
|
|
||||||
COMPILER = base-clang ports-gcc base-gcc
|
COMPILER = base-clang ports-gcc base-gcc
|
||||||
|
|
||||||
MASTER_SITES= \
|
SITES= http://www.povray.org/ftp/pub/povray/Old-Versions/Official-3.62/Unix/
|
||||||
http://www.povray.org/ftp/pub/povray/Old-Versions/Official-3.62/Unix/
|
|
||||||
EXTRACT_SUFX= .tar.bz2
|
EXTRACT_SUFX= .tar.bz2
|
||||||
|
|
||||||
# We replace the included ancient copy of libpng with a later release
|
# We replace the included ancient copy of libpng with a later release
|
||||||
# from the 1.2 branch.
|
# from the 1.2 branch.
|
||||||
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
EXTRACT_ONLY= ${DISTFILES}
|
||||||
PNG_V= 1.2.57
|
PNG_V= 1.2.57
|
||||||
MASTER_SITES0= ${MASTER_SITE_SOURCEFORGE:=libpng/}
|
SITES.png= ${SITE_SOURCEFORGE:=libpng/}
|
||||||
DISTFILES= ${EXTRACT_ONLY} libpng-${PNG_V}.tar.gz:0
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
|
||||||
|
DISTFILES.png = libpng-${PNG_V}.tar.gz
|
||||||
|
|
||||||
|
|
||||||
LIB_DEPENDS= graphics/jpeg \
|
LIB_DEPENDS= graphics/jpeg \
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# ex:ts=8 sw=4:
|
# ex:ts=8 sw=4:
|
||||||
# $OpenBSD: Fetch.pm,v 1.94 2023/09/05 13:50:32 espie Exp $
|
# $OpenBSD: Fetch.pm,v 1.95 2023/09/25 17:10:16 espie Exp $
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010-2013 Marc Espie <espie@openbsd.org>
|
# Copyright (c) 2010-2013 Marc Espie <espie@openbsd.org>
|
||||||
#
|
#
|
||||||
|
@ -269,10 +269,6 @@ sub build1info($self, $v, $mirror, $roach)
|
||||||
my $build = sub($arg, $k) {
|
my $build = sub($arg, $k) {
|
||||||
my $site = 'SITES';
|
my $site = 'SITES';
|
||||||
my $url;
|
my $url;
|
||||||
if ($arg =~ m/^(.*)\:(\d)$/) {
|
|
||||||
$arg = $1;
|
|
||||||
$site.= $2;
|
|
||||||
}
|
|
||||||
if ($k =~ m/^.*?FILES(.+)/) {
|
if ($k =~ m/^.*?FILES(.+)/) {
|
||||||
$site .= $1;
|
$site .= $1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#-*- mode: Makefile; tab-width: 4; -*-
|
#-*- mode: Makefile; tab-width: 4; -*-
|
||||||
# ex:ts=4 sw=4 filetype=make:
|
# ex:ts=4 sw=4 filetype=make:
|
||||||
# $OpenBSD: bsd.port.mk,v 1.1624 2023/09/22 07:04:41 espie Exp $
|
# $OpenBSD: bsd.port.mk,v 1.1625 2023/09/25 17:09:10 espie Exp $
|
||||||
#
|
#
|
||||||
# bsd.port.mk - 940820 Jordan K. Hubbard.
|
# bsd.port.mk - 940820 Jordan K. Hubbard.
|
||||||
# This file is in the public domain.
|
# This file is in the public domain.
|
||||||
|
@ -1384,36 +1384,30 @@ _T =${w:N$v:N$v.*}
|
||||||
ERRORS += "Fatal: suffix not starting with . in ${_T}"
|
ERRORS += "Fatal: suffix not starting with . in ${_T}"
|
||||||
. endif
|
. endif
|
||||||
. for e in ${$w}
|
. for e in ${$w}
|
||||||
_warn_distfiles += ${e:M*\:[0-9]}
|
. for f m u in ${e:C/^(.*)\{.*\}(.*)$/\1\2/} ${w:S/$v/SITES/} ${e:C/^.*\{(.*)\}(.*)$/\1\2/}
|
||||||
. for p in ${e:C/:[0-9]$//}
|
. if !defined($m)
|
||||||
. for f m u in ${p:C/^(.*)\{.*\}(.*)$/\1\2/} ${w:S/$v/SITES/}${e:M*\:[0-9]:C/^.*:([0-9])$/\1/} ${p:C/^.*\{(.*)\}(.*)$/\1\2/}
|
|
||||||
. if !defined($m)
|
|
||||||
ERRORS += "Fatal: $m is not defined but referenced by $e in $v"
|
ERRORS += "Fatal: $m is not defined but referenced by $e in $v"
|
||||||
. endif
|
. endif
|
||||||
# XXX kanjistroke
|
. if "${u}" == "${ROACH_URL}"
|
||||||
#. if "${u:S/"//g}" == "${ROACH_URL:S/"//g}"
|
|
||||||
. if "${u}" == "${ROACH_URL}"
|
|
||||||
ROACH_SITES = ${$m}
|
ROACH_SITES = ${$m}
|
||||||
. endif
|
. endif
|
||||||
. if empty(_FILES:M$f)
|
. if empty(_FILES:M$f)
|
||||||
_FILES += $f
|
_FILES += $f
|
||||||
. if empty(DIST_SUBDIR)
|
. if empty(DIST_SUBDIR)
|
||||||
_FULL_FETCH_LIST += $f $f $m $u
|
_FULL_FETCH_LIST += $f $f $m $u
|
||||||
_PATH_$v += $f
|
_PATH_$v += $f
|
||||||
. else
|
. else
|
||||||
_FULL_FETCH_LIST += ${DIST_SUBDIR}/$f $f $m $u
|
_FULL_FETCH_LIST += ${DIST_SUBDIR}/$f $f $m $u
|
||||||
_PATH_$v += ${DIST_SUBDIR}/$f
|
_PATH_$v += ${DIST_SUBDIR}/$f
|
||||||
. endif
|
|
||||||
ALL_$v += $f
|
|
||||||
. endif
|
. endif
|
||||||
. endfor
|
ALL_$v += $f
|
||||||
|
. endif
|
||||||
. endfor
|
. endfor
|
||||||
. endfor
|
. endfor
|
||||||
. else
|
|
||||||
_PATH_$v ?=
|
|
||||||
ALL_$v ?=
|
|
||||||
. endif
|
. endif
|
||||||
. endfor
|
. endfor
|
||||||
|
_PATH_$v ?=
|
||||||
|
ALL_$v ?=
|
||||||
.endfor
|
.endfor
|
||||||
_FULL_FETCH_LIST ?=
|
_FULL_FETCH_LIST ?=
|
||||||
|
|
||||||
|
@ -2732,9 +2726,6 @@ ${_BULK_COOKIE}:
|
||||||
|
|
||||||
${_WRKDIR_COOKIE}:
|
${_WRKDIR_COOKIE}:
|
||||||
@${ECHO_MSG} "===> Building from scratch ${FULLPKGNAME}${_MASTER}"
|
@${ECHO_MSG} "===> Building from scratch ${FULLPKGNAME}${_MASTER}"
|
||||||
.if !empty(_warn_distfiles)
|
|
||||||
@echo "WARNING: old style distfiles ${_warn_distfiles} found"
|
|
||||||
.endif
|
|
||||||
@${_PBUILD} rm -rf ${WRKDIR}
|
@${_PBUILD} rm -rf ${WRKDIR}
|
||||||
@appdefaults=${LOCALBASE}/lib/X11/app-defaults; \
|
@appdefaults=${LOCALBASE}/lib/X11/app-defaults; \
|
||||||
if ! test -d $$appdefaults -a -h $$appdefaults; then \
|
if ! test -d $$appdefaults -a -h $$appdefaults; then \
|
||||||
|
|
|
@ -19,13 +19,13 @@ WANTLIB += Fcitx5Qt5WidgetsAddons Fcitx5Utils IMECore IMEPinyin
|
||||||
WANTLIB += IMETable Qt5Concurrent Qt5Core Qt5DBus Qt5Gui Qt5Widgets
|
WANTLIB += IMETable Qt5Concurrent Qt5Core Qt5DBus Qt5Gui Qt5Widgets
|
||||||
WANTLIB += boost_iostreams-mt boost_regex-mt c m opencc
|
WANTLIB += boost_iostreams-mt boost_regex-mt c m opencc
|
||||||
|
|
||||||
MASTER_SITES = https://download.fcitx-im.org/fcitx5/fcitx5-chinese-addons/
|
SITES = https://download.fcitx-im.org/fcitx5/fcitx5-chinese-addons/
|
||||||
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
||||||
DIST_SUBDIR = fcitx
|
DIST_SUBDIR = fcitx
|
||||||
|
|
||||||
MASTER_SITES0 = https://download.fcitx-im.org/data/
|
SITES.py = https://download.fcitx-im.org/data/
|
||||||
DISTFILES += py_table-20121124.tar.gz:0
|
DISTFILES.py += py_table-20121124.tar.gz
|
||||||
DISTFILES += py_stroke-20121124.tar.gz:0
|
DISTFILES.py += py_stroke-20121124.tar.gz
|
||||||
|
|
||||||
MODULES = devel/kf5
|
MODULES = devel/kf5
|
||||||
|
|
||||||
|
|
|
@ -25,10 +25,10 @@ WANTLIB += xcb-imdkit xcb-keysyms xcb-randr xcb-render
|
||||||
WANTLIB += xcb-shape xcb-util xcb-xfixes xcb-xinerama xcb-xkb
|
WANTLIB += xcb-shape xcb-util xcb-xfixes xcb-xinerama xcb-xkb
|
||||||
WANTLIB += xkbcommon xkbcommon-x11 xkbfile z
|
WANTLIB += xkbcommon xkbcommon-x11 xkbfile z
|
||||||
|
|
||||||
MASTER_SITES = https://download.fcitx-im.org/fcitx5/fcitx5/
|
SITES = https://download.fcitx-im.org/fcitx5/fcitx5/
|
||||||
MASTER_SITES0 = https://download.fcitx-im.org/data/
|
SITES.data = https://download.fcitx-im.org/data/
|
||||||
DISTFILES += ${DISTNAME}${EXTRACT_SUFX} \
|
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
||||||
en_dict-20121020.tar.gz:0
|
DISTFILES.data= en_dict-20121020.tar.gz
|
||||||
|
|
||||||
DIST_SUBDIR = fcitx
|
DIST_SUBDIR = fcitx
|
||||||
|
|
||||||
|
|
|
@ -17,17 +17,17 @@ PERMIT_PACKAGE= Yes
|
||||||
WANTLIB += ${COMPILER_LIBCXX} Fcitx5Utils boost_filesystem-mt
|
WANTLIB += ${COMPILER_LIBCXX} Fcitx5Utils boost_filesystem-mt
|
||||||
WANTLIB += boost_iostreams-mt boost_regex-mt c m
|
WANTLIB += boost_iostreams-mt boost_regex-mt c m
|
||||||
|
|
||||||
MASTER_SITES = https://download.fcitx-im.org/fcitx5/libime/
|
SITES = https://download.fcitx-im.org/fcitx5/libime/
|
||||||
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
||||||
|
|
||||||
MASTER_SITES0 = https://download.fcitx-im.org/data/
|
SITES.data = https://download.fcitx-im.org/data/
|
||||||
|
|
||||||
# Dictionary and Language Model
|
# Dictionary and Language Model
|
||||||
# Keep in sync with the post-patch section + upstream list
|
# Keep in sync with the post-patch section + upstream list
|
||||||
# https://github.com/fcitx/libime/blob/master/data/CMakeLists.txt
|
# https://github.com/fcitx/libime/blob/master/data/CMakeLists.txt
|
||||||
DISTFILES += dict-20220810.tar.xz:0
|
DISTFILES.data += dict-20220810.tar.xz
|
||||||
DISTFILES += lm_sc.arpa-20220810.tar.xz:0
|
DISTFILES.data += lm_sc.arpa-20220810.tar.xz
|
||||||
DISTFILES += table.tar.gz:0
|
DISTFILES.data += table.tar.gz
|
||||||
|
|
||||||
EXTRACT_SUFX = .tar.xz
|
EXTRACT_SUFX = .tar.xz
|
||||||
DIST_SUBDIR = fcitx
|
DIST_SUBDIR = fcitx
|
||||||
|
|
|
@ -19,11 +19,11 @@ SHARED_LIBS= RKC 1.0 \
|
||||||
|
|
||||||
CATEGORIES= japanese
|
CATEGORIES= japanese
|
||||||
|
|
||||||
MASTER_SITES = ftp://ftp.sra.co.jp/pub/misc/canna/
|
SITES = ftp://ftp.sra.co.jp/pub/misc/canna/
|
||||||
|
|
||||||
MASTER_SITES0= http://www.jaist.ac.jp/~fujieda/canna/
|
SITES.p= http://www.jaist.ac.jp/~fujieda/canna/
|
||||||
PATCHFILES= Canna35b2-unoff1.patch.gz:0 Canna35b2-unoff2.patch.gz:0 \
|
PATCHFILES.p= Canna35b2-unoff1.patch.gz Canna35b2-unoff2.patch.gz \
|
||||||
Canna35b2-hack1.patch.gz:0
|
Canna35b2-hack1.patch.gz
|
||||||
PATCH_DIST_STRIP= -p1
|
PATCH_DIST_STRIP= -p1
|
||||||
|
|
||||||
MAINTAINER= Marc Espie <espie@openbsd.org>
|
MAINTAINER= Marc Espie <espie@openbsd.org>
|
||||||
|
|
|
@ -6,14 +6,16 @@ DISTNAME=kanjips
|
||||||
PKGNAME=${DISTNAME}-19900310
|
PKGNAME=${DISTNAME}-19900310
|
||||||
REVISION=1
|
REVISION=1
|
||||||
|
|
||||||
MASTER_SITES=ftp://ftp.funet.fi/pub/culture/japan/unix/
|
SITES= ftp://ftp.funet.fi/pub/culture/japan/unix/
|
||||||
MASTER_SITES0=ftp://ftp.funet.fi/pub/culture/japan/fonts/
|
SITES.fonts= ftp://ftp.funet.fi/pub/culture/japan/fonts/
|
||||||
|
|
||||||
|
DISTFILES = kanjips.tar.Z
|
||||||
|
DISTFILES.fonts= jis32.Z jis48.Z
|
||||||
|
EXTRACT_ONLY = ${DISTFILES}
|
||||||
|
|
||||||
DISTFILES=kanjips.tar.Z jis32.Z:0 jis48.Z:0
|
|
||||||
# Freeware
|
# Freeware
|
||||||
EXTRACT_ONLY=kanjips.tar.Z
|
PERMIT_PACKAGE = Yes
|
||||||
|
|
||||||
PERMIT_PACKAGE= Yes
|
|
||||||
|
|
||||||
WANTLIB= c m
|
WANTLIB= c m
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ PKGNAME= ja-kterm-${VERSION}
|
||||||
REVISION= 9
|
REVISION= 9
|
||||||
CATEGORIES= japanese x11
|
CATEGORIES= japanese x11
|
||||||
|
|
||||||
MASTER_SITES= ${MASTER_SITE_XCONTRIB:=applications/}
|
SITES= ${SITE_XCONTRIB:=applications/}
|
||||||
|
|
||||||
# License: X
|
# License: X
|
||||||
PERMIT_PACKAGE= Yes
|
PERMIT_PACKAGE= Yes
|
||||||
|
@ -14,8 +14,8 @@ PERMIT_PACKAGE= Yes
|
||||||
WANTLIB= ICE SM X11 Xau Xaw Xdmcp Xext Xmu Xpm Xt curses c \
|
WANTLIB= ICE SM X11 Xau Xaw Xdmcp Xext Xmu Xpm Xt curses c \
|
||||||
util
|
util
|
||||||
|
|
||||||
MASTER_SITES0= ftp://ftp.kame.net/pub/kame/misc/
|
SITES.p= ftp://ftp.kame.net/pub/kame/misc/
|
||||||
PATCHFILES= kterm-620-0213-20010706.diff.gz:0
|
PATCHFILES.p= kterm-620-0213-20010706.diff.gz
|
||||||
PATCH_DIST_STRIP= -p1
|
PATCH_DIST_STRIP= -p1
|
||||||
|
|
||||||
CONFIGURE_STYLE=imake
|
CONFIGURE_STYLE=imake
|
||||||
|
|
|
@ -33,14 +33,14 @@ WANTLIB += ${COMPILER_LIBCXX} c event_core gc iconv m pcre yaml-0
|
||||||
# The result will be built at .build/crystal.o
|
# The result will be built at .build/crystal.o
|
||||||
#
|
#
|
||||||
|
|
||||||
MASTER_SITES = https://github.com/crystal-lang/crystal/archive/
|
SITES = https://github.com/crystal-lang/crystal/archive/
|
||||||
MASTER_SITES0 = https://jcs.org/distfiles/
|
SITES.a = https://jcs.org/distfiles/
|
||||||
MASTER_SITES1 = https://github.com/crystal-lang/shards/archive/
|
SITES.b = https://github.com/crystal-lang/shards/archive/
|
||||||
MASTER_SITES2 = https://github.com/crystal-lang/crystal-molinillo/archive/
|
SITES.c = https://github.com/crystal-lang/crystal-molinillo/archive/
|
||||||
DISTFILES = crystal-${V}{${V}}.tar.gz \
|
DISTFILES = crystal-${V}{${V}}.tar.gz
|
||||||
crystal-${V}-OpenBSD7.1.tar.gz:0 \
|
DISTFILES.a = crystal-${V}-OpenBSD7.1.tar.gz
|
||||||
shards-${V}{v${V_SHARDS}}.tar.gz:1 \
|
DISTFILES.b = shards-${V}{v${V_SHARDS}}.tar.gz
|
||||||
crystal-molinillo-${V}{v${V_MOLINILLO}}.tar.gz:2
|
DISTFILES.c = crystal-molinillo-${V}{v${V_MOLINILLO}}.tar.gz
|
||||||
|
|
||||||
# Build requires llvm-config from ports, not from base
|
# Build requires llvm-config from ports, not from base
|
||||||
MODULES = lang/clang
|
MODULES = lang/clang
|
||||||
|
|
|
@ -6,9 +6,9 @@ USE_NOBTCFI = Yes
|
||||||
|
|
||||||
V = 2.104.0
|
V = 2.104.0
|
||||||
COMMENT = reference compiler for the D programming language
|
COMMENT = reference compiler for the D programming language
|
||||||
DISTFILES = dmd-${V}{v${V}}.tar.gz:1 \
|
DISTFILES = dmd-${V}{v${V}}.tar.gz
|
||||||
dmd-${V}-bootstrap.tar.gz:0 \
|
DISTFILES.boot= dmd-${V}-bootstrap.tar.gz
|
||||||
phobos-${V}{v${V}}.tar.gz:2
|
DISTFILES.phobos = phobos-${V}{v${V}}.tar.gz
|
||||||
PKGNAME = dmd-${V}
|
PKGNAME = dmd-${V}
|
||||||
CATEGORIES = lang
|
CATEGORIES = lang
|
||||||
|
|
||||||
|
@ -20,9 +20,9 @@ PERMIT_PACKAGE = Yes
|
||||||
|
|
||||||
WANTLIB += c c++abi execinfo m pthread
|
WANTLIB += c c++abi execinfo m pthread
|
||||||
|
|
||||||
MASTER_SITES0 = https://github.com/ibara/dmd/releases/download/bootstrap-${V}/
|
SITES.boot = https://github.com/ibara/dmd/releases/download/bootstrap-${V}/
|
||||||
MASTER_SITES1 = https://github.com/dlang/dmd/archive/refs/tags/
|
SITES = https://github.com/dlang/dmd/archive/refs/tags/
|
||||||
MASTER_SITES2 = https://github.com/dlang/phobos/archive/refs/tags/
|
SITES.phobos = https://github.com/dlang/phobos/archive/refs/tags/
|
||||||
|
|
||||||
USE_GMAKE = Yes
|
USE_GMAKE = Yes
|
||||||
MAKE_ENV = HOST_CXX="${CXX}" \
|
MAKE_ENV = HOST_CXX="${CXX}" \
|
||||||
|
|
|
@ -23,14 +23,15 @@ WANTLIB += c iconv pthread
|
||||||
|
|
||||||
LIB_DEPENDS = converters/libiconv
|
LIB_DEPENDS = converters/libiconv
|
||||||
|
|
||||||
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=freepascal/}
|
SITES = ${SITE_SOURCEFORGE:=freepascal/}
|
||||||
MASTER_SITES0 = https://distfiles.stumpf.co/
|
SITES.boot = https://distfiles.stumpf.co/
|
||||||
DIST_SUBDIR = fpc
|
DIST_SUBDIR = fpc
|
||||||
|
|
||||||
.if ${MACHINE_ARCH:Mamd64} || ${MACHINE_ARCH:Mi386}
|
.if ${MACHINE_ARCH:Mamd64} || ${MACHINE_ARCH:Mi386}
|
||||||
DISTFILES = ${DISTNAME}${EXTRACT_SUFX} ${FPCBOOT-${MACHINE_ARCH}}:0
|
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
||||||
|
DISTFILES.boot = ${FPCBOOT-${MACHINE_ARCH}}
|
||||||
.endif
|
.endif
|
||||||
SUPDISTFILES = ${FPCBOOT-amd64}:0 ${FPCBOOT-i386}:0
|
SUPDISTFILES.boot = ${FPCBOOT-amd64} ${FPCBOOT-i386}
|
||||||
|
|
||||||
.if ${MACHINE_ARCH} == "amd64"
|
.if ${MACHINE_ARCH} == "amd64"
|
||||||
COMPNAME = ppcx64
|
COMPNAME = ppcx64
|
||||||
|
|
|
@ -61,10 +61,10 @@ MAINTAINER = Pascal Stumpf <pascal@stumpf.co>
|
||||||
|
|
||||||
DISTNAME = gcc-${FULL_VERSION}
|
DISTNAME = gcc-${FULL_VERSION}
|
||||||
DISTFILES = ${DISTNAME}.tar.xz
|
DISTFILES = ${DISTNAME}.tar.xz
|
||||||
SUPDISTFILES = ${ADASTRAP-amd64}:0 ${ADASTRAP-arm}:0 ${ADASTRAP-hppa}:0 \
|
SUPDISTFILES.boot = ${ADASTRAP-amd64} ${ADASTRAP-arm} ${ADASTRAP-hppa} \
|
||||||
${ADASTRAP-i386}:0 ${ADASTRAP-mips64}:0 ${ADASTRAP-powerpc}:0 \
|
${ADASTRAP-i386} ${ADASTRAP-mips64} ${ADASTRAP-powerpc} \
|
||||||
${ADASTRAP-sparc64}:0
|
${ADASTRAP-sparc64}
|
||||||
EXTRACT_ONLY = ${DISTNAME}.tar.xz
|
EXTRACT_ONLY = ${DISTFILES}
|
||||||
|
|
||||||
BUILD_DEPENDS += devel/bison
|
BUILD_DEPENDS += devel/bison
|
||||||
|
|
||||||
|
@ -87,15 +87,15 @@ TEST_DEPENDS += devel/dejagnu \
|
||||||
devel/autogen \
|
devel/autogen \
|
||||||
${BUILD_PKGPATH},-libs>=11,<12
|
${BUILD_PKGPATH},-libs>=11,<12
|
||||||
|
|
||||||
MASTER_SITES = ${MASTER_SITE_GCC:=releases/gcc-$(FULL_VERSION)/}
|
SITES = ${SITE_GCC:=releases/gcc-$(FULL_VERSION)/}
|
||||||
MASTER_SITES0 = https://distfiles.stumpf.co/ \
|
SITES.boot = https://distfiles.stumpf.co/ \
|
||||||
https://spacehopper.org/mirrors/ \
|
https://spacehopper.org/mirrors/ \
|
||||||
https://distfiles.bsdfrog.org/
|
https://distfiles.bsdfrog.org/
|
||||||
|
|
||||||
LANGS = c,c++,fortran,objc
|
LANGS = c,c++,fortran,objc
|
||||||
.if ${BUILD_PACKAGES:M-ada}
|
.if ${BUILD_PACKAGES:M-ada}
|
||||||
LANGS := ${LANGS},ada
|
LANGS := ${LANGS},ada
|
||||||
DISTFILES += ${ADASTRAP-${MACHINE_ARCH}}:0
|
DISTFILES.boot += ${ADASTRAP-${MACHINE_ARCH}}
|
||||||
EXTRACT_ONLY += ${ADASTRAP-${MACHINE_ARCH}}
|
EXTRACT_ONLY += ${ADASTRAP-${MACHINE_ARCH}}
|
||||||
CC = ${WRKDIR}/bin/egcc
|
CC = ${WRKDIR}/bin/egcc
|
||||||
CXX = ${WRKDIR}/bin/eg++
|
CXX = ${WRKDIR}/bin/eg++
|
||||||
|
|
|
@ -58,9 +58,9 @@ MAINTAINER = Pascal Stumpf <pascal@stumpf.co>
|
||||||
|
|
||||||
DISTNAME = gcc-${FULL_VERSION}
|
DISTNAME = gcc-${FULL_VERSION}
|
||||||
DISTFILES = ${DISTNAME}.tar.xz
|
DISTFILES = ${DISTNAME}.tar.xz
|
||||||
SUPDISTFILES = ${ADASTRAP-amd64}:0 ${ADASTRAP-arm}:0 ${ADASTRAP-hppa}:0 \
|
SUPDISTFILES.strap = ${ADASTRAP-amd64} ${ADASTRAP-arm} ${ADASTRAP-hppa} \
|
||||||
${ADASTRAP-i386}:0 ${ADASTRAP-mips64}:0 ${ADASTRAP-powerpc}:0 \
|
${ADASTRAP-i386} ${ADASTRAP-mips64} ${ADASTRAP-powerpc} \
|
||||||
${ADASTRAP-sparc64}:0
|
${ADASTRAP-sparc64}
|
||||||
EXTRACT_ONLY = ${DISTNAME}.tar.xz
|
EXTRACT_ONLY = ${DISTNAME}.tar.xz
|
||||||
|
|
||||||
BUILD_DEPENDS += devel/bison
|
BUILD_DEPENDS += devel/bison
|
||||||
|
@ -83,15 +83,15 @@ TEST_DEPENDS += devel/dejagnu \
|
||||||
devel/autogen \
|
devel/autogen \
|
||||||
${BUILD_PKGPATH},-libs>=8,<9
|
${BUILD_PKGPATH},-libs>=8,<9
|
||||||
|
|
||||||
MASTER_SITES = ${MASTER_SITE_GCC:=releases/gcc-$(FULL_VERSION)/}
|
SITES = ${SITE_GCC:=releases/gcc-$(FULL_VERSION)/}
|
||||||
MASTER_SITES0 = https://distfiles.stumpf.co/ \
|
SITES.strap = https://distfiles.stumpf.co/ \
|
||||||
https://spacehopper.org/mirrors/ \
|
https://spacehopper.org/mirrors/ \
|
||||||
https://distfiles.bsdfrog.org/
|
https://distfiles.bsdfrog.org/
|
||||||
|
|
||||||
LANGS = c,c++,fortran,objc
|
LANGS = c,c++,fortran,objc
|
||||||
.if ${BUILD_PACKAGES:M-ada}
|
.if ${BUILD_PACKAGES:M-ada}
|
||||||
LANGS := ${LANGS},ada
|
LANGS := ${LANGS},ada
|
||||||
DISTFILES += ${ADASTRAP-${MACHINE_ARCH}}:0
|
DISTFILES.strap = ${ADASTRAP-${MACHINE_ARCH}}
|
||||||
EXTRACT_ONLY += ${ADASTRAP-${MACHINE_ARCH}}
|
EXTRACT_ONLY += ${ADASTRAP-${MACHINE_ARCH}}
|
||||||
EXTRA_ENV += ADAC=${WRKDIR}/bin/egcc GNATBIND=${WRKDIR}/bin/gnatbind
|
EXTRA_ENV += ADAC=${WRKDIR}/bin/egcc GNATBIND=${WRKDIR}/bin/gnatbind
|
||||||
CC = ${WRKDIR}/bin/egcc
|
CC = ${WRKDIR}/bin/egcc
|
||||||
|
|
|
@ -44,33 +44,32 @@ BUILD_DEPENDS = archivers/bzip2 \
|
||||||
textproc/py-sphinx${MODPY_FLAVOR}>=4.0.2
|
textproc/py-sphinx${MODPY_FLAVOR}>=4.0.2
|
||||||
RUN_DEPENDS =
|
RUN_DEPENDS =
|
||||||
|
|
||||||
MASTER_SITES = https://downloads.haskell.org/ghc/${GHC_VERSION}/
|
SITES = https://downloads.haskell.org/ghc/${GHC_VERSION}/
|
||||||
MASTER_SITES0 = https://openbsd.dead-parrot.de/distfiles/
|
SITES.boot = https://openbsd.dead-parrot.de/distfiles/
|
||||||
|
|
||||||
DIST_SUBDIR = ghc
|
DIST_SUBDIR = ghc
|
||||||
|
|
||||||
BINDISTFILE = ${BINDISTFILE-${MACHINE_ARCH}}
|
.for m in amd64
|
||||||
|
BINDISTFILE-$m = ghc-${BIN_VER}-$m-unknown-openbsd.tar.xz \
|
||||||
|
ghc-${BIN_VER}-shlibs-$m.tar.gz
|
||||||
|
SUPDISTFILES.boot += ${BINDISTFILE-$m}
|
||||||
|
.endfor
|
||||||
|
|
||||||
DISTFILES = ghc-${GHC_VERSION}-src.tar.xz \
|
DISTFILES = ghc-${GHC_VERSION}-src.tar.xz \
|
||||||
ghc-${GHC_VERSION}-testsuite.tar.xz \
|
ghc-${GHC_VERSION}-testsuite.tar.xz
|
||||||
${BINDISTFILE}
|
DISTFILES.boot = ${BINDISTFILE-${MACHINE_ARCH}}
|
||||||
|
|
||||||
# sphinx-rtd-theme update patch set
|
# sphinx-rtd-theme update patch set
|
||||||
# mirrored from https://gitlab.haskell.org/ghc/ghc/-/commit/70526f5bd8886126f49833ef20604a2c6477780a.patch
|
# mirrored from https://gitlab.haskell.org/ghc/ghc/-/commit/70526f5bd8886126f49833ef20604a2c6477780a.patch
|
||||||
# "GIT binary patch" (gpatch doesn't handle it, patch segfaults)
|
# "GIT binary patch" (gpatch doesn't handle it, patch segfaults)
|
||||||
# (sorry! -sthen)
|
# (sorry! -sthen)
|
||||||
MASTER_SITES1 = https://spacehopper.org/mirrors/
|
SITES.p = https://spacehopper.org/mirrors/
|
||||||
DISTFILES += ghc-rtd-update-70526f5bd8.diff:1
|
DISTFILES.p += ghc-rtd-update-70526f5bd8.diff
|
||||||
EXTRACT_ONLY = ${DISTFILES:Nghc-rtd-update*:S/:0//}
|
EXTRACT_ONLY = ${DISTFILES} ${DISTFILES.boot}
|
||||||
BUILD_DEPENDS += devel/git
|
BUILD_DEPENDS += devel/git
|
||||||
pre-patch:
|
pre-patch:
|
||||||
cd ${WRKSRC}; env -i git apply ${FULLDISTDIR}/ghc-rtd-update-70526f5bd8.diff
|
cd ${WRKSRC}; env -i git apply ${FULLDISTDIR}/ghc-rtd-update-70526f5bd8.diff
|
||||||
|
|
||||||
.for m in amd64
|
|
||||||
BINDISTFILE-$m = ghc-${BIN_VER}-$m-unknown-openbsd.tar.xz:0 \
|
|
||||||
ghc-${BIN_VER}-shlibs-$m.tar.gz:0
|
|
||||||
SUPDISTFILES += ${BINDISTFILE-$m}
|
|
||||||
.endfor
|
|
||||||
|
|
||||||
# Substvars for all libraries, assuming that ghc-boot, ghc-boot-th,
|
# Substvars for all libraries, assuming that ghc-boot, ghc-boot-th,
|
||||||
# ghc-heap and ghci will always have the same version number as ghc.
|
# ghc-heap and ghci will always have the same version number as ghc.
|
||||||
|
|
|
@ -8,9 +8,9 @@ MODGO_BUILDDEP ?= Yes
|
||||||
|
|
||||||
MODGO_DIST_SUBDIR ?= go_modules
|
MODGO_DIST_SUBDIR ?= go_modules
|
||||||
|
|
||||||
MASTER_SITE_ATHENS = https://proxy.golang.org/
|
SITE_ATHENS = https://proxy.golang.org/
|
||||||
|
|
||||||
MASTER_SITES.go ?= ${MASTER_SITE_ATHENS}
|
SITES.go ?= ${SITE_ATHENS}
|
||||||
|
|
||||||
MODGO_RUN_DEPENDS = lang/go
|
MODGO_RUN_DEPENDS = lang/go
|
||||||
MODGO_BUILD_DEPENDS = lang/go
|
MODGO_BUILD_DEPENDS = lang/go
|
||||||
|
@ -76,7 +76,7 @@ ALL_TARGET ?= ${MODGO_MODNAME}
|
||||||
MODGO_FLAGS += -modcacherw -trimpath
|
MODGO_FLAGS += -modcacherw -trimpath
|
||||||
DISTFILES += ${DISTNAME_ESC}{${MODGO_VERSION}}${EXTRACT_SUFX}
|
DISTFILES += ${DISTNAME_ESC}{${MODGO_VERSION}}${EXTRACT_SUFX}
|
||||||
EXTRACT_ONLY += ${DISTNAME_ESC}${EXTRACT_SUFX}
|
EXTRACT_ONLY += ${DISTNAME_ESC}${EXTRACT_SUFX}
|
||||||
MASTER_SITES ?= ${MASTER_SITE_ATHENS}${MODGO_MODNAME_ESC}/@v/
|
SITES ?= ${SITE_ATHENS}${MODGO_MODNAME_ESC}/@v/
|
||||||
. for _modpath _modver in ${MODGO_MODULES}
|
. for _modpath _modver in ${MODGO_MODULES}
|
||||||
DISTFILES.go += ${MODGO_DIST_SUBDIR}/{}${_modpath}/@v/${_modver}.zip
|
DISTFILES.go += ${MODGO_DIST_SUBDIR}/{}${_modpath}/@v/${_modver}.zip
|
||||||
DISTFILES.go += ${MODGO_DIST_SUBDIR}/{}${_modpath}/@v/${_modver}.mod
|
DISTFILES.go += ${MODGO_DIST_SUBDIR}/{}${_modpath}/@v/${_modver}.mod
|
||||||
|
|
|
@ -24,13 +24,13 @@ PERMIT_PACKAGE= Yes
|
||||||
WANTLIB += c curses ffi gc gmp iconv intl ltdl m pthread readline
|
WANTLIB += c curses ffi gc gmp iconv intl ltdl m pthread readline
|
||||||
WANTLIB += unistring
|
WANTLIB += unistring
|
||||||
|
|
||||||
MASTER_SITES= ${MASTER_SITE_GNU:=guile/}
|
SITES= ${SITE_GNU:=guile/}
|
||||||
MASTER_SITES0= https://charlenew.xyz/distfiles/
|
SITES.boot= https://charlenew.xyz/distfiles/
|
||||||
|
|
||||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
|
||||||
SUPDISTFILES= ${BOOTSTRAP_32BE}:0
|
SUPDISTFILES.boot= ${BOOTSTRAP_32BE}
|
||||||
|
|
||||||
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
EXTRACT_ONLY= ${DISTFILES}
|
||||||
|
|
||||||
# internal compiler error: in unify_nodes, at tree-ssa-structalias.c:1231
|
# internal compiler error: in unify_nodes, at tree-ssa-structalias.c:1231
|
||||||
COMPILER = base-clang ports-gcc
|
COMPILER = base-clang ports-gcc
|
||||||
|
|
|
@ -4,8 +4,8 @@ ONLY_FOR_ARCHS = amd64
|
||||||
|
|
||||||
V = 1.33.0
|
V = 1.33.0
|
||||||
COMMENT = LLVM D Compiler
|
COMMENT = LLVM D Compiler
|
||||||
DISTFILES = ldc-${V}-src.tar.gz:0 \
|
DISTFILES = ldc-${V}-src.tar.gz
|
||||||
ldc-${V}-bootstrap.tar.gz:1
|
DISTFILES.boot= ldc-${V}-bootstrap.tar.gz
|
||||||
PKGNAME = ldc-${V}
|
PKGNAME = ldc-${V}
|
||||||
CATEGORIES = lang
|
CATEGORIES = lang
|
||||||
REVISION = 0
|
REVISION = 0
|
||||||
|
@ -20,8 +20,8 @@ PERMIT_PACKAGE = Yes
|
||||||
|
|
||||||
WANTLIB += ${COMPILER_LIBCXX} c execinfo m z
|
WANTLIB += ${COMPILER_LIBCXX} c execinfo m z
|
||||||
|
|
||||||
MASTER_SITES0 = https://github.com/ldc-developers/ldc/releases/download/v${V}/
|
SITES = https://github.com/ldc-developers/ldc/releases/download/v${V}/
|
||||||
MASTER_SITES1 = https://github.com/ibara/ldc/releases/download/bootstrap-${V}/
|
SITES.boot = https://github.com/ibara/ldc/releases/download/bootstrap-${V}/
|
||||||
|
|
||||||
# C++14
|
# C++14
|
||||||
COMPILER = base-clang ports-gcc
|
COMPILER = base-clang ports-gcc
|
||||||
|
|
|
@ -7,15 +7,17 @@ COMMENT = JavaScript runtime built on Chrome's V8 JavaScript engine
|
||||||
|
|
||||||
NODE_VERSION = v18.17.1
|
NODE_VERSION = v18.17.1
|
||||||
PLEDGE_VER = 1.1.3
|
PLEDGE_VER = 1.1.3
|
||||||
DISTFILES = node-pledge-{}${PLEDGE_VER}.tar.gz:0 \
|
|
||||||
${DISTNAME}-headers.tar.gz \
|
DISTFILES = ${DISTNAME}-headers.tar.gz \
|
||||||
${DISTNAME}.tar.xz
|
${DISTNAME}.tar.xz
|
||||||
|
DISTFILES.b = node-pledge-{}${PLEDGE_VER}.tar.gz
|
||||||
|
|
||||||
|
|
||||||
DISTNAME = node-${NODE_VERSION}
|
DISTNAME = node-${NODE_VERSION}
|
||||||
PKGNAME = ${DISTNAME:S/v//g}
|
PKGNAME = ${DISTNAME:S/v//g}
|
||||||
EPOCH = 0
|
EPOCH = 0
|
||||||
|
|
||||||
MASTER_SITES0 = https://github.com/qbit/node-pledge/archive/
|
SITES.b = https://github.com/qbit/node-pledge/archive/
|
||||||
|
|
||||||
CATEGORIES = lang devel
|
CATEGORIES = lang devel
|
||||||
|
|
||||||
|
|
|
@ -22,11 +22,11 @@ GH_PROJECT = nqp
|
||||||
GH_TAGNAME = $V
|
GH_TAGNAME = $V
|
||||||
|
|
||||||
# Take the missing WRKDIST/3rdparty/nqp-configure from rakudo.
|
# Take the missing WRKDIST/3rdparty/nqp-configure from rakudo.
|
||||||
MASTER_SITES0 = https://rakudo.org/dl/rakudo/
|
SITES.rakudo = https://rakudo.org/dl/rakudo/
|
||||||
RAKUDO_VERSION = $V
|
RAKUDO_VERSION = $V
|
||||||
DISTFILES = nqp-$V.tar.gz \
|
DISTFILES = nqp-$V.tar.gz
|
||||||
rakudo-${RAKUDO_VERSION}.tar.gz:0
|
DISTFILES.rakudo = rakudo-${RAKUDO_VERSION}.tar.gz
|
||||||
EXTRACT_ONLY = nqp-$V.tar.gz
|
EXTRACT_ONLY = ${DISTFILES}
|
||||||
|
|
||||||
BUILD_DEPENDS = math/libtommath
|
BUILD_DEPENDS = math/libtommath
|
||||||
LIB_DEPENDS = lang/moarvm>=${MOAR_VERSION}
|
LIB_DEPENDS = lang/moarvm>=${MOAR_VERSION}
|
||||||
|
|
|
@ -31,8 +31,8 @@ BOOTSTRAP-amd64 = pypy-bootstrap-amd64-${BOOTSTRAP_V}-0.tar.xz
|
||||||
#BOOTSTRAP-aarch64 = pypy-bootstrap-aarch64-${BOOTSTRAP_V}.tar.xz
|
#BOOTSTRAP-aarch64 = pypy-bootstrap-aarch64-${BOOTSTRAP_V}.tar.xz
|
||||||
BOOTSTRAP-aarch64 = pypy-bootstrap-aarch64-${BOOTSTRAP_V}-0.tar.xz
|
BOOTSTRAP-aarch64 = pypy-bootstrap-aarch64-${BOOTSTRAP_V}-0.tar.xz
|
||||||
# list bootstraps for all arches in SUPDISTFILES
|
# list bootstraps for all arches in SUPDISTFILES
|
||||||
SUPDISTFILES += ${BOOTSTRAP-amd64}:0
|
SUPDISTFILES.boot += ${BOOTSTRAP-amd64}
|
||||||
SUPDISTFILES += ${BOOTSTRAP-aarch64}:0
|
SUPDISTFILES.boot += ${BOOTSTRAP-aarch64}
|
||||||
REVISION = 7
|
REVISION = 7
|
||||||
|
|
||||||
CATEGORIES = lang
|
CATEGORIES = lang
|
||||||
|
@ -50,8 +50,8 @@ WANTLIB += ${MODTK_LIB} util z
|
||||||
|
|
||||||
LIB_DEPENDS += databases/sqlite3
|
LIB_DEPENDS += databases/sqlite3
|
||||||
|
|
||||||
MASTER_SITES = https://downloads.python.org/pypy/
|
SITES = https://downloads.python.org/pypy/
|
||||||
MASTER_SITES0 = https://theunixzoo.co.uk/distfiles/ \
|
SITES.boot = https://theunixzoo.co.uk/distfiles/ \
|
||||||
https://spacehopper.org/mirrors/
|
https://spacehopper.org/mirrors/
|
||||||
EXTRACT_SUFX = .tar.bz2
|
EXTRACT_SUFX = .tar.bz2
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@ DIST_SUBDIR = pypy
|
||||||
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
||||||
.if defined(BOOTSTRAP-${MACHINE_ARCH}) && !${FLAVOR:Mno_bootstrap}
|
.if defined(BOOTSTRAP-${MACHINE_ARCH}) && !${FLAVOR:Mno_bootstrap}
|
||||||
# ^^ needed to avoid breakage in arches that don't have pypy
|
# ^^ needed to avoid breakage in arches that don't have pypy
|
||||||
DISTFILES += ${BOOTSTRAP-${MACHINE_ARCH}}:0
|
DISTFILES.boot += ${BOOTSTRAP-${MACHINE_ARCH}}
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
MODULES += lang/python x11/tk
|
MODULES += lang/python x11/tk
|
||||||
|
|
|
@ -7,8 +7,8 @@ COMMENT = multi-paradigm programming language
|
||||||
|
|
||||||
V = 8.10
|
V = 8.10
|
||||||
PKGNAME = racket-minimal-$V
|
PKGNAME = racket-minimal-$V
|
||||||
DISTFILES = racket-minimal-$V-src-builtpkgs${EXTRACT_SUFX} \
|
DISTFILES = racket-minimal-$V-src-builtpkgs${EXTRACT_SUFX}
|
||||||
racket-openbsd-2${EXTRACT_SUFX}:0
|
DISTFILES.boot = racket-openbsd-2${EXTRACT_SUFX}
|
||||||
|
|
||||||
CATEGORIES = lang
|
CATEGORIES = lang
|
||||||
HOMEPAGE = https://racket-lang.org/
|
HOMEPAGE = https://racket-lang.org/
|
||||||
|
@ -19,20 +19,20 @@ MAINTAINER = Juan Francisco Cantero Hurtado <juanfra@openbsd.org>
|
||||||
# different licenses: https://github.com/racket/racket/blob/master/LICENSE
|
# different licenses: https://github.com/racket/racket/blob/master/LICENSE
|
||||||
PERMIT_PACKAGE = Yes
|
PERMIT_PACKAGE = Yes
|
||||||
|
|
||||||
MASTER_SITES = https://mirror.racket-lang.org/installers/${V}/ \
|
SITES = https://mirror.racket-lang.org/installers/${V}/ \
|
||||||
https://www.cs.utah.edu/plt/installers/${V}/ \
|
https://www.cs.utah.edu/plt/installers/${V}/ \
|
||||||
https://plt.eecs.northwestern.edu/racket-mirror/${V}/ \
|
https://plt.eecs.northwestern.edu/racket-mirror/${V}/ \
|
||||||
http://mirror.informatik.uni-tuebingen.de/mirror/racket/${V}/ \
|
http://mirror.informatik.uni-tuebingen.de/mirror/racket/${V}/ \
|
||||||
http://pre-release.racket-lang.org/installers/ \
|
http://pre-release.racket-lang.org/installers/ \
|
||||||
http://pre.racket-lang.org/release/installers/ \
|
http://pre.racket-lang.org/release/installers/ \
|
||||||
http://pre.racket-lang.org/installers/ \
|
http://pre.racket-lang.org/installers/ \
|
||||||
https://download.tuxfamily.org/jod/lang/racket/ \
|
https://download.tuxfamily.org/jod/lang/racket/ \
|
||||||
ftp://download.tuxfamily.org/jod/lang/racket/ \
|
ftp://download.tuxfamily.org/jod/lang/racket/ \
|
||||||
https://users.cs.utah.edu/plt/snapshots/current/installers/ \
|
https://users.cs.utah.edu/plt/snapshots/current/installers/ \
|
||||||
http://plt.eecs.northwestern.edu/snapshots/current/installers/
|
http://plt.eecs.northwestern.edu/snapshots/current/installers/
|
||||||
|
|
||||||
MASTER_SITES0 = https://download.tuxfamily.org/jod/lang/racket/ \
|
SITES.boot = https://download.tuxfamily.org/jod/lang/racket/ \
|
||||||
ftp://download.tuxfamily.org/jod/lang/racket/
|
ftp://download.tuxfamily.org/jod/lang/racket/
|
||||||
EXTRACT_SUFX = .tgz
|
EXTRACT_SUFX = .tgz
|
||||||
|
|
||||||
LIB_DEPENDS = archivers/lz4 \
|
LIB_DEPENDS = archivers/lz4 \
|
||||||
|
|
|
@ -7,7 +7,7 @@ PKGSPEC-main ?= ruby->=3.0.0,<${NEXTVER}
|
||||||
REVISION-main = 0
|
REVISION-main = 0
|
||||||
|
|
||||||
# Backport fix for fixnum*fixnum multiplication on octeon
|
# Backport fix for fixnum*fixnum multiplication on octeon
|
||||||
PATCHFILES = ruby-octeon-fix-1{fe6245b4309c855e6aca5b786ad50a72d53d278a}.patch:0
|
PATCHFILES.p = ruby-octeon-fix-1{fe6245b4309c855e6aca5b786ad50a72d53d278a}.patch
|
||||||
|
|
||||||
PSEUDO_FLAVORS= no_ri_docs bootstrap
|
PSEUDO_FLAVORS= no_ri_docs bootstrap
|
||||||
# Do not build the RI docs on slow arches
|
# Do not build the RI docs on slow arches
|
||||||
|
|
|
@ -4,16 +4,16 @@ SHARED_LIBS = ruby31 0.0
|
||||||
NEXTVER = 3.2
|
NEXTVER = 3.2
|
||||||
PKGSPEC-main ?= ruby->=3.1.0,<${NEXTVER}
|
PKGSPEC-main ?= ruby->=3.1.0,<${NEXTVER}
|
||||||
|
|
||||||
MASTER_SITES1 ?= https://github.com/ruby/openssl/commit/
|
SITES.p1 ?= https://github.com/ruby/openssl/commit/
|
||||||
|
|
||||||
# Backport fix for fixnum*fixnum multiplication on octeon
|
# Backport fix for fixnum*fixnum multiplication on octeon
|
||||||
PATCHFILES = ruby-octeon-fix-1{fe6245b4309c855e6aca5b786ad50a72d53d278a}.patch:0
|
PATCHFILES.p = ruby-octeon-fix-1{fe6245b4309c855e6aca5b786ad50a72d53d278a}.patch
|
||||||
# Backport fix for ASN.1 time test
|
# Backport fix for ASN.1 time test
|
||||||
PATCHFILES += ruby-asn1time-fix{bbc540fe83195e2a54cf40fab448cea2afe4df1d}.patch:1
|
PATCHFILES.p1 += ruby-asn1time-fix{bbc540fe83195e2a54cf40fab448cea2afe4df1d}.patch
|
||||||
# Enable HKDF
|
# Enable HKDF
|
||||||
PATCHFILES += ruby-enable-hkdf{9bdd39a7e2a5851c9090889727f54859e63a4ec9}.patch:1
|
PATCHFILES.p1 += ruby-enable-hkdf{9bdd39a7e2a5851c9090889727f54859e63a4ec9}.patch
|
||||||
# Fix Ed25519 support
|
# Fix Ed25519 support
|
||||||
PATCHFILES += ruby-ed25519-fix{475b2bf766d6093370e49abd5dce5436cc0034ca}.patch:1
|
PATCHFILES.p1 += ruby-ed25519-fix{475b2bf766d6093370e49abd5dce5436cc0034ca}.patch
|
||||||
|
|
||||||
PSEUDO_FLAVORS= no_ri_docs bootstrap
|
PSEUDO_FLAVORS= no_ri_docs bootstrap
|
||||||
# Do not build the RI docs on slow arches
|
# Do not build the RI docs on slow arches
|
||||||
|
|
|
@ -22,8 +22,8 @@ MAINTAINER ?= Jeremy Evans <jeremy@openbsd.org>
|
||||||
# GPL/Artistic/BSD/Public Domain/Beer-Ware
|
# GPL/Artistic/BSD/Public Domain/Beer-Ware
|
||||||
PERMIT_PACKAGE?= Yes
|
PERMIT_PACKAGE?= Yes
|
||||||
|
|
||||||
MASTER_SITES ?= https://cache.ruby-lang.org/pub/ruby/${VERSION:R}/
|
SITES ?= https://cache.ruby-lang.org/pub/ruby/${VERSION:R}/
|
||||||
MASTER_SITES0 ?= https://github.com/ruby/ruby/commit/
|
SITES.p ?= https://github.com/ruby/ruby/commit/
|
||||||
PATCH_DIST_STRIP ?= -p1
|
PATCH_DIST_STRIP ?= -p1
|
||||||
|
|
||||||
CONFIGURE_STYLE ?= gnu
|
CONFIGURE_STYLE ?= gnu
|
||||||
|
|
|
@ -6,9 +6,9 @@ GH_COMMIT = 05cd0af0af4b5a191117d47a182adff1d6546b87
|
||||||
DISTNAME = wasi-libc-0.20220413
|
DISTNAME = wasi-libc-0.20220413
|
||||||
REVISION = 0
|
REVISION = 0
|
||||||
|
|
||||||
DISTFILES = ${GH_DISTFILE} \
|
DISTFILES = ${GH_DISTFILE}
|
||||||
wasi-libc-llvm${MODCLANG_VERSION}-std-headers.tar.gz:0
|
DISTFILES.h = wasi-libc-llvm${MODCLANG_VERSION}-std-headers.tar.gz
|
||||||
MASTER_SITES0= https://nerd.hu/distfiles/
|
SITES.h = https://nerd.hu/distfiles/
|
||||||
|
|
||||||
CATEGORIES = lang
|
CATEGORIES = lang
|
||||||
|
|
||||||
|
|
|
@ -4,10 +4,10 @@ DISTNAME= cucipop-1.31
|
||||||
REVISION= 1
|
REVISION= 1
|
||||||
CATEGORIES= mail
|
CATEGORIES= mail
|
||||||
|
|
||||||
MASTER_SITES= ftp://ftp.informatik.rwth-aachen.de/pub/packages/cucipop/
|
SITES= ftp://ftp.informatik.rwth-aachen.de/pub/packages/cucipop/
|
||||||
MASTER_SITES0= ftp://ftp.kame.net/pub/kame/misc/
|
SITES.p= ftp://ftp.kame.net/pub/kame/misc/
|
||||||
|
|
||||||
PATCHFILES= cucipop-1.31-v6-20010223.diff.gz:0
|
PATCHFILES.p= cucipop-1.31-v6-20010223.diff.gz
|
||||||
PATCH_DIST_STRIP= -p1
|
PATCH_DIST_STRIP= -p1
|
||||||
|
|
||||||
PERMIT_PACKAGE= Yes
|
PERMIT_PACKAGE= Yes
|
||||||
|
|
|
@ -7,12 +7,12 @@ GH_ACCOUNT= grommunio
|
||||||
GH_PROJECT= grommunio-dav
|
GH_PROJECT= grommunio-dav
|
||||||
GH_COMMIT= a9262794cb6b27acd10943138c92a230b0742ea8
|
GH_COMMIT= a9262794cb6b27acd10943138c92a230b0742ea8
|
||||||
|
|
||||||
DISTFILES= ${GH_DISTFILE} \
|
DISTFILES= ${GH_DISTFILE}
|
||||||
${GH_PROJECT}-${GH_COMMIT}-vendor.tar.gz:0
|
DISTFILES.a = ${GH_PROJECT}-${GH_COMMIT}-vendor.tar.gz
|
||||||
|
|
||||||
CATEGORIES= mail www
|
CATEGORIES= mail www
|
||||||
|
|
||||||
MASTER_SITES0= https://nerd.hu/distfiles/
|
SITES.a= https://nerd.hu/distfiles/
|
||||||
|
|
||||||
MODULES= lang/php
|
MODULES= lang/php
|
||||||
|
|
||||||
|
|
|
@ -8,12 +8,12 @@ GH_ACCOUNT= grommunio
|
||||||
GH_PROJECT= grommunio-sync
|
GH_PROJECT= grommunio-sync
|
||||||
GH_COMMIT= 313dd0285dcd53849b2444df524d0e54b4e4ca07
|
GH_COMMIT= 313dd0285dcd53849b2444df524d0e54b4e4ca07
|
||||||
|
|
||||||
DISTFILES= ${GH_DISTFILE} \
|
DISTFILES= ${GH_DISTFILE}
|
||||||
${GH_PROJECT}-${GH_COMMIT}-vendor.tar.gz:0
|
DISTFILES.a= ${GH_PROJECT}-${GH_COMMIT}-vendor.tar.gz
|
||||||
|
|
||||||
CATEGORIES= mail www
|
CATEGORIES= mail www
|
||||||
|
|
||||||
MASTER_SITES0= https://nerd.hu/distfiles/
|
SITES.a= https://nerd.hu/distfiles/
|
||||||
|
|
||||||
MODULES= lang/php
|
MODULES= lang/php
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,8 @@ REVISION= 1
|
||||||
SHARED_LIBS= blas 2.1
|
SHARED_LIBS= blas 2.1
|
||||||
|
|
||||||
CATEGORIES= math
|
CATEGORIES= math
|
||||||
DISTFILES= ${DISTNAME}.tgz manpages.tgz:0
|
DISTFILES= ${DISTNAME}.tgz
|
||||||
|
DISTFILES.la = manpages.tgz
|
||||||
|
|
||||||
HOMEPAGE= https://netlib.org/blas/
|
HOMEPAGE= https://netlib.org/blas/
|
||||||
|
|
||||||
|
@ -16,8 +17,8 @@ MAINTAINER= Steven Mestdagh <steven@openbsd.org>
|
||||||
# freely available
|
# freely available
|
||||||
PERMIT_PACKAGE= Yes
|
PERMIT_PACKAGE= Yes
|
||||||
|
|
||||||
MASTER_SITES= https://netlib.org/blas/
|
SITES= https://netlib.org/blas/
|
||||||
MASTER_SITES0= ${MASTER_SITES:S/blas/lapack/}
|
SITES.la= ${SITES:S/blas/lapack/}
|
||||||
EXTRACT_SUFX= .tgz
|
EXTRACT_SUFX= .tgz
|
||||||
DIST_SUBDIR= ${DISTNAME}
|
DIST_SUBDIR= ${DISTNAME}
|
||||||
WRKDIST= ${WRKDIR}/${DISTNAME:U}
|
WRKDIST= ${WRKDIR}/${DISTNAME:U}
|
||||||
|
|
|
@ -8,7 +8,9 @@ REVISION= 2
|
||||||
SHARED_LIBS= lapack 7.1
|
SHARED_LIBS= lapack 7.1
|
||||||
|
|
||||||
CATEGORIES= math
|
CATEGORIES= math
|
||||||
DISTFILES= ${DISTNAME}.tar.gz manpages.tgz:0
|
DISTFILES= ${DISTNAME}.tar.gz
|
||||||
|
DISTFILES.doc = manpages.tgz
|
||||||
|
|
||||||
|
|
||||||
HOMEPAGE= https://netlib.org/lapack/
|
HOMEPAGE= https://netlib.org/lapack/
|
||||||
|
|
||||||
|
@ -17,9 +19,9 @@ MAINTAINER= Steven Mestdagh <steven@openbsd.org>
|
||||||
# BSD
|
# BSD
|
||||||
PERMIT_PACKAGE= Yes
|
PERMIT_PACKAGE= Yes
|
||||||
|
|
||||||
MASTER_SITES= https://netlib.org/lapack/ \
|
SITES= https://netlib.org/lapack/ \
|
||||||
http://www.netlib.no/netlib/lapack/
|
http://www.netlib.no/netlib/lapack/
|
||||||
MASTER_SITES0= https://netlib.org/lapack/
|
SITES.doc= https://netlib.org/lapack/
|
||||||
DIST_SUBDIR= ${DISTNAME}
|
DIST_SUBDIR= ${DISTNAME}
|
||||||
|
|
||||||
LIB_DEPENDS = math/blas
|
LIB_DEPENDS = math/blas
|
||||||
|
|
|
@ -29,15 +29,15 @@ WANTLIB += boost_program_options-mt boost_random-mt boost_regex-mt
|
||||||
WANTLIB += boost_system-mt boost_thread-mt c crypto m pam ssl
|
WANTLIB += boost_system-mt boost_thread-mt c crypto m pam ssl
|
||||||
WANTLIB += util uuid z lib/R/lib/R lib/inotify/inotify
|
WANTLIB += util uuid z lib/R/lib/R lib/inotify/inotify
|
||||||
|
|
||||||
# XXX: Ports does not permit GH_* and MASTER_SITES together.
|
# XXX: Ports does not permit GH_* and SITES together.
|
||||||
MASTER_SITES0 = https://github.com/rstudio/rstudio/archive/
|
SITES = https://github.com/rstudio/rstudio/archive/
|
||||||
MASTER_SITES1 = https://s3.amazonaws.com/rstudio-buildtools/dictionaries/
|
SITES.a = https://s3.amazonaws.com/rstudio-buildtools/dictionaries/
|
||||||
MASTER_SITES2 = https://s3.amazonaws.com/rstudio-buildtools/
|
SITES.b = https://s3.amazonaws.com/rstudio-buildtools/
|
||||||
DISTFILES = rstudio-${V}{v${V}}.tar.gz:0 \
|
DISTFILES = rstudio-${V}{v${V}}.tar.gz
|
||||||
core-dictionaries.zip:1 \
|
DISTFILES.a = core-dictionaries.zip
|
||||||
gin-${GIN_VERSION}.zip:2 \
|
DISTFILES.b = gin-${GIN_VERSION}.zip \
|
||||||
gwt-${GWT_VERSION}.zip:2 \
|
gwt-${GWT_VERSION}.zip \
|
||||||
mathjax-27.zip:2
|
mathjax-27.zip
|
||||||
|
|
||||||
# CMake looks for qmake-qt5 during configure...
|
# CMake looks for qmake-qt5 during configure...
|
||||||
MODULES = devel/cmake \
|
MODULES = devel/cmake \
|
||||||
|
|
|
@ -12,11 +12,11 @@ PERMIT_PACKAGE = Yes
|
||||||
|
|
||||||
WANTLIB = c
|
WANTLIB = c
|
||||||
|
|
||||||
MASTER_SITES = ftp://ftp.figlet.org/pub/figlet/program/unix/
|
SITES = ftp://ftp.figlet.org/pub/figlet/program/unix/
|
||||||
MASTER_SITES0 = http://www.arcane-labs.net/download/OpenBSD/
|
SITES.c = http://www.arcane-labs.net/download/OpenBSD/
|
||||||
|
|
||||||
DISTFILES = ${DISTNAME}${EXTRACT_SUFX} \
|
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
||||||
figlet-contributed-06092002${EXTRACT_SUFX}:0
|
DISTFILES.c = figlet-contributed-06092002${EXTRACT_SUFX}
|
||||||
MAKE_FLAGS = CC="${CC}" LD="${CC}" CFLAGS="${CFLAGS}" \
|
MAKE_FLAGS = CC="${CC}" LD="${CC}" CFLAGS="${CFLAGS}" \
|
||||||
DEFAULTFONTDIR=${PREFIX}/share/figlet
|
DEFAULTFONTDIR=${PREFIX}/share/figlet
|
||||||
|
|
||||||
|
|
|
@ -3,10 +3,10 @@ COMMENT = database for multilingual text processing library
|
||||||
DISTNAME = m17n-db-${M17N_V}
|
DISTNAME = m17n-db-${M17N_V}
|
||||||
GLIBC = glibc-2.28
|
GLIBC = glibc-2.28
|
||||||
|
|
||||||
DISTFILES = ${DISTNAME}${EXTRACT_SUFX} \
|
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
||||||
${GLIBC}${EXTRACT_SUFX}:0
|
DISTFILES.glibc=${GLIBC}${EXTRACT_SUFX}
|
||||||
|
|
||||||
MASTER_SITES0 = ${MASTER_SITE_GNU:=glibc/}
|
SITES.glibc = ${SITE_GNU:=glibc/}
|
||||||
|
|
||||||
BUILD_DEPENDS += devel/gettext,-tools
|
BUILD_DEPENDS += devel/gettext,-tools
|
||||||
|
|
||||||
|
|
|
@ -5,11 +5,11 @@ PKGNAME= mmv-1.01b
|
||||||
REVISION= 1
|
REVISION= 1
|
||||||
CATEGORIES= misc
|
CATEGORIES= misc
|
||||||
|
|
||||||
MASTER_SITES= ftp://gatekeeper.dec.com/pub/usenet/comp.sources.unix/volume21/mmv/
|
SITES= ftp://gatekeeper.dec.com/pub/usenet/comp.sources.unix/volume21/mmv/
|
||||||
DISTFILES= part01.Z part02.Z
|
DISTFILES= part01.Z part02.Z
|
||||||
|
|
||||||
MASTER_SITES0= ftp://gatekeeper.dec.com/pub/usenet/comp.sources.unix/volume22/
|
SITES.p= ftp://gatekeeper.dec.com/pub/usenet/comp.sources.unix/volume22/
|
||||||
PATCHFILES= mmv.pch.Z:0
|
PATCHFILES.p= mmv.pch.Z
|
||||||
|
|
||||||
PERMIT_PACKAGE= Yes
|
PERMIT_PACKAGE= Yes
|
||||||
WANTLIB= c
|
WANTLIB= c
|
||||||
|
|
|
@ -17,10 +17,10 @@ PERMIT_PACKAGE = Yes
|
||||||
|
|
||||||
WANTLIB = c crypto m pthread ssl tls
|
WANTLIB = c crypto m pthread ssl tls
|
||||||
|
|
||||||
MASTER_SITES = https://github.com/open62541/open62541/
|
SITES = https://github.com/open62541/open62541/
|
||||||
MASTER_SITES0 = https://github.com/OPCFoundation/UA-Nodeset/archive/
|
SITES.ua = https://github.com/OPCFoundation/UA-Nodeset/archive/
|
||||||
DISTFILES = open62541-{archive/refs/tags/v}${VERSION}.tar.gz \
|
DISTFILES = open62541-{archive/refs/tags/v}${VERSION}.tar.gz
|
||||||
UA-1.04.10-2021-09-15.tar.gz:0
|
DISTFILES.ua= UA-1.04.10-2021-09-15.tar.gz
|
||||||
|
|
||||||
MODULES = devel/cmake
|
MODULES = devel/cmake
|
||||||
|
|
||||||
|
|
|
@ -11,9 +11,9 @@ WANTLIB += atk-1.0 c cairo cairo-gobject gdk-3 gdk_pixbuf-2.0
|
||||||
WANTLIB += gio-2.0 glib-2.0 gobject-2.0 gtk-3 harfbuzz intl m
|
WANTLIB += gio-2.0 glib-2.0 gobject-2.0 gtk-3 harfbuzz intl m
|
||||||
WANTLIB += pango-1.0 pangocairo-1.0
|
WANTLIB += pango-1.0 pangocairo-1.0
|
||||||
|
|
||||||
MASTER_SITES = https://www.opbyte.it/release/
|
SITES = https://www.opbyte.it/release/
|
||||||
MASTER_SITES0 = https://gitlab.archlinux.org/archlinux/packaging/packages/grsync/-/raw/main/
|
SITES.p = https://gitlab.archlinux.org/archlinux/packaging/packages/grsync/-/raw/main/
|
||||||
PATCHFILES += use-themed-icon.patch:0
|
PATCHFILES.p += use-themed-icon.patch
|
||||||
PATCH_DIST_STRIP = -p1
|
PATCH_DIST_STRIP = -p1
|
||||||
|
|
||||||
MODULES = textproc/intltool
|
MODULES = textproc/intltool
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
COMMENT = reliable, high performance TCP/HTTP load balancer
|
COMMENT = reliable, high performance TCP/HTTP load balancer
|
||||||
|
|
||||||
DISTNAME = haproxy-2.8.1
|
DISTNAME = haproxy-2.8.3
|
||||||
CATEGORIES = net www
|
CATEGORIES = net www
|
||||||
HOMEPAGE = https://www.haproxy.org/
|
HOMEPAGE = https://www.haproxy.org/
|
||||||
MAINTAINER = Daniel Jakots <obsd@chown.me>
|
MAINTAINER = Daniel Jakots <obsd@chown.me>
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
SHA256 (haproxy-2.8.1.tar.gz) = SFVS/NnV1fQarQRvEx/Ap+hJvvJaNJoEB1CvDG/FaAc=
|
SHA256 (haproxy-2.8.3.tar.gz) = nsxv/mepd9HtJ5EHu9q3kNc64qYmvDju4j+h9nhqdZ4=
|
||||||
SIZE (haproxy-2.8.1.tar.gz) = 4329591
|
SIZE (haproxy-2.8.3.tar.gz) = 4350288
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
COMMENT= Icinga PHP Library
|
COMMENT= Icinga PHP Library
|
||||||
|
|
||||||
GH_PROJECT= icinga-php-library
|
GH_PROJECT= icinga-php-library
|
||||||
GH_TAGNAME= v0.12.0
|
GH_TAGNAME= v0.13.0
|
||||||
|
|
||||||
MODULE_DEST= ${PREFIX}/icinga-php/ipl
|
MODULE_DEST= ${PREFIX}/icinga-php/ipl
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
SHA256 (icinga-php-library-0.12.0.tar.gz) = X7Utx82GPPwX3uCrpIXplfkPLKHftBpWY9253WQsnEQ=
|
SHA256 (icinga-php-library-0.13.0.tar.gz) = FKx79FPlo40FLVGynuZlbsihslLZQ+iKjXzOsnusy20=
|
||||||
SIZE (icinga-php-library-0.12.0.tar.gz) = 3049658
|
SIZE (icinga-php-library-0.13.0.tar.gz) = 3250696
|
||||||
|
|
|
@ -13,12 +13,18 @@ icinga-php/ipl/asset/css/balls.less
|
||||||
icinga-php/ipl/asset/css/cancel-button.less
|
icinga-php/ipl/asset/css/cancel-button.less
|
||||||
icinga-php/ipl/asset/css/compat.less
|
icinga-php/ipl/asset/css/compat.less
|
||||||
icinga-php/ipl/asset/css/controls.less
|
icinga-php/ipl/asset/css/controls.less
|
||||||
|
icinga-php/ipl/asset/css/copy-to-clipboard.less
|
||||||
icinga-php/ipl/asset/css/datetime-picker.less
|
icinga-php/ipl/asset/css/datetime-picker.less
|
||||||
|
icinga-php/ipl/asset/css/empty-state.less
|
||||||
icinga-php/ipl/asset/css/file-element.less
|
icinga-php/ipl/asset/css/file-element.less
|
||||||
icinga-php/ipl/asset/css/fontawesome.css
|
icinga-php/ipl/asset/css/fontawesome.css
|
||||||
icinga-php/ipl/asset/css/horizontal-key-value.less
|
icinga-php/ipl/asset/css/horizontal-key-value.less
|
||||||
icinga-php/ipl/asset/css/icinga-icons.less
|
icinga-php/ipl/asset/css/icinga-icons.less
|
||||||
icinga-php/ipl/asset/css/icons-base.less
|
icinga-php/ipl/asset/css/icons-base.less
|
||||||
|
icinga-php/ipl/asset/css/list/
|
||||||
|
icinga-php/ipl/asset/css/list/item-list.less
|
||||||
|
icinga-php/ipl/asset/css/list/item-table.less
|
||||||
|
icinga-php/ipl/asset/css/list/list-item.less
|
||||||
icinga-php/ipl/asset/css/mixin/
|
icinga-php/ipl/asset/css/mixin/
|
||||||
icinga-php/ipl/asset/css/mixin/card.less
|
icinga-php/ipl/asset/css/mixin/card.less
|
||||||
icinga-php/ipl/asset/css/mixin/mixins.less
|
icinga-php/ipl/asset/css/mixin/mixins.less
|
||||||
|
@ -56,15 +62,13 @@ icinga-php/ipl/asset/js/vendor/flatpickr/l10n/uk.js
|
||||||
icinga-php/ipl/asset/js/widget/
|
icinga-php/ipl/asset/js/widget/
|
||||||
icinga-php/ipl/asset/js/widget/BaseInput.js
|
icinga-php/ipl/asset/js/widget/BaseInput.js
|
||||||
icinga-php/ipl/asset/js/widget/Completer.js
|
icinga-php/ipl/asset/js/widget/Completer.js
|
||||||
|
icinga-php/ipl/asset/js/widget/CopyToClipboard.js
|
||||||
icinga-php/ipl/asset/js/widget/FilterInput.js
|
icinga-php/ipl/asset/js/widget/FilterInput.js
|
||||||
icinga-php/ipl/asset/js/widget/SearchBar.js
|
icinga-php/ipl/asset/js/widget/SearchBar.js
|
||||||
icinga-php/ipl/asset/js/widget/SearchEditor.js
|
icinga-php/ipl/asset/js/widget/SearchEditor.js
|
||||||
icinga-php/ipl/asset/js/widget/TermInput.js
|
icinga-php/ipl/asset/js/widget/TermInput.js
|
||||||
icinga-php/ipl/asset/static/
|
icinga-php/ipl/asset/static/
|
||||||
icinga-php/ipl/asset/static/font/
|
icinga-php/ipl/asset/static/font/
|
||||||
icinga-php/ipl/asset/static/font/Icinga-Icons.svg
|
|
||||||
icinga-php/ipl/asset/static/font/Icinga-Icons.ttf
|
|
||||||
icinga-php/ipl/asset/static/font/Icinga-Icons.woff
|
|
||||||
icinga-php/ipl/asset/static/font/awesome/
|
icinga-php/ipl/asset/static/font/awesome/
|
||||||
icinga-php/ipl/asset/static/font/awesome/fa-brands-400.ttf
|
icinga-php/ipl/asset/static/font/awesome/fa-brands-400.ttf
|
||||||
icinga-php/ipl/asset/static/font/awesome/fa-brands-400.woff2
|
icinga-php/ipl/asset/static/font/awesome/fa-brands-400.woff2
|
||||||
|
@ -74,6 +78,26 @@ icinga-php/ipl/asset/static/font/awesome/fa-solid-900.ttf
|
||||||
icinga-php/ipl/asset/static/font/awesome/fa-solid-900.woff2
|
icinga-php/ipl/asset/static/font/awesome/fa-solid-900.woff2
|
||||||
icinga-php/ipl/asset/static/font/awesome/fa-v4compatibility.ttf
|
icinga-php/ipl/asset/static/font/awesome/fa-v4compatibility.ttf
|
||||||
icinga-php/ipl/asset/static/font/awesome/fa-v4compatibility.woff2
|
icinga-php/ipl/asset/static/font/awesome/fa-v4compatibility.woff2
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/fonts/
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/fonts/Icinga-Icons.svg
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/fonts/Icinga-Icons.ttf
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/fonts/Icinga-Icons.woff
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/selection.json
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/src/
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/src/bracket-close.svg
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/src/bracket-open.svg
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/src/ca-check-circle.svg
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/src/certificate.svg
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/src/filter-check-circle.svg
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/src/icinga.svg
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/src/list-view-default.svg
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/src/list-view-detailed.svg
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/src/list-view-minimal.svg
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/src/refresh-cert.svg
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/src/th-list.svg
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/src/th-thumb-empty.svg
|
||||||
|
icinga-php/ipl/asset/static/font/icinga-icons/style.css
|
||||||
icinga-php/ipl/asset/static/img/
|
icinga-php/ipl/asset/static/img/
|
||||||
icinga-php/ipl/asset/static/img/select-icon-text-color.svg
|
icinga-php/ipl/asset/static/img/select-icon-text-color.svg
|
||||||
icinga-php/ipl/asset/static/img/select-icon.svg
|
icinga-php/ipl/asset/static/img/select-icon.svg
|
||||||
|
@ -81,6 +105,29 @@ icinga-php/ipl/composer.json
|
||||||
icinga-php/ipl/composer.lock
|
icinga-php/ipl/composer.lock
|
||||||
icinga-php/ipl/vendor/
|
icinga-php/ipl/vendor/
|
||||||
icinga-php/ipl/vendor/autoload.php
|
icinga-php/ipl/vendor/autoload.php
|
||||||
|
icinga-php/ipl/vendor/brick/
|
||||||
|
icinga-php/ipl/vendor/brick/math/
|
||||||
|
icinga-php/ipl/vendor/brick/math/LICENSE
|
||||||
|
icinga-php/ipl/vendor/brick/math/composer.json
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/BigDecimal.php
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/BigInteger.php
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/BigNumber.php
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/BigRational.php
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/Exception/
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/Exception/DivisionByZeroException.php
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/Exception/IntegerOverflowException.php
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/Exception/MathException.php
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/Exception/NegativeNumberException.php
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/Exception/NumberFormatException.php
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/Exception/RoundingNecessaryException.php
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/Internal/
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/Internal/Calculator/
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/Internal/Calculator.php
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/Internal/Calculator/BcMathCalculator.php
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/Internal/Calculator/GmpCalculator.php
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/Internal/Calculator/NativeCalculator.php
|
||||||
|
icinga-php/ipl/vendor/brick/math/src/RoundingMode.php
|
||||||
icinga-php/ipl/vendor/composer/
|
icinga-php/ipl/vendor/composer/
|
||||||
icinga-php/ipl/vendor/composer/ClassLoader.php
|
icinga-php/ipl/vendor/composer/ClassLoader.php
|
||||||
icinga-php/ipl/vendor/composer/InstalledVersions.php
|
icinga-php/ipl/vendor/composer/InstalledVersions.php
|
||||||
|
@ -147,10 +194,9 @@ icinga-php/ipl/vendor/evenement/evenement/
|
||||||
icinga-php/ipl/vendor/evenement/evenement/LICENSE
|
icinga-php/ipl/vendor/evenement/evenement/LICENSE
|
||||||
icinga-php/ipl/vendor/evenement/evenement/composer.json
|
icinga-php/ipl/vendor/evenement/evenement/composer.json
|
||||||
icinga-php/ipl/vendor/evenement/evenement/src/
|
icinga-php/ipl/vendor/evenement/evenement/src/
|
||||||
icinga-php/ipl/vendor/evenement/evenement/src/Evenement/
|
icinga-php/ipl/vendor/evenement/evenement/src/EventEmitter.php
|
||||||
icinga-php/ipl/vendor/evenement/evenement/src/Evenement/EventEmitter.php
|
icinga-php/ipl/vendor/evenement/evenement/src/EventEmitterInterface.php
|
||||||
icinga-php/ipl/vendor/evenement/evenement/src/Evenement/EventEmitterInterface.php
|
icinga-php/ipl/vendor/evenement/evenement/src/EventEmitterTrait.php
|
||||||
icinga-php/ipl/vendor/evenement/evenement/src/Evenement/EventEmitterTrait.php
|
|
||||||
icinga-php/ipl/vendor/fortawesome/
|
icinga-php/ipl/vendor/fortawesome/
|
||||||
icinga-php/ipl/vendor/fortawesome/font-awesome/
|
icinga-php/ipl/vendor/fortawesome/font-awesome/
|
||||||
icinga-php/ipl/vendor/fortawesome/font-awesome/composer.json
|
icinga-php/ipl/vendor/fortawesome/font-awesome/composer.json
|
||||||
|
@ -183,8 +229,11 @@ icinga-php/ipl/vendor/guzzlehttp/psr7/src/AppendStream.php
|
||||||
icinga-php/ipl/vendor/guzzlehttp/psr7/src/BufferStream.php
|
icinga-php/ipl/vendor/guzzlehttp/psr7/src/BufferStream.php
|
||||||
icinga-php/ipl/vendor/guzzlehttp/psr7/src/CachingStream.php
|
icinga-php/ipl/vendor/guzzlehttp/psr7/src/CachingStream.php
|
||||||
icinga-php/ipl/vendor/guzzlehttp/psr7/src/DroppingStream.php
|
icinga-php/ipl/vendor/guzzlehttp/psr7/src/DroppingStream.php
|
||||||
|
icinga-php/ipl/vendor/guzzlehttp/psr7/src/Exception/
|
||||||
|
icinga-php/ipl/vendor/guzzlehttp/psr7/src/Exception/MalformedUriException.php
|
||||||
icinga-php/ipl/vendor/guzzlehttp/psr7/src/FnStream.php
|
icinga-php/ipl/vendor/guzzlehttp/psr7/src/FnStream.php
|
||||||
icinga-php/ipl/vendor/guzzlehttp/psr7/src/Header.php
|
icinga-php/ipl/vendor/guzzlehttp/psr7/src/Header.php
|
||||||
|
icinga-php/ipl/vendor/guzzlehttp/psr7/src/HttpFactory.php
|
||||||
icinga-php/ipl/vendor/guzzlehttp/psr7/src/InflateStream.php
|
icinga-php/ipl/vendor/guzzlehttp/psr7/src/InflateStream.php
|
||||||
icinga-php/ipl/vendor/guzzlehttp/psr7/src/LazyOpenStream.php
|
icinga-php/ipl/vendor/guzzlehttp/psr7/src/LazyOpenStream.php
|
||||||
icinga-php/ipl/vendor/guzzlehttp/psr7/src/LimitStream.php
|
icinga-php/ipl/vendor/guzzlehttp/psr7/src/LimitStream.php
|
||||||
|
@ -208,8 +257,6 @@ icinga-php/ipl/vendor/guzzlehttp/psr7/src/UriComparator.php
|
||||||
icinga-php/ipl/vendor/guzzlehttp/psr7/src/UriNormalizer.php
|
icinga-php/ipl/vendor/guzzlehttp/psr7/src/UriNormalizer.php
|
||||||
icinga-php/ipl/vendor/guzzlehttp/psr7/src/UriResolver.php
|
icinga-php/ipl/vendor/guzzlehttp/psr7/src/UriResolver.php
|
||||||
icinga-php/ipl/vendor/guzzlehttp/psr7/src/Utils.php
|
icinga-php/ipl/vendor/guzzlehttp/psr7/src/Utils.php
|
||||||
icinga-php/ipl/vendor/guzzlehttp/psr7/src/functions.php
|
|
||||||
icinga-php/ipl/vendor/guzzlehttp/psr7/src/functions_include.php
|
|
||||||
icinga-php/ipl/vendor/ipl/
|
icinga-php/ipl/vendor/ipl/
|
||||||
icinga-php/ipl/vendor/ipl/html/
|
icinga-php/ipl/vendor/ipl/html/
|
||||||
icinga-php/ipl/vendor/ipl/html/LICENSE
|
icinga-php/ipl/vendor/ipl/html/LICENSE
|
||||||
|
@ -365,7 +412,10 @@ icinga-php/ipl/vendor/ipl/sql/src/Expression.php
|
||||||
icinga-php/ipl/vendor/ipl/sql/src/ExpressionInterface.php
|
icinga-php/ipl/vendor/ipl/sql/src/ExpressionInterface.php
|
||||||
icinga-php/ipl/vendor/ipl/sql/src/Filter/
|
icinga-php/ipl/vendor/ipl/sql/src/Filter/
|
||||||
icinga-php/ipl/vendor/ipl/sql/src/Filter/Exists.php
|
icinga-php/ipl/vendor/ipl/sql/src/Filter/Exists.php
|
||||||
|
icinga-php/ipl/vendor/ipl/sql/src/Filter/In.php
|
||||||
|
icinga-php/ipl/vendor/ipl/sql/src/Filter/InAndNotInUtils.php
|
||||||
icinga-php/ipl/vendor/ipl/sql/src/Filter/NotExists.php
|
icinga-php/ipl/vendor/ipl/sql/src/Filter/NotExists.php
|
||||||
|
icinga-php/ipl/vendor/ipl/sql/src/Filter/NotIn.php
|
||||||
icinga-php/ipl/vendor/ipl/sql/src/Insert.php
|
icinga-php/ipl/vendor/ipl/sql/src/Insert.php
|
||||||
icinga-php/ipl/vendor/ipl/sql/src/LimitOffset.php
|
icinga-php/ipl/vendor/ipl/sql/src/LimitOffset.php
|
||||||
icinga-php/ipl/vendor/ipl/sql/src/LimitOffsetInterface.php
|
icinga-php/ipl/vendor/ipl/sql/src/LimitOffsetInterface.php
|
||||||
|
@ -446,9 +496,20 @@ icinga-php/ipl/vendor/ipl/validator/src/ValidatorChain.php
|
||||||
icinga-php/ipl/vendor/ipl/validator/src/X509CertValidator.php
|
icinga-php/ipl/vendor/ipl/validator/src/X509CertValidator.php
|
||||||
icinga-php/ipl/vendor/ipl/web/
|
icinga-php/ipl/vendor/ipl/web/
|
||||||
icinga-php/ipl/vendor/ipl/web/LICENSE
|
icinga-php/ipl/vendor/ipl/web/LICENSE
|
||||||
|
icinga-php/ipl/vendor/ipl/web/asset/
|
||||||
|
icinga-php/ipl/vendor/ipl/web/asset/static/
|
||||||
|
icinga-php/ipl/vendor/ipl/web/asset/static/font/
|
||||||
|
icinga-php/ipl/vendor/ipl/web/asset/static/font/icinga-icons/
|
||||||
|
icinga-php/ipl/vendor/ipl/web/asset/static/font/icinga-icons/selection.json
|
||||||
icinga-php/ipl/vendor/ipl/web/composer.json
|
icinga-php/ipl/vendor/ipl/web/composer.json
|
||||||
icinga-php/ipl/vendor/ipl/web/src/
|
icinga-php/ipl/vendor/ipl/web/src/
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Common/
|
icinga-php/ipl/vendor/ipl/web/src/Common/
|
||||||
|
icinga-php/ipl/vendor/ipl/web/src/Common/BaseItemList.php
|
||||||
|
icinga-php/ipl/vendor/ipl/web/src/Common/BaseItemTable.php
|
||||||
|
icinga-php/ipl/vendor/ipl/web/src/Common/BaseListItem.php
|
||||||
|
icinga-php/ipl/vendor/ipl/web/src/Common/BaseOrderedItemList.php
|
||||||
|
icinga-php/ipl/vendor/ipl/web/src/Common/BaseOrderedListItem.php
|
||||||
|
icinga-php/ipl/vendor/ipl/web/src/Common/BaseTableRowItem.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Common/BaseTarget.php
|
icinga-php/ipl/vendor/ipl/web/src/Common/BaseTarget.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Common/Card.php
|
icinga-php/ipl/vendor/ipl/web/src/Common/Card.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Common/CsrfCounterMeasure.php
|
icinga-php/ipl/vendor/ipl/web/src/Common/CsrfCounterMeasure.php
|
||||||
|
@ -461,6 +522,7 @@ icinga-php/ipl/vendor/ipl/web/src/Compat/CompatDecorator.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Compat/CompatForm.php
|
icinga-php/ipl/vendor/ipl/web/src/Compat/CompatForm.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Compat/Multipart.php
|
icinga-php/ipl/vendor/ipl/web/src/Compat/Multipart.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Compat/SearchControls.php
|
icinga-php/ipl/vendor/ipl/web/src/Compat/SearchControls.php
|
||||||
|
icinga-php/ipl/vendor/ipl/web/src/Compat/StyleWithNonce.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Compat/ViewRenderer.php
|
icinga-php/ipl/vendor/ipl/web/src/Compat/ViewRenderer.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Control/
|
icinga-php/ipl/vendor/ipl/web/src/Control/
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Control/LimitControl.php
|
icinga-php/ipl/vendor/ipl/web/src/Control/LimitControl.php
|
||||||
|
@ -499,18 +561,24 @@ icinga-php/ipl/vendor/ipl/web/src/FormElement/TermInput.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/FormElement/TermInput/RegisteredTerm.php
|
icinga-php/ipl/vendor/ipl/web/src/FormElement/TermInput/RegisteredTerm.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/FormElement/TermInput/Term.php
|
icinga-php/ipl/vendor/ipl/web/src/FormElement/TermInput/Term.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/FormElement/TermInput/TermContainer.php
|
icinga-php/ipl/vendor/ipl/web/src/FormElement/TermInput/TermContainer.php
|
||||||
|
icinga-php/ipl/vendor/ipl/web/src/FormElement/TermInput/TermSuggestions.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/FormElement/TermInput/ValidatedTerm.php
|
icinga-php/ipl/vendor/ipl/web/src/FormElement/TermInput/ValidatedTerm.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Layout/
|
icinga-php/ipl/vendor/ipl/web/src/Layout/
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Layout/Content.php
|
icinga-php/ipl/vendor/ipl/web/src/Layout/Content.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Layout/Controls.php
|
icinga-php/ipl/vendor/ipl/web/src/Layout/Controls.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Layout/Footer.php
|
icinga-php/ipl/vendor/ipl/web/src/Layout/Footer.php
|
||||||
|
icinga-php/ipl/vendor/ipl/web/src/LessRuleset.php
|
||||||
|
icinga-php/ipl/vendor/ipl/web/src/Style.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Url.php
|
icinga-php/ipl/vendor/ipl/web/src/Url.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Widget/
|
icinga-php/ipl/vendor/ipl/web/src/Widget/
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Widget/ActionBar.php
|
icinga-php/ipl/vendor/ipl/web/src/Widget/ActionBar.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Widget/ActionLink.php
|
icinga-php/ipl/vendor/ipl/web/src/Widget/ActionLink.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Widget/ButtonLink.php
|
icinga-php/ipl/vendor/ipl/web/src/Widget/ButtonLink.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Widget/ContinueWith.php
|
icinga-php/ipl/vendor/ipl/web/src/Widget/ContinueWith.php
|
||||||
|
icinga-php/ipl/vendor/ipl/web/src/Widget/CopyToClipboard.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Widget/Dropdown.php
|
icinga-php/ipl/vendor/ipl/web/src/Widget/Dropdown.php
|
||||||
|
icinga-php/ipl/vendor/ipl/web/src/Widget/EmptyState.php
|
||||||
|
icinga-php/ipl/vendor/ipl/web/src/Widget/EmptyStateBar.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Widget/HorizontalKeyValue.php
|
icinga-php/ipl/vendor/ipl/web/src/Widget/HorizontalKeyValue.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Widget/IcingaIcon.php
|
icinga-php/ipl/vendor/ipl/web/src/Widget/IcingaIcon.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Widget/Icon.php
|
icinga-php/ipl/vendor/ipl/web/src/Widget/Icon.php
|
||||||
|
@ -522,16 +590,17 @@ icinga-php/ipl/vendor/ipl/web/src/Widget/TimeAgo.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Widget/TimeSince.php
|
icinga-php/ipl/vendor/ipl/web/src/Widget/TimeSince.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Widget/TimeUntil.php
|
icinga-php/ipl/vendor/ipl/web/src/Widget/TimeUntil.php
|
||||||
icinga-php/ipl/vendor/ipl/web/src/Widget/VerticalKeyValue.php
|
icinga-php/ipl/vendor/ipl/web/src/Widget/VerticalKeyValue.php
|
||||||
icinga-php/ipl/vendor/paragonie/
|
|
||||||
icinga-php/ipl/vendor/paragonie/random_compat/
|
|
||||||
icinga-php/ipl/vendor/paragonie/random_compat/LICENSE
|
|
||||||
icinga-php/ipl/vendor/paragonie/random_compat/composer.json
|
|
||||||
icinga-php/ipl/vendor/paragonie/random_compat/lib/
|
|
||||||
icinga-php/ipl/vendor/paragonie/random_compat/lib/random.php
|
|
||||||
icinga-php/ipl/vendor/paragonie/random_compat/other/
|
|
||||||
icinga-php/ipl/vendor/paragonie/random_compat/other/build_phar.php
|
|
||||||
icinga-php/ipl/vendor/paragonie/random_compat/psalm-autoload.php
|
|
||||||
icinga-php/ipl/vendor/psr/
|
icinga-php/ipl/vendor/psr/
|
||||||
|
icinga-php/ipl/vendor/psr/http-factory/
|
||||||
|
icinga-php/ipl/vendor/psr/http-factory/LICENSE
|
||||||
|
icinga-php/ipl/vendor/psr/http-factory/composer.json
|
||||||
|
icinga-php/ipl/vendor/psr/http-factory/src/
|
||||||
|
icinga-php/ipl/vendor/psr/http-factory/src/RequestFactoryInterface.php
|
||||||
|
icinga-php/ipl/vendor/psr/http-factory/src/ResponseFactoryInterface.php
|
||||||
|
icinga-php/ipl/vendor/psr/http-factory/src/ServerRequestFactoryInterface.php
|
||||||
|
icinga-php/ipl/vendor/psr/http-factory/src/StreamFactoryInterface.php
|
||||||
|
icinga-php/ipl/vendor/psr/http-factory/src/UploadedFileFactoryInterface.php
|
||||||
|
icinga-php/ipl/vendor/psr/http-factory/src/UriFactoryInterface.php
|
||||||
icinga-php/ipl/vendor/psr/http-message/
|
icinga-php/ipl/vendor/psr/http-message/
|
||||||
icinga-php/ipl/vendor/psr/http-message/LICENSE
|
icinga-php/ipl/vendor/psr/http-message/LICENSE
|
||||||
icinga-php/ipl/vendor/psr/http-message/composer.json
|
icinga-php/ipl/vendor/psr/http-message/composer.json
|
||||||
|
@ -567,14 +636,52 @@ icinga-php/ipl/vendor/ralouphie/getallheaders/composer.json
|
||||||
icinga-php/ipl/vendor/ralouphie/getallheaders/src/
|
icinga-php/ipl/vendor/ralouphie/getallheaders/src/
|
||||||
icinga-php/ipl/vendor/ralouphie/getallheaders/src/getallheaders.php
|
icinga-php/ipl/vendor/ralouphie/getallheaders/src/getallheaders.php
|
||||||
icinga-php/ipl/vendor/ramsey/
|
icinga-php/ipl/vendor/ramsey/
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/LICENSE
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/composer.json
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/AbstractArray.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/AbstractCollection.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/AbstractSet.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/ArrayInterface.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Collection.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/CollectionInterface.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/DoubleEndedQueue.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/DoubleEndedQueueInterface.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Exception/
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Exception/CollectionMismatchException.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Exception/InvalidArgumentException.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Exception/InvalidSortOrderException.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Exception/NoSuchElementException.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Exception/OutOfBoundsException.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Exception/UnsupportedOperationException.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Exception/ValueExtractionException.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/GenericArray.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Map/
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Map/AbstractMap.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Map/AbstractTypedMap.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Map/AssociativeArrayMap.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Map/MapInterface.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Map/NamedParameterMap.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Map/TypedMap.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Map/TypedMapInterface.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Queue.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/QueueInterface.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Set.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Tool/
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Tool/TypeTrait.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Tool/ValueExtractorTrait.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/collection/src/Tool/ValueToStringTrait.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/
|
icinga-php/ipl/vendor/ramsey/uuid/
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/LICENSE
|
icinga-php/ipl/vendor/ramsey/uuid/LICENSE
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/composer.json
|
icinga-php/ipl/vendor/ramsey/uuid/composer.json
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/
|
icinga-php/ipl/vendor/ramsey/uuid/src/
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/BinaryUtils.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/BinaryUtils.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Builder/
|
icinga-php/ipl/vendor/ramsey/uuid/src/Builder/
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Builder/BuilderCollection.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Builder/DefaultUuidBuilder.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Builder/DefaultUuidBuilder.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Builder/DegradedUuidBuilder.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Builder/DegradedUuidBuilder.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Builder/FallbackBuilder.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Builder/UuidBuilderInterface.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Builder/UuidBuilderInterface.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Codec/
|
icinga-php/ipl/vendor/ramsey/uuid/src/Codec/
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Codec/CodecInterface.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Codec/CodecInterface.php
|
||||||
|
@ -587,46 +694,111 @@ icinga-php/ipl/vendor/ramsey/uuid/src/Converter/
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/Number/
|
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/Number/
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/Number/BigNumberConverter.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/Number/BigNumberConverter.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/Number/DegradedNumberConverter.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/Number/DegradedNumberConverter.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/Number/GenericNumberConverter.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/NumberConverterInterface.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/NumberConverterInterface.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/Time/
|
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/Time/
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/Time/BigNumberTimeConverter.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/Time/BigNumberTimeConverter.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/Time/DegradedTimeConverter.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/Time/DegradedTimeConverter.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/Time/GenericTimeConverter.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/Time/PhpTimeConverter.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/Time/PhpTimeConverter.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/TimeConverterInterface.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Converter/TimeConverterInterface.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/DegradedUuid.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/DegradedUuid.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/DeprecatedUuidInterface.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/DeprecatedUuidMethodsTrait.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Exception/
|
icinga-php/ipl/vendor/ramsey/uuid/src/Exception/
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Exception/BuilderNotFoundException.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Exception/DateTimeException.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Exception/DceSecurityException.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Exception/InvalidArgumentException.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Exception/InvalidBytesException.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Exception/InvalidUuidStringException.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Exception/InvalidUuidStringException.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Exception/UnsatisfiedDependencyException.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Exception/NameException.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Exception/NodeException.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Exception/RandomSourceException.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Exception/TimeSourceException.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Exception/UnableToBuildUuidException.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Exception/UnsupportedOperationException.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Exception/UnsupportedOperationException.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Exception/UuidExceptionInterface.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/FeatureSet.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/FeatureSet.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Fields/
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Fields/FieldsInterface.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Fields/SerializableFieldsTrait.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/
|
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/CombGenerator.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/CombGenerator.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/DceSecurityGenerator.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/DceSecurityGeneratorInterface.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/DefaultNameGenerator.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/DefaultTimeGenerator.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/DefaultTimeGenerator.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/MtRandGenerator.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/NameGeneratorFactory.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/OpenSslGenerator.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/NameGeneratorInterface.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/PeclUuidNameGenerator.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/PeclUuidRandomGenerator.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/PeclUuidRandomGenerator.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/PeclUuidTimeGenerator.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/PeclUuidTimeGenerator.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/RandomBytesGenerator.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/RandomBytesGenerator.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/RandomGeneratorFactory.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/RandomGeneratorFactory.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/RandomGeneratorInterface.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/RandomGeneratorInterface.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/RandomLibAdapter.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/RandomLibAdapter.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/SodiumRandomGenerator.php
|
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/TimeGeneratorFactory.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/TimeGeneratorFactory.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/TimeGeneratorInterface.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Generator/TimeGeneratorInterface.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Guid/
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Guid/Fields.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Guid/Guid.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Guid/GuidBuilder.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Lazy/
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Lazy/LazyUuidFromString.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Math/
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Math/BrickMathCalculator.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Math/CalculatorInterface.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Math/RoundingMode.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Nonstandard/
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Nonstandard/Fields.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Nonstandard/Uuid.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Nonstandard/UuidBuilder.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Nonstandard/UuidV6.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/
|
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/Dce/
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/Dce/SystemDceSecurityProvider.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/DceSecurityProviderInterface.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/Node/
|
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/Node/
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/Node/FallbackNodeProvider.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/Node/FallbackNodeProvider.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/Node/NodeProviderCollection.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/Node/RandomNodeProvider.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/Node/RandomNodeProvider.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/Node/StaticNodeProvider.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/Node/SystemNodeProvider.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/Node/SystemNodeProvider.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/NodeProviderInterface.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/NodeProviderInterface.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/Time/
|
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/Time/
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/Time/FixedTimeProvider.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/Time/FixedTimeProvider.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/Time/SystemTimeProvider.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/Time/SystemTimeProvider.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/TimeProviderInterface.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Provider/TimeProviderInterface.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Rfc4122/
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Rfc4122/Fields.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Rfc4122/FieldsInterface.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Rfc4122/NilTrait.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Rfc4122/NilUuid.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Rfc4122/UuidBuilder.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Rfc4122/UuidInterface.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Rfc4122/UuidV1.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Rfc4122/UuidV2.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Rfc4122/UuidV3.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Rfc4122/UuidV4.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Rfc4122/UuidV5.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Rfc4122/Validator.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Rfc4122/VariantTrait.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Rfc4122/VersionTrait.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Type/
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Type/Decimal.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Type/Hexadecimal.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Type/Integer.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Type/NumberInterface.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Type/Time.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Type/TypeInterface.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/Uuid.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/Uuid.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/UuidFactory.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/UuidFactory.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/UuidFactoryInterface.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/UuidFactoryInterface.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/UuidInterface.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/UuidInterface.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Validator/
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Validator/GenericValidator.php
|
||||||
|
icinga-php/ipl/vendor/ramsey/uuid/src/Validator/ValidatorInterface.php
|
||||||
icinga-php/ipl/vendor/ramsey/uuid/src/functions.php
|
icinga-php/ipl/vendor/ramsey/uuid/src/functions.php
|
||||||
icinga-php/ipl/vendor/react/
|
icinga-php/ipl/vendor/react/
|
||||||
icinga-php/ipl/vendor/react/event-loop/
|
icinga-php/ipl/vendor/react/event-loop/
|
||||||
|
@ -723,6 +895,19 @@ icinga-php/ipl/vendor/symfony/polyfill-ctype/LICENSE
|
||||||
icinga-php/ipl/vendor/symfony/polyfill-ctype/bootstrap.php
|
icinga-php/ipl/vendor/symfony/polyfill-ctype/bootstrap.php
|
||||||
icinga-php/ipl/vendor/symfony/polyfill-ctype/bootstrap80.php
|
icinga-php/ipl/vendor/symfony/polyfill-ctype/bootstrap80.php
|
||||||
icinga-php/ipl/vendor/symfony/polyfill-ctype/composer.json
|
icinga-php/ipl/vendor/symfony/polyfill-ctype/composer.json
|
||||||
|
icinga-php/ipl/vendor/symfony/polyfill-php80/
|
||||||
|
icinga-php/ipl/vendor/symfony/polyfill-php80/LICENSE
|
||||||
|
icinga-php/ipl/vendor/symfony/polyfill-php80/Php80.php
|
||||||
|
icinga-php/ipl/vendor/symfony/polyfill-php80/PhpToken.php
|
||||||
|
icinga-php/ipl/vendor/symfony/polyfill-php80/Resources/
|
||||||
|
icinga-php/ipl/vendor/symfony/polyfill-php80/Resources/stubs/
|
||||||
|
icinga-php/ipl/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php
|
||||||
|
icinga-php/ipl/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php
|
||||||
|
icinga-php/ipl/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php
|
||||||
|
icinga-php/ipl/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php
|
||||||
|
icinga-php/ipl/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php
|
||||||
|
icinga-php/ipl/vendor/symfony/polyfill-php80/bootstrap.php
|
||||||
|
icinga-php/ipl/vendor/symfony/polyfill-php80/composer.json
|
||||||
icinga-php/ipl/vendor/webmozart/
|
icinga-php/ipl/vendor/webmozart/
|
||||||
icinga-php/ipl/vendor/webmozart/assert/
|
icinga-php/ipl/vendor/webmozart/assert/
|
||||||
icinga-php/ipl/vendor/webmozart/assert/LICENSE
|
icinga-php/ipl/vendor/webmozart/assert/LICENSE
|
||||||
|
@ -731,3 +916,75 @@ icinga-php/ipl/vendor/webmozart/assert/src/
|
||||||
icinga-php/ipl/vendor/webmozart/assert/src/Assert.php
|
icinga-php/ipl/vendor/webmozart/assert/src/Assert.php
|
||||||
icinga-php/ipl/vendor/webmozart/assert/src/InvalidArgumentException.php
|
icinga-php/ipl/vendor/webmozart/assert/src/InvalidArgumentException.php
|
||||||
icinga-php/ipl/vendor/webmozart/assert/src/Mixin.php
|
icinga-php/ipl/vendor/webmozart/assert/src/Mixin.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/LICENSE
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lessc.inc.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Autoloader.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Cache.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Colors.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Configurable.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Environment.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Exception/
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Exception/Chunk.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Exception/Compiler.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Exception/Parser.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Functions.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Mime.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Output/
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Output.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Output/Mapped.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Parser.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/SourceMap/
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/SourceMap/Base64VLQ.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/SourceMap/Generator.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Alpha.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Anonymous.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Assignment.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Attribute.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Call.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Color.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Comment.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Condition.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/DefaultFunc.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/DetachedRuleset.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Dimension.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Directive.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Element.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Expression.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Extend.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Import.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Javascript.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Keyword.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Media.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Mixin/
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Mixin/Call.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Mixin/Definition.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/NameValue.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Negative.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Operation.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Paren.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Quoted.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Rule.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Ruleset.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/RulesetCall.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Selector.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/UnicodeDescriptor.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Unit.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/UnitConversions.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Url.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Value.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Tree/Variable.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Version.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Visitor/
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Visitor.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Visitor/extendFinder.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Visitor/import.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Visitor/joinSelector.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Visitor/processExtends.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/Visitor/toCSS.php
|
||||||
|
icinga-php/ipl/vendor/wikimedia/less.php/lib/Less/VisitorReplacing.php
|
||||||
|
|
3
net/icinga/icinga-php-thirdparty/Makefile
vendored
3
net/icinga/icinga-php-thirdparty/Makefile
vendored
|
@ -1,8 +1,7 @@
|
||||||
COMMENT= bundle of 3rd party PHP libraries used by Icinga Web
|
COMMENT= bundle of 3rd party PHP libraries used by Icinga Web
|
||||||
|
|
||||||
GH_PROJECT= icinga-php-thirdparty
|
GH_PROJECT= icinga-php-thirdparty
|
||||||
GH_TAGNAME= v0.11.0
|
GH_TAGNAME= v0.12.0
|
||||||
REVISION= 0
|
|
||||||
|
|
||||||
MODULE_DEST= ${PREFIX}/icinga-php/vendor
|
MODULE_DEST= ${PREFIX}/icinga-php/vendor
|
||||||
|
|
||||||
|
|
4
net/icinga/icinga-php-thirdparty/distinfo
vendored
4
net/icinga/icinga-php-thirdparty/distinfo
vendored
|
@ -1,2 +1,2 @@
|
||||||
SHA256 (icinga-php-thirdparty-0.11.0.tar.gz) = SZio2qagN6v0rTb1vJNcxb26bjUWdJQP1uymjCc1rxk=
|
SHA256 (icinga-php-thirdparty-0.12.0.tar.gz) = f1H1LqF/tSBoLhRhFWOiblMufELXxh0PsX68gMfFKDg=
|
||||||
SIZE (icinga-php-thirdparty-0.11.0.tar.gz) = 764914
|
SIZE (icinga-php-thirdparty-0.12.0.tar.gz) = 14204157
|
||||||
|
|
5555
net/icinga/icinga-php-thirdparty/pkg/PLIST
vendored
5555
net/icinga/icinga-php-thirdparty/pkg/PLIST
vendored
File diff suppressed because it is too large
Load diff
|
@ -2,9 +2,8 @@ COMMENT = next-generation web UI for icinga
|
||||||
|
|
||||||
GH_ACCOUNT = Icinga
|
GH_ACCOUNT = Icinga
|
||||||
GH_PROJECT = icingaweb2
|
GH_PROJECT = icingaweb2
|
||||||
GH_TAGNAME = v2.11.4
|
GH_TAGNAME = v2.12.0
|
||||||
PKGNAME = icinga-web2-${GH_TAGNAME:S/v//}
|
PKGNAME = icinga-web2-${GH_TAGNAME:S/v//}
|
||||||
REVISION = 0
|
|
||||||
|
|
||||||
MODULES= lang/php
|
MODULES= lang/php
|
||||||
|
|
||||||
|
@ -12,8 +11,8 @@ MODPHP_PDO_ALLOWED = mysql pgsql
|
||||||
MODPHP_PDO_PREF = mysql
|
MODPHP_PDO_PREF = mysql
|
||||||
|
|
||||||
RUN_DEPENDS = lang/php/${MODPHP_VERSION},-intl \
|
RUN_DEPENDS = lang/php/${MODPHP_VERSION},-intl \
|
||||||
net/icinga/icinga-php-library>=0.8 \
|
net/icinga/icinga-php-library>=0.13 \
|
||||||
net/icinga/icinga-php-thirdparty \
|
net/icinga/icinga-php-thirdparty>=0.12 \
|
||||||
${MODPHP_PDO_DEPENDS}
|
${MODPHP_PDO_DEPENDS}
|
||||||
|
|
||||||
NO_TEST = Yes
|
NO_TEST = Yes
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
SHA256 (icingaweb2-2.11.4.tar.gz) = 6ZRL9Xo78zn9a9hi3a+IWZG4tFzo8FeYa3Mr+Vs/EU4=
|
SHA256 (icingaweb2-2.12.0.tar.gz) = RQfn7uwRl83EHVZMXJmE+NhYtw2QqBBlLWUwwexJzlE=
|
||||||
SIZE (icingaweb2-2.11.4.tar.gz) = 11381515
|
SIZE (icingaweb2-2.12.0.tar.gz) = 6354699
|
||||||
|
|
|
@ -3,7 +3,7 @@ Use /var/www/etc/icingaweb2.
|
||||||
Index: library/Icinga/Application/ApplicationBootstrap.php
|
Index: library/Icinga/Application/ApplicationBootstrap.php
|
||||||
--- library/Icinga/Application/ApplicationBootstrap.php.orig
|
--- library/Icinga/Application/ApplicationBootstrap.php.orig
|
||||||
+++ library/Icinga/Application/ApplicationBootstrap.php
|
+++ library/Icinga/Application/ApplicationBootstrap.php
|
||||||
@@ -175,7 +175,7 @@ abstract class ApplicationBootstrap
|
@@ -168,7 +168,7 @@ abstract class ApplicationBootstrap
|
||||||
if ($configDir === false) {
|
if ($configDir === false) {
|
||||||
$configDir = Platform::isWindows()
|
$configDir = Platform::isWindows()
|
||||||
? $baseDir . '/config'
|
? $baseDir . '/config'
|
||||||
|
@ -12,7 +12,7 @@ Index: library/Icinga/Application/ApplicationBootstrap.php
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$canonical = realpath($configDir);
|
$canonical = realpath($configDir);
|
||||||
@@ -200,9 +200,9 @@ abstract class ApplicationBootstrap
|
@@ -193,9 +193,9 @@ abstract class ApplicationBootstrap
|
||||||
explode(':', $libraryPaths)
|
explode(':', $libraryPaths)
|
||||||
), 'is_dir');
|
), 'is_dir');
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
--- modules/setup/application/clicommands/ConfigCommand.php.orig Tue Nov 10 17:42:57 2015
|
Index: modules/setup/application/clicommands/ConfigCommand.php
|
||||||
+++ modules/setup/application/clicommands/ConfigCommand.php Tue Nov 10 17:43:43 2015
|
--- modules/setup/application/clicommands/ConfigCommand.php.orig
|
||||||
@@ -23,7 +23,7 @@ class ConfigCommand extends Command
|
+++ modules/setup/application/clicommands/ConfigCommand.php
|
||||||
|
@@ -24,7 +24,7 @@ class ConfigCommand extends Command
|
||||||
*
|
*
|
||||||
* --mode=<mode> The access mode to use [2770]
|
* --mode=<mode> The access mode to use [2770]
|
||||||
*
|
*
|
||||||
|
@ -9,7 +10,7 @@
|
||||||
*
|
*
|
||||||
* EXAMPLES:
|
* EXAMPLES:
|
||||||
*
|
*
|
||||||
@@ -40,7 +40,7 @@ class ConfigCommand extends Command
|
@@ -41,7 +41,7 @@ class ConfigCommand extends Command
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -4,9 +4,9 @@ DISTNAME= ii-2.0
|
||||||
CATEGORIES= net
|
CATEGORIES= net
|
||||||
|
|
||||||
HOMEPAGE= https://tools.suckless.org/ii
|
HOMEPAGE= https://tools.suckless.org/ii
|
||||||
MASTER_SITES= https://dl.suckless.org/tools/
|
SITES= https://dl.suckless.org/tools/
|
||||||
MASTER_SITES0= ${HOMEPAGE}/patches/tls/
|
SITES.p1= ${HOMEPAGE}/patches/tls/
|
||||||
MASTER_SITES1= ${HOMEPAGE}/patches/ucspi/
|
SITES.p2= ${HOMEPAGE}/patches/ucspi/
|
||||||
|
|
||||||
MAINTAINER= Jan Klemkow <j.klemkow@wemelug.de>
|
MAINTAINER= Jan Klemkow <j.klemkow@wemelug.de>
|
||||||
|
|
||||||
|
@ -26,16 +26,16 @@ PATCH_DIST_STRIP= -p1
|
||||||
|
|
||||||
.if ${FLAVOR} == "ucspi"
|
.if ${FLAVOR} == "ucspi"
|
||||||
# adds unix client server programming interface support
|
# adds unix client server programming interface support
|
||||||
PATCHFILES+= ${DISTNAME}-ucspi.diff:1
|
PATCHFILES.p2+= ${DISTNAME}-ucspi.diff
|
||||||
RUN_DEPENDS= net/ucspi-tools
|
RUN_DEPENDS= net/ucspi-tools
|
||||||
.else
|
.else
|
||||||
# adds tls encryption support
|
# adds tls encryption support
|
||||||
PATCHFILES+= ${DISTNAME}-tls.diff:0
|
PATCHFILES.p1+= ${DISTNAME}-tls.diff
|
||||||
WANTLIB+= tls
|
WANTLIB+= tls
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
SUPDISTFILES+= ${DISTNAME}-tls.diff:0
|
SUPDISTFILES.p1+= ${DISTNAME}-tls.diff
|
||||||
SUPDISTFILES+= ${DISTNAME}-ucspi.diff:1
|
SUPDISTFILES.p2+= ${DISTNAME}-ucspi.diff
|
||||||
|
|
||||||
FAKE_FLAGS= MANPREFIX=${PREFIX}/man
|
FAKE_FLAGS= MANPREFIX=${PREFIX}/man
|
||||||
|
|
||||||
|
|
|
@ -12,8 +12,8 @@ GH_TAGNAME = jitsi-meet_8319
|
||||||
DISTFILES += ${GH_DISTFILE}
|
DISTFILES += ${GH_DISTFILE}
|
||||||
|
|
||||||
# vendor maven dependencies
|
# vendor maven dependencies
|
||||||
MASTER_SITES7 = https://files.bsd.ac/openbsd-distfiles/
|
SITES.maven = https://files.bsd.ac/openbsd-distfiles/
|
||||||
DISTFILES += jicofo-deps-${VERSION}.tgz:7
|
DISTFILES.maven += jicofo-deps-${VERSION}.tgz
|
||||||
|
|
||||||
MAINTAINER = Philipp Buehler <pb-openbsd@sysfive.com>, \
|
MAINTAINER = Philipp Buehler <pb-openbsd@sysfive.com>, \
|
||||||
Aisha Tammy <aisha@openbsd.org>
|
Aisha Tammy <aisha@openbsd.org>
|
||||||
|
|
|
@ -14,8 +14,8 @@ REVISION = 0
|
||||||
DISTFILES += ${GH_DISTFILE}
|
DISTFILES += ${GH_DISTFILE}
|
||||||
|
|
||||||
# vendor maven dependencies
|
# vendor maven dependencies
|
||||||
MASTER_SITES7 = https://files.bsd.ac/openbsd-distfiles/
|
SITES.maven = https://files.bsd.ac/openbsd-distfiles/
|
||||||
DISTFILES += jitsi-srtp-deps-${VERSION}.tgz:7
|
DISTFILES.maven += jitsi-srtp-deps-${VERSION}.tgz
|
||||||
|
|
||||||
MAINTAINER = Philipp Buehler <pb-openbsd@sysfive.com>, \
|
MAINTAINER = Philipp Buehler <pb-openbsd@sysfive.com>, \
|
||||||
Aisha Tammy <aisha@openbsd.org>
|
Aisha Tammy <aisha@openbsd.org>
|
||||||
|
|
|
@ -12,8 +12,8 @@ GH_COMMIT = f6426ea01d6d4426149dd2bf658d388f447b9f5d
|
||||||
DISTFILES += ${GH_DISTFILE}
|
DISTFILES += ${GH_DISTFILE}
|
||||||
|
|
||||||
# vendor maven dependencies
|
# vendor maven dependencies
|
||||||
MASTER_SITES7 = https://files.bsd.ac/openbsd-distfiles/
|
SITES.maven = https://files.bsd.ac/openbsd-distfiles/
|
||||||
DISTFILES += jitsi-videobridge-deps-${VERSION}.tgz:7
|
DISTFILES.maven += jitsi-videobridge-deps-${VERSION}.tgz
|
||||||
|
|
||||||
MAINTAINER = Philipp Buehler <pb-openbsd@sysfive.com>, \
|
MAINTAINER = Philipp Buehler <pb-openbsd@sysfive.com>, \
|
||||||
Aisha Tammy <aisha@openbsd.org>
|
Aisha Tammy <aisha@openbsd.org>
|
||||||
|
|
|
@ -10,8 +10,8 @@ PKGNAME-main = libmaxminddb-${V}
|
||||||
PKGNAME-db = geolite2-country-${D}
|
PKGNAME-db = geolite2-country-${D}
|
||||||
PKGNAME-city = geolite2-city-${D}
|
PKGNAME-city = geolite2-city-${D}
|
||||||
PKGNAME-asn = geolite2-asn-${D}
|
PKGNAME-asn = geolite2-asn-${D}
|
||||||
DISTFILES = ${DISTNAME}${EXTRACT_SUFX} \
|
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
||||||
geolite2-data-$D.tar.xz:0
|
DISTFILES.d = geolite2-data-$D.tar.xz
|
||||||
REVISION-db = 1
|
REVISION-db = 1
|
||||||
REVISION-city = 1
|
REVISION-city = 1
|
||||||
REVISION-asn = 1
|
REVISION-asn = 1
|
||||||
|
@ -28,8 +28,8 @@ PERMIT_PACKAGE = Yes
|
||||||
|
|
||||||
WANTLIB-main += c m pthread
|
WANTLIB-main += c m pthread
|
||||||
|
|
||||||
MASTER_SITES = https://github.com/maxmind/libmaxminddb/releases/download/${V}/
|
SITES = https://github.com/maxmind/libmaxminddb/releases/download/${V}/
|
||||||
MASTER_SITES0 = https://spacehopper.org/mirrors/
|
SITES.d = https://spacehopper.org/mirrors/
|
||||||
|
|
||||||
MULTI_PACKAGES = -main -db -city -asn
|
MULTI_PACKAGES = -main -db -city -asn
|
||||||
|
|
||||||
|
|
|
@ -16,11 +16,11 @@ FULLPKGPATH-main = net/mattermost-server,-main
|
||||||
FULLPKGNAME-mmctl = mmctl-${V}
|
FULLPKGNAME-mmctl = mmctl-${V}
|
||||||
FULLPKGPATH-mmctl = net/mattermost-server,-mmctl
|
FULLPKGPATH-mmctl = net/mattermost-server,-mmctl
|
||||||
|
|
||||||
MASTER_SITES = https://distfiles.tristero.se/
|
SITES = https://distfiles.tristero.se/
|
||||||
MASTER_SITES0 = https://releases.mattermost.com/${V}/
|
SITES.a = https://releases.mattermost.com/${V}/
|
||||||
|
|
||||||
DISTFILES += ${DISTNAME}${EXTRACT_SUFX} \
|
DISTFILES += ${DISTNAME}${EXTRACT_SUFX}
|
||||||
mattermost-${V}-linux-amd64${EXTRACT_SUFX}:0
|
DISTFILES.a += mattermost-${V}-linux-amd64${EXTRACT_SUFX}
|
||||||
|
|
||||||
CATEGORIES = net
|
CATEGORIES = net
|
||||||
HOMEPAGE = https://mattermost.com/
|
HOMEPAGE = https://mattermost.com/
|
||||||
|
|
|
@ -4,8 +4,8 @@ V = 4.2.0.11670
|
||||||
GRAPHAPI_V = 1.0.1
|
GRAPHAPI_V = 1.0.1
|
||||||
DISTNAME = ownCloud-${V}
|
DISTNAME = ownCloud-${V}
|
||||||
PKGNAME = owncloudclient-${V}
|
PKGNAME = owncloudclient-${V}
|
||||||
DISTFILES += ownCloud-${V}.tar.xz \
|
DISTFILES += ownCloud-${V}.tar.xz
|
||||||
libre-graph-api-cpp-qt-client-{}v${GRAPHAPI_V}.tar.gz:0
|
DISTFILES.a += libre-graph-api-cpp-qt-client-{}v${GRAPHAPI_V}.tar.gz
|
||||||
|
|
||||||
SHARED_LIBS += owncloudsync 9.0
|
SHARED_LIBS += owncloudsync 9.0
|
||||||
SHARED_LIBS += owncloud_csync 3.0
|
SHARED_LIBS += owncloud_csync 3.0
|
||||||
|
@ -24,9 +24,9 @@ WANTLIB += Qt5Concurrent Qt5Core Qt5DBus Qt5Gui Qt5Network Qt5Widgets
|
||||||
WANTLIB += Qt5Xml c m qt5keychain sqlite3 z
|
WANTLIB += Qt5Xml c m qt5keychain sqlite3 z
|
||||||
WANTLIB += ${COMPILER_LIBCXX} lib/inotify/inotify
|
WANTLIB += ${COMPILER_LIBCXX} lib/inotify/inotify
|
||||||
|
|
||||||
MASTER_SITES = https://download.owncloud.com/desktop/ownCloud/stable/latest/source/ \
|
SITES = https://download.owncloud.com/desktop/ownCloud/stable/latest/source/ \
|
||||||
https://download.owncloud.com/desktop/ownCloud/stable/${V}/source/
|
https://download.owncloud.com/desktop/ownCloud/stable/${V}/source/
|
||||||
MASTER_SITES0 = https://github.com/owncloud/libre-graph-api-cpp-qt-client/archive/refs/tags/
|
SITES.a = https://github.com/owncloud/libre-graph-api-cpp-qt-client/archive/refs/tags/
|
||||||
|
|
||||||
MODULES = devel/cmake x11/qt5
|
MODULES = devel/cmake x11/qt5
|
||||||
|
|
||||||
|
|
|
@ -5,8 +5,8 @@ PKG_ARCH= *
|
||||||
D= 20190301
|
D= 20190301
|
||||||
DISTNAME= IP-Country-2.28
|
DISTNAME= IP-Country-2.28
|
||||||
PKGNAME= p5-${DISTNAME}.$D
|
PKGNAME= p5-${DISTNAME}.$D
|
||||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
|
||||||
IP-Country-data-$D.tar.bz2:0
|
DISTFILES.data= IP-Country-data-$D.tar.bz2
|
||||||
REVISION= 0
|
REVISION= 0
|
||||||
|
|
||||||
CATEGORIES= net
|
CATEGORIES= net
|
||||||
|
@ -16,7 +16,7 @@ MAINTAINER = Giovanni Bechis <giovanni@openbsd.org>
|
||||||
# Artistic
|
# Artistic
|
||||||
PERMIT_PACKAGE= Yes
|
PERMIT_PACKAGE= Yes
|
||||||
|
|
||||||
MASTER_SITES0 = https://paclan.it/distfiles/
|
SITES.data = https://paclan.it/distfiles/
|
||||||
|
|
||||||
RUN_DEPENDS = geo/p5-Geography-Countries
|
RUN_DEPENDS = geo/p5-Geography-Countries
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
COMMENT = console based XMPP client
|
COMMENT = console based XMPP client
|
||||||
DISTNAME = profanity-0.14.0
|
DISTNAME = profanity-0.14.0
|
||||||
|
REVISION = 0
|
||||||
CATEGORIES = net
|
CATEGORIES = net
|
||||||
|
|
||||||
HOMEPAGE = https://profanity-im.github.io/
|
HOMEPAGE = https://profanity-im.github.io/
|
||||||
|
@ -15,7 +16,7 @@ MASTER_SITES = https://profanity-im.github.io/tarballs/
|
||||||
|
|
||||||
WANTLIB += assuan c crypto curl curses ereadline expat ffi gcrypt
|
WANTLIB += assuan c crypto curl curses ereadline expat ffi gcrypt
|
||||||
WANTLIB += gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0 gpg-error
|
WANTLIB += gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0 gpg-error
|
||||||
WANTLIB += gpgme iconv intl m nghttp2 nghttp3 ngtcp2 ngtcp2_crypto_openssl
|
WANTLIB += gpgme iconv intl m nghttp2 nghttp3 ngtcp2 ngtcp2_crypto_quictls
|
||||||
WANTLIB += otr pcre2-8 pthread python3.10 qrencode signal-protocol-c
|
WANTLIB += otr pcre2-8 pthread python3.10 qrencode signal-protocol-c
|
||||||
WANTLIB += sqlite3 ssl strophe util z
|
WANTLIB += sqlite3 ssl strophe util z
|
||||||
|
|
||||||
|
|
|
@ -14,9 +14,10 @@ MAINTAINER = Alexander Bluhm <bluhm@openbsd.org>
|
||||||
# GPLv2
|
# GPLv2
|
||||||
PERMIT_PACKAGE = Yes
|
PERMIT_PACKAGE = Yes
|
||||||
|
|
||||||
MASTER_SITES0 = https://spacehopper.org/mirrors/
|
SITES.data = https://spacehopper.org/mirrors/
|
||||||
DISTFILES = ${EXTRACT_ONLY} ethertypes-20120703:0
|
DISTFILES = ${DISTNAME}${EXTRACT_SUFX}
|
||||||
EXTRACT_ONLY = ${DISTNAME}${EXTRACT_SUFX}
|
DISTFILES.data = ethertypes-20120703
|
||||||
|
EXTRACT_ONLY = ${DISTFILES}
|
||||||
|
|
||||||
MODULES = lang/python
|
MODULES = lang/python
|
||||||
MODPY_PI = Yes
|
MODPY_PI = Yes
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue