forked from Lainports/opnsense-ports
*/*: sync with upstream
Taken from: FreeBSD
This commit is contained in:
parent
859c790f0d
commit
9b6a4bce11
217 changed files with 4462 additions and 1081 deletions
|
|
@ -20,12 +20,6 @@ GL_COMMIT= 4d9092861f57bbb4a8e64d14b29ec6aaa1c9190f
|
|||
PLIST_FILES= sbin/${PORTNAME} \
|
||||
share/man/man8/${PORTNAME}.8.gz
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400071
|
||||
IGNORE= uses struct sysctl_oid definition previous FreeBSD 1400071
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin
|
||||
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${MAN8PREFIX}/share/man/man8
|
||||
|
|
@ -38,4 +32,4 @@ USES+= ncurses
|
|||
USES+= ncurses:port
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@
|
|||
SUBDIR += emboss
|
||||
SUBDIR += erminej
|
||||
SUBDIR += exonerate
|
||||
SUBDIR += fasda
|
||||
SUBDIR += fasta
|
||||
SUBDIR += fasta3
|
||||
SUBDIR += fastahack
|
||||
|
|
@ -189,6 +190,7 @@
|
|||
SUBDIR += rampler
|
||||
SUBDIR += readseq
|
||||
SUBDIR += recombine
|
||||
SUBDIR += rna-seq
|
||||
SUBDIR += ruby-bio
|
||||
SUBDIR += rubygem-bio
|
||||
SUBDIR += rubygem-bio-executables
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
PORTNAME= biolibc-tools
|
||||
DISTVERSION= 0.1.3
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 0.1.4
|
||||
CATEGORIES= biology
|
||||
|
||||
MAINTAINER= jwb@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1654951264
|
||||
SHA256 (auerlab-biolibc-tools-0.1.3_GH0.tar.gz) = 0d5d983ea84e2aa8b23a4954b06f0f7b2eee033b570bf593d75a1196989b985e
|
||||
SIZE (auerlab-biolibc-tools-0.1.3_GH0.tar.gz) = 27735
|
||||
TIMESTAMP = 1670785195
|
||||
SHA256 (auerlab-biolibc-tools-0.1.4_GH0.tar.gz) = aeecef87eecc3179cf033200b75be323737b46bc31ed6828d6524ce765bd8924
|
||||
SIZE (auerlab-biolibc-tools-0.1.4_GH0.tar.gz) = 28878
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
bin/blt
|
||||
libexec/biolibc-tools/chrom-lens
|
||||
libexec/biolibc-tools/deromanize
|
||||
libexec/biolibc-tools/ensemblid2gene
|
||||
libexec/biolibc-tools/extract-seq
|
||||
libexec/biolibc-tools/fasta2seq
|
||||
|
|
@ -13,6 +14,7 @@ libexec/biolibc-tools/uniq-seqs.awk
|
|||
libexec/biolibc-tools/vcf-downsample
|
||||
libexec/biolibc-tools/vcf-search
|
||||
man/man1/blt-chrom-lens.1.gz
|
||||
man/man1/blt-deromanize.1.gz
|
||||
man/man1/blt-ensemblid2gene.1.gz
|
||||
man/man1/blt-extract-seq.1.gz
|
||||
man/man1/blt-fasta2seq.1.gz
|
||||
|
|
|
|||
25
biology/fasda/Makefile
Normal file
25
biology/fasda/Makefile
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
PORTNAME= fasda
|
||||
DISTVERSION= 0.1.2
|
||||
CATEGORIES= biology
|
||||
|
||||
MAINTAINER= jwb@FreeBSD.org
|
||||
COMMENT= Fast and simple differential analysis
|
||||
WWW= https://github.com/auerlab/fasda
|
||||
|
||||
LICENSE= BSD2CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
LIB_DEPENDS= libxtend.so:devel/libxtend libbiolibc.so:biology/biolibc
|
||||
|
||||
USES= localbase
|
||||
USE_GITHUB= yes
|
||||
|
||||
GH_ACCOUNT= auerlab
|
||||
|
||||
MAKE_ENV= VERSION=${PORTVERSION}
|
||||
INSTALL_TARGET= install-strip
|
||||
|
||||
pre-build:
|
||||
cd ${WRKSRC} && make depend LOCALBASE=${LOCALBASE}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
biology/fasda/distinfo
Normal file
3
biology/fasda/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1670865129
|
||||
SHA256 (auerlab-fasda-0.1.2_GH0.tar.gz) = ea6003795b462286d4b7ea11924f424cdea418a345ceeccd1a04d679edf2374e
|
||||
SIZE (auerlab-fasda-0.1.2_GH0.tar.gz) = 57295
|
||||
5
biology/fasda/pkg-descr
Normal file
5
biology/fasda/pkg-descr
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
FASDA aims to provide a fast and simple differential analysis tool
|
||||
that just works and does not require any knowledge beyond basic Unix
|
||||
command-line skills. The code is written entirely in C to maximize
|
||||
efficiency and portability, and to provide a simple command-line user
|
||||
interface.
|
||||
10
biology/fasda/pkg-plist
Normal file
10
biology/fasda/pkg-plist
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
bin/fasda
|
||||
libexec/fasda/abundance
|
||||
libexec/fasda/fold-change
|
||||
libexec/fasda/normalize
|
||||
libexec/fasda/pval-sim
|
||||
man/man1/fasda-abundance.1.gz
|
||||
man/man1/fasda-fold-change.1.gz
|
||||
man/man1/fasda-normalize.1.gz
|
||||
man/man1/fasda-pval-sim.1.gz
|
||||
man/man1/fasda.1.gz
|
||||
26
biology/rna-seq/Makefile
Normal file
26
biology/rna-seq/Makefile
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
PORTNAME= rna-seq
|
||||
DISTVERSION= 0.1.0
|
||||
CATEGORIES= biology python
|
||||
MASTER_SITES= # empty
|
||||
|
||||
MAINTAINER= jwb@FreeBSD.org
|
||||
COMMENT= Metaport for RNA-Seq analysis
|
||||
WWW= https://example.com/rna-seq
|
||||
|
||||
LICENSE= BSD2CLAUSE
|
||||
|
||||
RUN_DEPENDS= sra-tools>0:biology/sra-tools \
|
||||
fastq-trim>0:biology/fastq-trim \
|
||||
fastqc>0:biology/fastqc \
|
||||
${PYTHON_PKGNAMEPREFIX}multiqc>0:biology/py-multiqc@${PY_FLAVOR} \
|
||||
biolibc-tools>0:biology/biolibc-tools \
|
||||
gffread>0:biology/gffread \
|
||||
kallisto>0:biology/kallisto \
|
||||
hisat2>0:biology/hisat2 \
|
||||
samtools>0:biology/samtools \
|
||||
igv>0:biology/igv \
|
||||
fasda>0:biology/fasda
|
||||
|
||||
USES= metaport python
|
||||
|
||||
.include <bsd.port.mk>
|
||||
1
biology/rna-seq/distinfo
Normal file
1
biology/rna-seq/distinfo
Normal file
|
|
@ -0,0 +1 @@
|
|||
TIMESTAMP = 1665354692
|
||||
2
biology/rna-seq/pkg-descr
Normal file
2
biology/rna-seq/pkg-descr
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Metaport to install tools for typical RNA-Seq analysis, including QC,
|
||||
adapter trimming, alignment, and differential analysis.
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
--- builds/posix/prefix.freebsd_powerpc64el.orig 2022-12-12 01:03:21 UTC
|
||||
+++ builds/posix/prefix.freebsd_powerpc64el
|
||||
@@ -0,0 +1,29 @@
|
||||
+# The contents of this file are subject to the Interbase Public
|
||||
+# License Version 1.0 (the "License"); you may not use this file
|
||||
+# except in compliance with the License. You may obtain a copy
|
||||
+# of the License at http://www.Inprise.com/IPL.html
|
||||
+#
|
||||
+# Software distributed under the License is distributed on an
|
||||
+# "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
|
||||
+# or implied. See the License for the specific language governing
|
||||
+# rights and limitations under the License.
|
||||
+#
|
||||
+# The Original Code was created by Inprise Corporation
|
||||
+# and its predecessors. Portions created by Inprise Corporation are
|
||||
+#
|
||||
+# Copyright (C) 2000 Inprise Corporation
|
||||
+# All Rights Reserved.
|
||||
+# Contributor(s): ______________________________________.
|
||||
+# Start of file prefix.freebsd_powerpc64el: $(VERSION) @PLATFORM@
|
||||
+#
|
||||
+# 2 Oct 2002, Nickolay Samofatov - Major Cleanup
|
||||
+
|
||||
+EXE_LINK_OPTIONS := $(LDFLAGS) $(THR_FLAGS) $(UNDEF_FLAGS) $(LIB_PATH_OPTS) -Wl,-rpath,../gen/firebird/lib
|
||||
+
|
||||
+COMMON_FLAGS=-DFREEBSD -DPPC64EL -pipe -MMD -fPIC -fsigned-char
|
||||
+PROD_FLAGS=$(COMMON_FLAGS) -O3 -g -fno-builtin -Wno-deprecated
|
||||
+DEV_FLAGS=$(COMMON_FLAGS) -ggdb -p -Wall -Wno-non-virtual-dtor
|
||||
+
|
||||
+# These files are generated incorrectly (e.g. array.epp => array.cpp)
|
||||
+%/array.o %/blob.o %/alice_meta.o %/restore.o %/backup.o: COMMON_FLAGS += -Wno-narrowing
|
||||
+%/OdsDetection.o %/dba.o: COMMON_FLAGS += -Wno-narrowing
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
--- src/common/classes/DbImplementation.cpp.orig 2022-12-12 01:04:38 UTC
|
||||
+++ src/common/classes/DbImplementation.cpp
|
||||
@@ -126,7 +126,7 @@ const UCHAR backwardTable[FB_NELEM(hardware) * FB_NELE
|
||||
/* HPUX */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0,
|
||||
/* AIX */ 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* MVS */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
-/* FreeBSD */ 61, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
+/* FreeBSD */ 61, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 0, 0,
|
||||
/* NetBSD */ 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
|
||||
};
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
--- src/include/firebird/impl/inf_pub.h.orig 2022-12-12 01:05:33 UTC
|
||||
+++ src/include/firebird/impl/inf_pub.h
|
||||
@@ -298,6 +298,8 @@ enum info_db_implementations
|
||||
isc_info_db_impl_linux_m68k = 87,
|
||||
isc_info_db_impl_linux_riscv64 = 88,
|
||||
|
||||
+ isc_info_db_impl_freebsd_ppc64el = 89,
|
||||
+
|
||||
isc_info_db_impl_last_value // Leave this LAST!
|
||||
};
|
||||
|
||||
|
|
@ -1,6 +1,5 @@
|
|||
PORTNAME= redis
|
||||
DISTVERSION= 6.2.7
|
||||
PORTREVISION= 2
|
||||
DISTVERSION= 6.2.8
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= https://download.redis.io/releases/
|
||||
PKGNAMESUFFIX= 62
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1651088414
|
||||
SHA256 (redis-6.2.7.tar.gz) = b7a79cc3b46d3c6eb52fa37dde34a4a60824079ebdfb3abfbbfa035947c55319
|
||||
SIZE (redis-6.2.7.tar.gz) = 2487287
|
||||
TIMESTAMP = 1670908297
|
||||
SHA256 (redis-6.2.8.tar.gz) = f91ab24bcb42673cb853292eb5d43c2017d11d659854808ed6a529c97297fdfe
|
||||
SIZE (redis-6.2.8.tar.gz) = 2489670
|
||||
|
|
|
|||
|
|
@ -29,9 +29,6 @@ DESKTOP_ENTRIES= "Sysctlview" \
|
|||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400071
|
||||
IGNORE= uses struct sysctl_oid definition previous FreeBSD 1400071
|
||||
.endif
|
||||
.if ${OPSYS} != FreeBSD
|
||||
IGNORE= not supported on anything but FreeBSD
|
||||
.endif
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= courier-unicode
|
||||
PORTVERSION= 2.2.5
|
||||
PORTVERSION= 2.2.6
|
||||
CATEGORIES= devel mail
|
||||
MASTER_SITES= SF/courier/${PORTNAME}/${PORTVERSION}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1668435174
|
||||
SHA256 (courier-unicode-2.2.5.tar.bz2) = 5f42cbaec318ad69366745c9409025c7e0eb8692e887a8382e46b9767b8b98b8
|
||||
SIZE (courier-unicode-2.2.5.tar.bz2) = 595050
|
||||
TIMESTAMP = 1670179507
|
||||
SHA256 (courier-unicode-2.2.6.tar.bz2) = 513f68066ed192ace630f601984c565b5c1d1c81d98c6478ebe4edb3a15be03a
|
||||
SIZE (courier-unicode-2.2.6.tar.bz2) = 598551
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
PORTNAME= delve
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 1.9.1
|
||||
PORTREVISION= 3
|
||||
DISTVERSION= 1.20.0
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= dmitry.wagin@ya.ru
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1662056879
|
||||
SHA256 (go-delve-delve-v1.9.1_GH0.tar.gz) = d8d119e74ae47799baa60c08faf2c2872fefce9264b36475ddac8e3a7efc6727
|
||||
SIZE (go-delve-delve-v1.9.1_GH0.tar.gz) = 9161538
|
||||
TIMESTAMP = 1670667576
|
||||
SHA256 (go-delve-delve-v1.20.0_GH0.tar.gz) = 39d2e3ae965abf5e71f3d8efbef368b1ee1d7154ea6604ec71d508350d419d03
|
||||
SIZE (go-delve-delve-v1.20.0_GH0.tar.gz) = 9184679
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= fatal
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2022.12.05.00
|
||||
DISTVERSION= 2022.12.12.00
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1670266039
|
||||
SHA256 (facebook-fatal-v2022.12.05.00_GH0.tar.gz) = e7f1f8c1cc32350c2521af3110fe8a3565e8438f2d892a5d6b8097df3a810e14
|
||||
SIZE (facebook-fatal-v2022.12.05.00_GH0.tar.gz) = 659043
|
||||
TIMESTAMP = 1670895151
|
||||
SHA256 (facebook-fatal-v2022.12.12.00_GH0.tar.gz) = 778093071c7fb9cdc15dbdfc590185dc95e1bf5fba0062c515b1c0d8dd57e3b0
|
||||
SIZE (facebook-fatal-v2022.12.12.00_GH0.tar.gz) = 658964
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= fbthrift
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2022.12.05.00
|
||||
DISTVERSION= 2022.12.12.00
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1670266036
|
||||
SHA256 (facebook-fbthrift-v2022.12.05.00_GH0.tar.gz) = cd646e54d3dc96271bbfa08366db7d58a2cd913ceb767f3dd7af3cc75bba59c1
|
||||
SIZE (facebook-fbthrift-v2022.12.05.00_GH0.tar.gz) = 11950744
|
||||
TIMESTAMP = 1670895149
|
||||
SHA256 (facebook-fbthrift-v2022.12.12.00_GH0.tar.gz) = a46341b2c347fa5e64dff330e210e093a56b487aa20cc38c9e8ccdbaa5e15c83
|
||||
SIZE (facebook-fbthrift-v2022.12.12.00_GH0.tar.gz) = 11961518
|
||||
|
|
|
|||
|
|
@ -527,7 +527,6 @@ include/thrift/lib/cpp2/type/Any.h
|
|||
include/thrift/lib/cpp2/type/AnyValue.h
|
||||
include/thrift/lib/cpp2/type/BaseType.h
|
||||
include/thrift/lib/cpp2/type/Id.h
|
||||
include/thrift/lib/cpp2/type/Json.h
|
||||
include/thrift/lib/cpp2/type/Name.h
|
||||
include/thrift/lib/cpp2/type/NativeType.h
|
||||
include/thrift/lib/cpp2/type/Protocol.h
|
||||
|
|
@ -542,7 +541,6 @@ include/thrift/lib/cpp2/type/UniversalHashAlgorithm.h
|
|||
include/thrift/lib/cpp2/type/UniversalName.h
|
||||
include/thrift/lib/cpp2/type/detail/AnyType.h
|
||||
include/thrift/lib/cpp2/type/detail/AnyValue.h
|
||||
include/thrift/lib/cpp2/type/detail/Json.h
|
||||
include/thrift/lib/cpp2/type/detail/Name.h
|
||||
include/thrift/lib/cpp2/type/detail/NativeType.h
|
||||
include/thrift/lib/cpp2/type/detail/Runtime.h
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= folly
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2022.12.05.00
|
||||
DISTVERSION= 2022.12.12.00
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1670266028
|
||||
SHA256 (facebook-folly-v2022.12.05.00_GH0.tar.gz) = 1f2327279ee1bca13eb9e773a8ec184d4b2940d8f802fc83e7b395c1f7f04b8c
|
||||
SIZE (facebook-folly-v2022.12.05.00_GH0.tar.gz) = 3763260
|
||||
TIMESTAMP = 1670895143
|
||||
SHA256 (facebook-folly-v2022.12.12.00_GH0.tar.gz) = 14b083e829306f65c2981e37948b3c4b9331640fa88e10500458b825c1237edd
|
||||
SIZE (facebook-folly-v2022.12.12.00_GH0.tar.gz) = 3764458
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
PORTNAME= golangci-lint
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 1.49.0
|
||||
PORTREVISION= 3
|
||||
DISTVERSION= 1.50.1
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= lcook@FreeBSD.org
|
||||
|
|
@ -14,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
|
|||
USES= go:modules
|
||||
|
||||
_BUILD_VERSION= ${DISTVERSION}
|
||||
_BUILD_COMMIT= cc2d97f
|
||||
_BUILD_COMMIT= 8926a95
|
||||
_BUILD_DATE= $$(date -u "+%Y-%m-%dT%H:%M:%SZ")
|
||||
|
||||
GO_MODULE= github.com/${PORTNAME:S/-lint//}/${PORTNAME}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
TIMESTAMP = 1661645691
|
||||
SHA256 (go/devel_golangci-lint/golangci-lint-v1.49.0/v1.49.0.mod) = 70d53e6c2e5ea61d59a0d3d317346e841a2b2f5270f0f404e7eefd9ec3e340c9
|
||||
SIZE (go/devel_golangci-lint/golangci-lint-v1.49.0/v1.49.0.mod) = 8339
|
||||
SHA256 (go/devel_golangci-lint/golangci-lint-v1.49.0/v1.49.0.zip) = a9e4b4ad8d182ae96ea662cfe30ce8d23aad5918c6d3bc7660f81e57a33e970d
|
||||
SIZE (go/devel_golangci-lint/golangci-lint-v1.49.0/v1.49.0.zip) = 1764783
|
||||
TIMESTAMP = 1670894477
|
||||
SHA256 (go/devel_golangci-lint/golangci-lint-v1.50.1/v1.50.1.mod) = 105861f1b6f2e7e504111239dd7400a6a4e929ab0f3f39d06a5f276bba67b71d
|
||||
SIZE (go/devel_golangci-lint/golangci-lint-v1.50.1/v1.50.1.mod) = 8358
|
||||
SHA256 (go/devel_golangci-lint/golangci-lint-v1.50.1/v1.50.1.zip) = 767157d94807fc229ef15d6442063b676d9f26fd2af2ed4101a40af221ca5ca6
|
||||
SIZE (go/devel_golangci-lint/golangci-lint-v1.50.1/v1.50.1.zip) = 1762831
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= jenkins
|
||||
PORTVERSION= 2.361.4
|
||||
PORTVERSION= 2.375.1
|
||||
CATEGORIES= devel java
|
||||
MASTER_SITES= https://get.jenkins.io/war-stable/${PORTVERSION}/
|
||||
PKGNAMESUFFIX= -lts
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1668434404
|
||||
SHA256 (jenkins/2.361.4/jenkins.war) = b38fe218afb5447b0c9a6fa308d7ab762ac5a58dd89aa68b735067ad6c37c17b
|
||||
SIZE (jenkins/2.361.4/jenkins.war) = 93501813
|
||||
TIMESTAMP = 1670915340
|
||||
SHA256 (jenkins/2.375.1/jenkins.war) = e96ae7f59d8a009bdbf3551d5e9facd97ff8a6d404c7ea2438ef267988d53427
|
||||
SIZE (jenkins/2.375.1/jenkins.war) = 93555446
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= jenkins
|
||||
PORTVERSION= 2.378
|
||||
PORTVERSION= 2.381
|
||||
CATEGORIES= devel java
|
||||
MASTER_SITES= https://get.jenkins.io/war/${PORTVERSION}/
|
||||
DISTNAME= jenkins
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1668702594
|
||||
SHA256 (jenkins/2.378/jenkins.war) = 67da6fc2ca197160d052191fea7bde72ac68b099b067bcd4551461b8c44be6de
|
||||
SIZE (jenkins/2.378/jenkins.war) = 99234583
|
||||
TIMESTAMP = 1670915445
|
||||
SHA256 (jenkins/2.381/jenkins.war) = 62ca5dcecbf176452d94d4438488662e223ab9594dccb564f065c63832a47302
|
||||
SIZE (jenkins/2.381/jenkins.war) = 99141335
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= level-zero
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 1.8.8
|
||||
DISTVERSION= 1.8.12
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= jbeich@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1665087340
|
||||
SHA256 (oneapi-src-level-zero-v1.8.8_GH0.tar.gz) = 5d0944909ddd49284951226ff88e415a7062daf5a293ea5cad3ff27011158802
|
||||
SIZE (oneapi-src-level-zero-v1.8.8_GH0.tar.gz) = 702152
|
||||
TIMESTAMP = 1670867417
|
||||
SHA256 (oneapi-src-level-zero-v1.8.12_GH0.tar.gz) = 9c5d3dd912882abe8e2e3ba72f8c27e2a2d86759ac48f6318a0df091204985eb
|
||||
SIZE (oneapi-src-level-zero-v1.8.12_GH0.tar.gz) = 696435
|
||||
|
|
|
|||
|
|
@ -10,12 +10,12 @@ include/level_zero/zet_api.h
|
|||
include/level_zero/zet_ddi.h
|
||||
lib/libze_loader.so
|
||||
lib/libze_loader.so.1
|
||||
lib/libze_loader.so.1.8.8
|
||||
lib/libze_loader.so.1.8.12
|
||||
lib/libze_tracing_layer.so
|
||||
lib/libze_tracing_layer.so.1
|
||||
lib/libze_tracing_layer.so.1.8.8
|
||||
lib/libze_tracing_layer.so.1.8.12
|
||||
lib/libze_validation_layer.so
|
||||
lib/libze_validation_layer.so.1
|
||||
lib/libze_validation_layer.so.1.8.8
|
||||
lib/libze_validation_layer.so.1.8.12
|
||||
libdata/pkgconfig/level-zero.pc
|
||||
libdata/pkgconfig/libze_loader.pc
|
||||
|
|
|
|||
|
|
@ -23,12 +23,6 @@ PLIST_FILES= include/sysctlmibinfo.h \
|
|||
lib/libsysctlmibinfo.so.1.0.2 \
|
||||
man/man3/sysctlmibinfo.3.gz
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400071
|
||||
IGNORE= uses struct sysctl_oid definition previous FreeBSD 1400071
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA} ${WRKSRC}/sysctlmibinfo.h ${STAGEDIR}${PREFIX}/include
|
||||
${INSTALL_DATA} ${WRKSRC}/libsysctlmibinfo.a ${STAGEDIR}${PREFIX}/lib
|
||||
|
|
@ -36,4 +30,4 @@ do-install:
|
|||
${RLN} ${STAGEDIR}${PREFIX}/lib/libsysctlmibinfo.so.1.0.2 ${STAGEDIR}${PREFIX}/lib/libsysctlmibinfo.so
|
||||
${INSTALL_MAN} ${WRKSRC}/sysctlmibinfo.3.gz ${STAGEDIR}${MAN3PREFIX}/man/man3
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -31,12 +31,6 @@ PORTEXAMPLES= *
|
|||
OPTIONS_DEFINE= EXAMPLES
|
||||
OPTIONS_DEFAULT= EXAMPLES
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400071
|
||||
IGNORE= uses struct sysctl_oid definition previous FreeBSD 1400071
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA} ${WRKSRC}/sysctlmibinfo2.h ${STAGEDIR}${PREFIX}/include
|
||||
${INSTALL_DATA} ${WRKSRC}/libsysctlmibinfo2.a ${STAGEDIR}${PREFIX}/lib
|
||||
|
|
@ -50,4 +44,4 @@ do-install-EXAMPLES-on:
|
|||
${INSTALL_DATA} ${WRKSRC}/examples/${e} ${STAGEDIR}${EXAMPLESDIR}
|
||||
.endfor
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ WWW= https://www.gnu.org/software/lightning/
|
|||
LICENSE= LGPL3+
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING.LESSER
|
||||
|
||||
ONLY_FOR_ARCHS= aarch64 amd64 arm armv6 armv7 i386 mips powerpc powerpc64 powerpc64le powerpcspe sparc64
|
||||
ONLY_FOR_ARCHS= aarch64 amd64 arm armv6 armv7 i386 mips powerpc powerpc64 powerpc64le powerpcspe riscv64 sparc64
|
||||
|
||||
USES= cpe libtool pathfix
|
||||
CPE_VENDOR= gnu
|
||||
|
|
@ -20,7 +20,7 @@ INSTALL_TARGET= install-strip
|
|||
TEST_TARGET= check
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
PLIST_SUB= JIT_ARCH=${ARCH:S/i386/x86/:S/amd64/x86/:S/x86_64/x86/:S/sparc64/sparc/:C/powerpc.*/ppc/:C/armv./arm/}
|
||||
PLIST_SUB= JIT_ARCH=${ARCH:S/i386/x86/:S/amd64/x86/:S/x86_64/x86/:S/sparc64/sparc/:C/powerpc.*/ppc/:C/armv./arm/:S/riscv64/riscv/}
|
||||
|
||||
INFO= lightning
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,5 @@
|
|||
PORTNAME= nanopb
|
||||
DISTVERSION= 0.4.6.4-3
|
||||
PORTREVISION= 1
|
||||
DISTVERSIONSUFFIX= -gf84ad7f
|
||||
DISTVERSION= 0.4.7
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
@ -11,7 +9,9 @@ WWW= https://jpa.kapsi.fi/nanopb/
|
|||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
||||
|
||||
BUILD_DEPENDS= protoc:devel/protobuf
|
||||
BUILD_DEPENDS= protoc:devel/protobuf \
|
||||
${PYTHON_PKGNAMEPREFIX}setuptools>0:devel/py-setuptools@${PY_FLAVOR}
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}protobuf>0:devel/py-protobuf@${PY_FLAVOR}
|
||||
TEST_DEPENDS= scons:devel/scons
|
||||
|
||||
USES= cmake python shebangfix
|
||||
|
|
@ -19,7 +19,7 @@ USE_LDCONFIG= yes
|
|||
|
||||
USE_GITHUB= yes
|
||||
|
||||
SHEBANG_FILES= generator/nanopb_generator.py
|
||||
SHEBANG_FILES= generator/nanopb_generator.py generator/protoc-gen-nanopb
|
||||
|
||||
CMAKE_ON= BUILD_SHARED_LIBS
|
||||
CMAKE_ARGS= -DPython_EXECUTABLE=${PYTHON_CMD}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1656866213
|
||||
SHA256 (nanopb-nanopb-0.4.6.4-3-gf84ad7f_GH0.tar.gz) = b67ce9e7f65dd6d9d0c48ceaab2f382604068828ed6d990307707fae9343ceee
|
||||
SIZE (nanopb-nanopb-0.4.6.4-3-gf84ad7f_GH0.tar.gz) = 1136772
|
||||
TIMESTAMP = 1670903657
|
||||
SHA256 (nanopb-nanopb-0.4.7_GH0.tar.gz) = e1d89b166367a3c42d42311bdc2ed57ff78f86aede9a66828516e45490d48c81
|
||||
SIZE (nanopb-nanopb-0.4.7_GH0.tar.gz) = 1154419
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= roswell
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 21.10.14.111
|
||||
DISTVERSION= 22.12.14.113
|
||||
CATEGORIES= devel lisp
|
||||
|
||||
MAINTAINER= dmgk@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1652445673
|
||||
SHA256 (roswell-roswell-v21.10.14.111_GH0.tar.gz) = d1eb3e93b3aa6327d34d06fe14796a52f98fd7588092e6dbe2cabd0b8fbd7c92
|
||||
SIZE (roswell-roswell-v21.10.14.111_GH0.tar.gz) = 172464
|
||||
TIMESTAMP = 1670876720
|
||||
SHA256 (roswell-roswell-v22.12.14.113_GH0.tar.gz) = eb7e538e82822f857360d040b755e03ad2fdf87f151d34dafdae2a1180e7ec0b
|
||||
SIZE (roswell-roswell-v22.12.14.113_GH0.tar.gz) = 170253
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
PORTNAME= shfmt
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 3.5.1
|
||||
PORTREVISION= 6
|
||||
DISTVERSION= 3.6.0
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= adamw@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
TIMESTAMP = 1653402787
|
||||
SHA256 (go/devel_shfmt/shfmt-v3.5.1/v3.5.1.mod) = d4e6377e714806ec536611f415c037485ceec066a25c96c52f1dd9288e652034
|
||||
SIZE (go/devel_shfmt/shfmt-v3.5.1/v3.5.1.mod) = 669
|
||||
SHA256 (go/devel_shfmt/shfmt-v3.5.1/v3.5.1.zip) = 3238a633c6c68bebdaf64b80f58304c2e96877789a20fac644f1130ef153a3a0
|
||||
SIZE (go/devel_shfmt/shfmt-v3.5.1/v3.5.1.zip) = 229353
|
||||
TIMESTAMP = 1670865288
|
||||
SHA256 (go/devel_shfmt/shfmt-v3.6.0/v3.6.0.mod) = aad2932b81eb95edb5b9e348f0903db52f93c7a1ca85797bea9798f94772dd04
|
||||
SIZE (go/devel_shfmt/shfmt-v3.6.0/v3.6.0.mod) = 481
|
||||
SHA256 (go/devel_shfmt/shfmt-v3.6.0/v3.6.0.zip) = f4ed2c5938a88e89c61c89bf7f3533828f24ff62d374e753a2197efab9882796
|
||||
SIZE (go/devel_shfmt/shfmt-v3.6.0/v3.6.0.zip) = 244864
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
PKGNAMESUFFIX= -lts
|
||||
|
||||
MAINTAINER= lev@FreeBSD.org
|
||||
|
|
@ -38,7 +38,7 @@ TOOLS_DESC= Install several tools
|
|||
FREEBSD_TEMPLATE_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-fbsd-template
|
||||
SVNSERVE_WRAPPER_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-svnserve-wrapper
|
||||
|
||||
USES+= shebangfix python:env:2.7,env
|
||||
USES+= shebangfix python:2.7,env
|
||||
python_OLD_CMD+= "/bin/env python"
|
||||
SHEBANG_REGEX= ./tools/.*
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= sysconftool
|
||||
PORTVERSION= 0.20
|
||||
PORTVERSION= 0.21
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= SF/courier/${PORTNAME}/${PORTVERSION}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1668437137
|
||||
SHA256 (sysconftool-0.20.tar.bz2) = fb507fef8502711638e7d300b497245a7a41d356d5ab711b7739facaa2355877
|
||||
SIZE (sysconftool-0.20.tar.bz2) = 77144
|
||||
TIMESTAMP = 1670184715
|
||||
SHA256 (sysconftool-0.21.tar.bz2) = 2f9e1f8b01275a037a60aa7b75d1695228db11737cfd95c5c2bc7193b7fc8ee7
|
||||
SIZE (sysconftool-0.21.tar.bz2) = 77235
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
--- Makefile.am.orig 2022-08-25 01:32:14 UTC
|
||||
--- Makefile.am.orig 2022-11-26 01:55:08 UTC
|
||||
+++ Makefile.am
|
||||
@@ -85,12 +85,12 @@ check:
|
||||
check:
|
||||
|
|
@ -9,8 +9,8 @@
|
|||
$(mkinstalldirs) $(DESTDIR)$(bindir)
|
||||
rm -f $(DESTDIR)$(bindir)/sysconftoolize
|
||||
rm -f $(DESTDIR)$(bindir)/sysconftoolcheck
|
||||
- $(LN_S) $(datadir)/sysconftool/sysconftoolize.pl $(DESTDIR)$(bindir)/sysconftoolize
|
||||
- $(LN_S) $(datadir)/sysconftool/sysconftoolcheck $(DESTDIR)$(bindir)/sysconftoolcheck
|
||||
- $(LN_S) `realpath --relative-to $(bindir) -m $(datadir)/sysconftool/sysconftoolize.pl` $(DESTDIR)$(bindir)/sysconftoolize
|
||||
- $(LN_S) `realpath --relative-to $(bindir) -m $(datadir)/sysconftool/sysconftoolcheck` $(DESTDIR)$(bindir)/sysconftoolcheck
|
||||
+ install -l rs $(DESTDIR)$(datadir)/sysconftool/sysconftoolize.pl $(DESTDIR)$(bindir)/sysconftoolize
|
||||
+ install -l rs $(DESTDIR)$(datadir)/sysconftool/sysconftoolcheck $(DESTDIR)$(bindir)/sysconftoolcheck
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= powerdns
|
||||
DISTVERSION= 4.7.2
|
||||
DISTVERSION= 4.7.3
|
||||
CATEGORIES= dns
|
||||
MASTER_SITES= https://downloads.powerdns.com/releases/
|
||||
DISTNAME= pdns-${DISTVERSION}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1667306864
|
||||
SHA256 (pdns-4.7.2.tar.bz2) = 4dcae35ebdc04915872d7bf6e2d0bca4b05c6350a100a5cf9c29df53baa53ce2
|
||||
SIZE (pdns-4.7.2.tar.bz2) = 1359883
|
||||
TIMESTAMP = 1670590818
|
||||
SHA256 (pdns-4.7.3.tar.bz2) = 8bad351b2e09426f6d4fb0346881a5155fe555497c3d85071e531e7c7afe3e76
|
||||
SIZE (pdns-4.7.3.tar.bz2) = 1353333
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= rpcs3
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.0.25-14442 # git rev-list --count HEAD
|
||||
DISTVERSIONSUFFIX= -g809e880bd1
|
||||
DISTVERSION= 0.0.25-14471 # git rev-list --count HEAD
|
||||
DISTVERSIONSUFFIX= -ge2c1547d95
|
||||
CATEGORIES= emulators wayland
|
||||
|
||||
MAINTAINER= jbeich@FreeBSD.org
|
||||
|
|
@ -14,6 +14,8 @@ LICENSE_FILE_ISCL= ${WRKSRC_cubeb}/LICENSE
|
|||
LICENSE_FILE_ZLIB= ${WRKSRC_asmjit}/LICENSE.md
|
||||
|
||||
FLAVORS= qt5 qt6
|
||||
qt6_BROKEN= Qt6 patch requires rebase after \
|
||||
https://github.com/RPCS3/rpcs3/commit/681a6ef73ca1
|
||||
|
||||
BUILD_DEPENDS= flatc:devel/flatbuffers
|
||||
LIB_DEPENDS= libxxhash.so:devel/xxhash \
|
||||
|
|
@ -34,7 +36,7 @@ GH_TUPLE= RPCS3:hidapi:hidapi-0.12.0-2-gc2aa9dd:hidapi/3rdparty/hidapi/hidapi \
|
|||
jbeder:yaml-cpp:yaml-cpp-0.7.0-1-g0b67821:yamlcpp/3rdparty/yaml-cpp/yaml-cpp \
|
||||
KhronosGroup:SPIRV-Headers:1.5.4.raytracing.fixed-187-g85a1ed2:spirv_headers/3rdparty/SPIRV/SPIRV-Headers \
|
||||
KhronosGroup:SPIRV-Tools:v2022.4:spirv_tools/3rdparty/SPIRV/SPIRV-Tools \
|
||||
KhronosGroup:glslang:11.12.0:glslang/3rdparty/glslang/glslang \
|
||||
KhronosGroup:glslang:11.11.0-2-g10423ec6:glslang/3rdparty/glslang/glslang \
|
||||
kinetiknz:cubeb:cubeb-0.2-1391-gdc511c6:cubeb/3rdparty/cubeb/cubeb \
|
||||
wolfSSL:wolfssl:v5.5.0-stable:wolfssl/3rdparty/wolfssl/wolfssl
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
TIMESTAMP = 1670615396
|
||||
SHA256 (RPCS3-rpcs3-v0.0.25-14442-g809e880bd1_GH0.tar.gz) = d6640c9035bdd107e8d5d9464836704e08bb87d05734e6d750aeb603c2f712a4
|
||||
SIZE (RPCS3-rpcs3-v0.0.25-14442-g809e880bd1_GH0.tar.gz) = 8696174
|
||||
TIMESTAMP = 1670872747
|
||||
SHA256 (RPCS3-rpcs3-v0.0.25-14471-ge2c1547d95_GH0.tar.gz) = 0777ab3de47c6edac305b799b38030474df101e060f00ac5eb0169491f46987a
|
||||
SIZE (RPCS3-rpcs3-v0.0.25-14471-ge2c1547d95_GH0.tar.gz) = 8701209
|
||||
SHA256 (RPCS3-hidapi-hidapi-0.12.0-2-gc2aa9dd_GH0.tar.gz) = 0670ad9e58476c51775fd3a0b9e995eab5a544b498f00e802023acd265f07a3e
|
||||
SIZE (RPCS3-hidapi-hidapi-0.12.0-2-gc2aa9dd_GH0.tar.gz) = 239244
|
||||
SHA256 (RPCS3-llvm-mirror-9b52b6c39ae9_GH0.tar.gz) = 9df78a8282453a0e1a3653664ef11ef47b8ab4d2b86e486922770ed2240788b0
|
||||
|
|
@ -15,8 +15,8 @@ SHA256 (KhronosGroup-SPIRV-Headers-1.5.4.raytracing.fixed-187-g85a1ed2_GH0.tar.g
|
|||
SIZE (KhronosGroup-SPIRV-Headers-1.5.4.raytracing.fixed-187-g85a1ed2_GH0.tar.gz) = 440065
|
||||
SHA256 (KhronosGroup-SPIRV-Tools-v2022.4_GH0.tar.gz) = a156215a2d7c6c5b267933ed691877a9a66f07d75970da33ce9ad627a71389d7
|
||||
SIZE (KhronosGroup-SPIRV-Tools-v2022.4_GH0.tar.gz) = 3043339
|
||||
SHA256 (KhronosGroup-glslang-11.12.0_GH0.tar.gz) = 7795a97450fecd9779f3d821858fbc2d1a3bf1dd602617d95b685ccbcabc302f
|
||||
SIZE (KhronosGroup-glslang-11.12.0_GH0.tar.gz) = 3655891
|
||||
SHA256 (KhronosGroup-glslang-11.11.0-2-g10423ec6_GH0.tar.gz) = 444052c288ee2507f6bc22409333d90f2d91d3272e13f619b6b61ce2bac61dde
|
||||
SIZE (KhronosGroup-glslang-11.11.0-2-g10423ec6_GH0.tar.gz) = 3543809
|
||||
SHA256 (kinetiknz-cubeb-cubeb-0.2-1391-gdc511c6_GH0.tar.gz) = 904cbd1e3abc0983efa99cf0b21af211d827ce9232bac20eed60ee7219443f75
|
||||
SIZE (kinetiknz-cubeb-cubeb-0.2-1391-gdc511c6_GH0.tar.gz) = 223020
|
||||
SHA256 (wolfSSL-wolfssl-v5.5.0-stable_GH0.tar.gz) = c34b74b5f689fac7becb05583b044e84d3b10d39f38709f0095dd5d423ded67f
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
PORTNAME= yuzu
|
||||
PORTVERSION= s20221206
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= s20221212
|
||||
CATEGORIES= emulators
|
||||
.if make(makesum)
|
||||
MASTER_SITES= https://api.yuzu-emu.org/gamedb/?dummy=/:gamedb
|
||||
|
|
@ -42,7 +41,7 @@ TEST_DEPENDS= catch>0:devel/catch
|
|||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= yuzu-emu
|
||||
GH_TAGNAME= bfdd51278
|
||||
GH_TAGNAME= 339a37f8c
|
||||
GH_TUPLE= yuzu-emu:mbedtls:v2.16.9-115-g8c88150ca:mbedtls/externals/mbedtls \
|
||||
yuzu-emu:sirit:d7ad93a:sirit/externals/sirit \
|
||||
KhronosGroup:SPIRV-Headers:1.5.4.raytracing.fixed-201-gc214f6f:SPIRV_Headers/externals/sirit/externals/SPIRV-Headers \
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
TIMESTAMP = 1670378894
|
||||
SHA256 (yuzu-s20221206/compatibility_list.json) = 0ef0760053167eb6b43f26cac32b94956c108310e07dd1fcceef6018d4632d2b
|
||||
SIZE (yuzu-s20221206/compatibility_list.json) = 1646739
|
||||
SHA256 (yuzu-emu-yuzu-s20221206-bfdd51278_GH0.tar.gz) = 72ec9966084e416ee813bc1d1ecd263b183c60a77411b5394134b91e9465ac2e
|
||||
SIZE (yuzu-emu-yuzu-s20221206-bfdd51278_GH0.tar.gz) = 5281416
|
||||
TIMESTAMP = 1670884662
|
||||
SHA256 (yuzu-s20221212/compatibility_list.json) = 45e37458d996de7f07089d14d61910b2fa5fcc02004a57400edd7a730b6b1cbb
|
||||
SIZE (yuzu-s20221212/compatibility_list.json) = 1649816
|
||||
SHA256 (yuzu-emu-yuzu-s20221212-339a37f8c_GH0.tar.gz) = 95d4e3520b6c4cbd89c8892f87d8dd325891af8fa8b6f09513e218da773344b1
|
||||
SIZE (yuzu-emu-yuzu-s20221212-339a37f8c_GH0.tar.gz) = 5391695
|
||||
SHA256 (yuzu-emu-mbedtls-v2.16.9-115-g8c88150ca_GH0.tar.gz) = 8cd6d075b4da0ad5fb995eb37390e2e6088be8d41ab1cdfc7e7e4256bd991450
|
||||
SIZE (yuzu-emu-mbedtls-v2.16.9-115-g8c88150ca_GH0.tar.gz) = 2679189
|
||||
SHA256 (yuzu-emu-sirit-d7ad93a_GH0.tar.gz) = f338a73c12bcc4e6c18a1a8104ca7bf30af40eb37b4054992e3be4c3d3589faa
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= flare
|
||||
PORTVERSION= 1.13.04
|
||||
PORTVERSION= 1.14
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= games
|
||||
PKGNAMESUFFIX= -engine
|
||||
|
|
@ -11,11 +11,10 @@ WWW= https://flarerpg.org/
|
|||
LICENSE= GPLv3+
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
USES= cmake compiler:env sdl
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= flareteam
|
||||
GH_PROJECT= ${PORTNAME}${PKGNAMESUFFIX}
|
||||
|
||||
USES= cmake compiler:env sdl
|
||||
USE_SDL= sdl2 mixer2 image2 ttf2
|
||||
CMAKE_BUILD_TYPE= #empty
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1644437987
|
||||
SHA256 (flareteam-flare-engine-v1.13.04_GH0.tar.gz) = 13dcfe562b98a5456ba5ba3fdffb457b8d92bfe8e332edfbe025353dbd0eb043
|
||||
SIZE (flareteam-flare-engine-v1.13.04_GH0.tar.gz) = 6272488
|
||||
TIMESTAMP = 1670850205
|
||||
SHA256 (flareteam-flare-engine-v1.14_GH0.tar.gz) = 2c1bafeaa5ac26c10449bfcb7151b06e8a22547aa7364d2a39bbcb135aa50a09
|
||||
SIZE (flareteam-flare-engine-v1.14_GH0.tar.gz) = 5788514
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= flare
|
||||
PORTVERSION= 1.13.04
|
||||
PORTVERSION= 1.14
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= games
|
||||
PKGNAMESUFFIX= -game
|
||||
|
|
@ -12,11 +12,10 @@ LICENSE= CC-BY-SA-3.0
|
|||
|
||||
RUN_DEPENDS= flare:games/flare-engine
|
||||
|
||||
USES= cmake gnome
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= flareteam
|
||||
GH_PROJECT= ${PORTNAME}${PKGNAMESUFFIX}
|
||||
|
||||
USES= cmake gnome
|
||||
CMAKE_BUILD_TYPE= #empty
|
||||
NO_ARCH= yes
|
||||
INSTALL_TARGET= install
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1644438018
|
||||
SHA256 (flareteam-flare-game-v1.13.04_GH0.tar.gz) = bbb278516c46e96ecc9b9470af3c37348ccb5dc61d33bd91c4823c090ccf2c78
|
||||
SIZE (flareteam-flare-game-v1.13.04_GH0.tar.gz) = 146880353
|
||||
TIMESTAMP = 1670850223
|
||||
SHA256 (flareteam-flare-game-v1.14_GH0.tar.gz) = 65758462070aa88842084f8ee69083d8226e93cfbf83481663276d8307494b8e
|
||||
SIZE (flareteam-flare-game-v1.14_GH0.tar.gz) = 146895648
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= ponscripter
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 3.0.0
|
||||
DISTVERSION= 3.0.1
|
||||
CATEGORIES= games
|
||||
PKGNAMESUFFIX= -${GH_ACCOUNT}
|
||||
|
||||
|
|
@ -39,6 +39,7 @@ OPTIONS_DEFINE= DOCS MANPAGES NOTIFY TREMOR
|
|||
OPTIONS_DEFAULT=MANPAGES NOTIFY ${MACHINE_CPU:Msoftfp:C/.+/TREMOR/}
|
||||
|
||||
MANPAGES_BUILD_DEPENDS= xmlto:textproc/xmlto
|
||||
MANPAGES_CONFIGURE_OFF= --no-docs
|
||||
MANPAGES_PLIST_FILES=\
|
||||
man/man6/ponscr.6.gz \
|
||||
man/man7/ponscr-ext.7.gz \
|
||||
|
|
@ -46,6 +47,8 @@ MANPAGES_PLIST_FILES=\
|
|||
man/man7/ponscripter.7.gz
|
||||
|
||||
NOTIFY_LIB_DEPENDS= libnotify.so:devel/libnotify
|
||||
NOTIFY_USES= gnome
|
||||
NOTIFY_USE= GNOME=glib20 # g_object_unref
|
||||
NOTIFY_CONFIGURE_WITH= libnotify
|
||||
|
||||
TREMOR_LIB_DEPENDS= libvorbisidec.so:audio/libtremor
|
||||
|
|
@ -62,7 +65,6 @@ post-patch:
|
|||
post-patch-MANPAGES-off:
|
||||
@${REINPLACE_CMD} -i .manpages.bak \
|
||||
-e '/install-man/d' \
|
||||
-e 's/xmlto/${FALSE}/' \
|
||||
${WRKSRC}/configure
|
||||
|
||||
post-patch-TREMOR-on:
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
TIMESTAMP = 1647659865
|
||||
SHA256 (07th-mod-ponscripter-fork-v3.0.0_GH0.tar.gz) = a367def120abe04aa4d507fc712175cf21e74bbd5d66da5df7ac445beb64521d
|
||||
SIZE (07th-mod-ponscripter-fork-v3.0.0_GH0.tar.gz) = 34650871
|
||||
TIMESTAMP = 1670753678
|
||||
SHA256 (07th-mod-ponscripter-fork-v3.0.1_GH0.tar.gz) = 213c452994cb0880c495857c5bac884478d4aa0d98787936d48393e1d3312684
|
||||
SIZE (07th-mod-ponscripter-fork-v3.0.1_GH0.tar.gz) = 34957279
|
||||
SHA256 (69068bf83653.patch) = ab7ace6c01bff5690c58dcf7e824d1bed5211f52e5984510c114a78d01f62de7
|
||||
SIZE (69068bf83653.patch) = 826
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= puzzles
|
||||
PORTVERSION= 20221208
|
||||
PORTVERSION= 20221212
|
||||
CATEGORIES= games
|
||||
# upstream does not preserve older versions, mirroring is mandatory
|
||||
MASTER_SITES= https://www.chiark.greenend.org.uk/~sgtatham/puzzles/ \
|
||||
|
|
@ -14,7 +14,7 @@ WWW= https://www.chiark.greenend.org.uk/~sgtatham/puzzles/
|
|||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENCE
|
||||
|
||||
COMMITHASH= 0b036c9
|
||||
COMMITHASH= 676ec87
|
||||
|
||||
BUILD_DEPENDS= convert:graphics/ImageMagick6-nox11 \
|
||||
halibut:textproc/halibut
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1670505097
|
||||
SHA256 (puzzles-20221208.0b036c9.tar.gz) = 1dccad8a3c5b3a5062d17979d32c11f3353e3313d180a8e8159a4afb0068d420
|
||||
SIZE (puzzles-20221208.0b036c9.tar.gz) = 1725083
|
||||
TIMESTAMP = 1670850971
|
||||
SHA256 (puzzles-20221212.676ec87.tar.gz) = 47a4c042685848880849f7d189c589b227c9ff25d0bf4295c2d47394338efc23
|
||||
SIZE (puzzles-20221212.676ec87.tar.gz) = 1732757
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= vkquake
|
||||
DISTVERSION= 1.22.1
|
||||
DISTVERSION= 1.22.3
|
||||
CATEGORIES= games
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1670037907
|
||||
SHA256 (Novum-vkQuake-1.22.1_GH0.tar.gz) = bc6a5e2d91f67e3288ff3dbfd202465049414bb42e5b80d3e4cbc8aa38a0898f
|
||||
SIZE (Novum-vkQuake-1.22.1_GH0.tar.gz) = 33775608
|
||||
TIMESTAMP = 1670832391
|
||||
SHA256 (Novum-vkQuake-1.22.3_GH0.tar.gz) = 1e0bcf9bb82a2c514f1474fa74ef1d63502c780331e44634e31a5b5902be8a85
|
||||
SIZE (Novum-vkQuake-1.22.3_GH0.tar.gz) = 47717524
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= mesa
|
||||
DISTVERSION= 22.3-branchpoint-1811
|
||||
DISTVERSIONSUFFIX= -gd217883c5c3
|
||||
DISTVERSION= 22.3-branchpoint-1906
|
||||
DISTVERSIONSUFFIX= -g17c18a492a3
|
||||
CATEGORIES= graphics
|
||||
PKGNAMESUFFIX= -devel
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
TIMESTAMP = 1670624479
|
||||
SHA256 (mesa3d-mesa-22.3-branchpoint-1811-gd217883c5c3_GH0.tar.gz) = 03a00c123e34d11e595b494c9a0fc874ed99b6bb3dca5e01240505a3d692b35c
|
||||
SIZE (mesa3d-mesa-22.3-branchpoint-1811-gd217883c5c3_GH0.tar.gz) = 27535973
|
||||
TIMESTAMP = 1670887793
|
||||
SHA256 (mesa3d-mesa-22.3-branchpoint-1906-g17c18a492a3_GH0.tar.gz) = c544291a9f2a6aca122d0c1b5926c023588a31f3a75ee2762b232bcd5efb940c
|
||||
SIZE (mesa3d-mesa-22.3-branchpoint-1906-g17c18a492a3_GH0.tar.gz) = 27549912
|
||||
SHA256 (700efacda59c.patch) = f034cfbe09edff0baba67e46e7e3812fdef73ff3cf3e579050c024c95234c8d5
|
||||
SIZE (700efacda59c.patch) = 981
|
||||
SHA256 (50433886a3e3.patch) = 15af265e9dbb5dec7514062cfa549d1c1053f567395d9d133611c2a5138da470
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= vulkan-extension-layer
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 1.3.236
|
||||
DISTVERSION= 1.3.237
|
||||
CATEGORIES= graphics
|
||||
|
||||
MAINTAINER= jbeich@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1670004353
|
||||
SHA256 (KhronosGroup-Vulkan-ExtensionLayer-v1.3.236_GH0.tar.gz) = cd45f877c54f3b0f615f74e4f78a39eb354f493f0ff940c51793dbeeceb9b870
|
||||
SIZE (KhronosGroup-Vulkan-ExtensionLayer-v1.3.236_GH0.tar.gz) = 518207
|
||||
TIMESTAMP = 1670866262
|
||||
SHA256 (KhronosGroup-Vulkan-ExtensionLayer-v1.3.237_GH0.tar.gz) = f503cbbefc1d15c332b1e3eeed9759c86a19154ad4d1beb2be2afa098973a256
|
||||
SIZE (KhronosGroup-Vulkan-ExtensionLayer-v1.3.237_GH0.tar.gz) = 521395
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= fennel
|
||||
DISTVERSION= 1.2.0
|
||||
DISTVERSION= 1.2.1
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= https://git.sr.ht/~technomancy/${PORTNAME}/archive/${DISTVERSION}${EXTRACT_SUFX}?dummy=/
|
||||
|
||||
|
|
@ -10,7 +10,7 @@ WWW= https://fennel-lang.org/
|
|||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
USES= gmake lua:build
|
||||
USES= gmake lua:51+
|
||||
|
||||
MAKE_ENV= DESTDIR=${STAGEDIR} \
|
||||
LUA=${LUA_CMD} \
|
||||
|
|
@ -25,4 +25,10 @@ TEST_TARGET= test
|
|||
|
||||
NO_ARCH= yes
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
|
||||
do-install-DOCS-on:
|
||||
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
${INSTALL_MAN} ${WRKSRC}/*.md ${STAGEDIR}${DOCSDIR}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1665091820
|
||||
SHA256 (fennel-1.2.0.tar.gz) = 203bd7f365f1805e063fbca4876b4c0d04f3b4ac47d967a9d43d9766c2de4e55
|
||||
SIZE (fennel-1.2.0.tar.gz) = 270255
|
||||
TIMESTAMP = 1670864299
|
||||
SHA256 (fennel-1.2.1.tar.gz) = 6654aadb7659bbf88d3879190392573e1ae39087eaaf5084e95f45db8e82ad51
|
||||
SIZE (fennel-1.2.1.tar.gz) = 271590
|
||||
|
|
|
|||
|
|
@ -1,3 +1,19 @@
|
|||
bin/fennel
|
||||
%%LUA_MODSHAREDIR%%/fennel.lua
|
||||
man/man1/fennel.1.gz
|
||||
%%PORTDOCS%%%%DOCSDIR%%/CODE-OF-CONDUCT.md
|
||||
%%PORTDOCS%%%%DOCSDIR%%/CONTRIBUTING.md
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README.md
|
||||
%%PORTDOCS%%%%DOCSDIR%%/api.md
|
||||
%%PORTDOCS%%%%DOCSDIR%%/changelog.md
|
||||
%%PORTDOCS%%%%DOCSDIR%%/from-clojure.md
|
||||
%%PORTDOCS%%%%DOCSDIR%%/lua-primer.md
|
||||
%%PORTDOCS%%%%DOCSDIR%%/macros.md
|
||||
%%PORTDOCS%%%%DOCSDIR%%/rationale.md
|
||||
%%PORTDOCS%%%%DOCSDIR%%/reference.md
|
||||
%%PORTDOCS%%%%DOCSDIR%%/release-checklist.md
|
||||
%%PORTDOCS%%%%DOCSDIR%%/security.md
|
||||
%%PORTDOCS%%%%DOCSDIR%%/setup.md
|
||||
%%PORTDOCS%%%%DOCSDIR%%/style.md
|
||||
%%PORTDOCS%%%%DOCSDIR%%/tutorial.md
|
||||
%%PORTDOCS%%%%DOCSDIR%%/values.md
|
||||
%%LUA_MODSHAREDIR%%/fennel.lua
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= gcc
|
||||
PORTVERSION= 13.0.0.s20221204
|
||||
PORTVERSION= 13.0.0.s20221211
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= GCC/snapshots/${DIST_VERSION}
|
||||
PKGNAMESUFFIX= ${SUFFIX}-devel
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1670248587
|
||||
SHA256 (gcc-13-20221204.tar.xz) = 4f919ab2d8503338a3302862a60a3aeb5695be1d24313e6d57253666e3030f6c
|
||||
SIZE (gcc-13-20221204.tar.xz) = 80748844
|
||||
TIMESTAMP = 1670846935
|
||||
SHA256 (gcc-13-20221211.tar.xz) = 9872154ce3d27677445c1d3b825a9cb14bea2de8abe1f6064afe2b5068f0ca1a
|
||||
SIZE (gcc-13-20221211.tar.xz) = 80786948
|
||||
|
|
|
|||
|
|
@ -13,6 +13,8 @@ WWW= https://www.adacore.com/community
|
|||
LICENSE= GPLv2 GPLv3 GPLv3RLE
|
||||
LICENSE_COMB= multi
|
||||
|
||||
IGNORE= does not run without gcc12 built from this port
|
||||
|
||||
LIB_DEPENDS= libgmp.so:math/gmp \
|
||||
libmpc.so:math/mpc \
|
||||
libisl.so:devel/isl \
|
||||
|
|
@ -102,8 +104,8 @@ pre-configure:
|
|||
${ECHO} "release" > ${PHASEFILE}
|
||||
|
||||
pre-configure-PREVASSET-on:
|
||||
cd ${PATHAUX} ; for f in *${GCCVER} ; do \
|
||||
${LN} -sf $${f} $${f%${GCCVER}} ; \
|
||||
cd ${PATHAUX} ; for f in *${PREV_ASSET_VER} ; do \
|
||||
${LN} -sf $${f} $${f%${PREV_ASSET_VER}} ; \
|
||||
done
|
||||
|
||||
post-install-ASSETS-on:
|
||||
|
|
|
|||
|
|
@ -10,21 +10,3 @@ Allow customisation of shrpldflags.
|
|||
ldlibpth=''
|
||||
DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
|
||||
DPERL_IS_MINIPERL='-DPERL_IS_MINIPERL'
|
||||
@@ -924,7 +923,7 @@ $(LIBPERL): $& $(perllib_dep) $(DYNALOADER) $(LIBPERLE
|
||||
true)
|
||||
$spitshell >>$Makefile <<'!NO!SUBS!'
|
||||
rm -f $@
|
||||
- $(LD) -o $@ $(SHRPLDFLAGS) $(perllib_objs) $(DYNALOADER) $(libs)
|
||||
+ $(LD) -o $@ $(SHRPLDFLAGS) -Wl,--allow-multiple-definition $(perllib_objs) $(DYNALOADER) $(libs)
|
||||
!NO!SUBS!
|
||||
case "$osname" in
|
||||
aix)
|
||||
@@ -1015,7 +1014,7 @@ lib/buildcustomize.pl: $& $(miniperl_dep) write_buildc
|
||||
$spitshell >>$Makefile <<'!NO!SUBS!'
|
||||
lib/buildcustomize.pl: $& $(miniperl_dep) write_buildcustomize.pl
|
||||
-@rm -f miniperl.xok
|
||||
- $(CC) $(CLDFLAGS) -o $(MINIPERL_EXE) \
|
||||
+ $(CC) $(CLDFLAGS) -Wl,--allow-multiple-definition -o $(MINIPERL_EXE) \
|
||||
$(miniperl_objs) $(libs)
|
||||
$(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1'
|
||||
$(MINIPERL) -f write_buildcustomize.pl
|
||||
|
|
|
|||
|
|
@ -10,21 +10,3 @@ Allow customisation of shrpldflags.
|
|||
ldlibpth=''
|
||||
DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
|
||||
DPERL_IS_MINIPERL='-DPERL_IS_MINIPERL'
|
||||
@@ -932,7 +931,7 @@ $(LIBPERL): $& $(perllib_dep) $(DYNALOADER) $(LIBPERLE
|
||||
true)
|
||||
$spitshell >>$Makefile <<'!NO!SUBS!'
|
||||
rm -f $@
|
||||
- $(LD) -o $@ $(SHRPLDFLAGS) $(perllib_objs) $(DYNALOADER) $(libs)
|
||||
+ $(LD) -o $@ $(SHRPLDFLAGS) -Wl,--allow-multiple-definition $(perllib_objs) $(DYNALOADER) $(libs)
|
||||
!NO!SUBS!
|
||||
case "$osname" in
|
||||
aix)
|
||||
@@ -1038,7 +1037,7 @@ lib/buildcustomize.pl: $& $(miniperl_dep) write_buildc
|
||||
$spitshell >>$Makefile <<'!NO!SUBS!'
|
||||
lib/buildcustomize.pl: $& $(miniperl_dep) write_buildcustomize.pl
|
||||
-@rm -f miniperl.xok
|
||||
- $(CC) $(CLDFLAGS) -o $(MINIPERL_EXE) \
|
||||
+ $(CC) $(CLDFLAGS) -Wl,--allow-multiple-definition -o $(MINIPERL_EXE) \
|
||||
$(miniperl_objs) $(libs)
|
||||
$(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1'
|
||||
$(MINIPERL) -f write_buildcustomize.pl
|
||||
|
|
|
|||
|
|
@ -10,21 +10,3 @@ Allow customisation of shrpldflags.
|
|||
ldlibpth=''
|
||||
DPERL_EXTERNAL_GLOB='-DPERL_EXTERNAL_GLOB'
|
||||
DPERL_IS_MINIPERL='-DPERL_IS_MINIPERL'
|
||||
@@ -924,7 +923,7 @@ $(LIBPERL): $& $(perllib_dep) $(DYNALOADER) $(LIBPERLE
|
||||
true)
|
||||
$spitshell >>$Makefile <<'!NO!SUBS!'
|
||||
rm -f $@
|
||||
- $(LD) -o $@ $(SHRPLDFLAGS) $(perllib_objs) $(DYNALOADER) $(libs)
|
||||
+ $(LD) -o $@ $(SHRPLDFLAGS) -Wl,--allow-multiple-definition $(perllib_objs) $(DYNALOADER) $(libs)
|
||||
!NO!SUBS!
|
||||
case "$osname" in
|
||||
aix)
|
||||
@@ -1015,7 +1014,7 @@ lib/buildcustomize.pl: $& $(miniperl_dep) write_buildc
|
||||
$spitshell >>$Makefile <<'!NO!SUBS!'
|
||||
lib/buildcustomize.pl: $& $(miniperl_dep) write_buildcustomize.pl
|
||||
-@rm -f miniperl.xok
|
||||
- $(CC) $(CLDFLAGS) -o $(MINIPERL_EXE) \
|
||||
+ $(CC) $(CLDFLAGS) -Wl,--allow-multiple-definition -o $(MINIPERL_EXE) \
|
||||
$(miniperl_objs) $(libs)
|
||||
$(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1'
|
||||
$(MINIPERL) -f write_buildcustomize.pl
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1662820136
|
||||
SHA256 (ruby/ruby-3.2.0-preview2.tar.xz) = 01fac0929dccdabc0686c1109da6c187897a401da9ff8851242befa92f7fd430
|
||||
SIZE (ruby/ruby-3.2.0-preview2.tar.xz) = 14578112
|
||||
TIMESTAMP = 1670335374
|
||||
SHA256 (ruby/ruby-3.2.0-rc1.tar.xz) = 0d45b3af14e84337882a2021235a091ae5dcfc0baaf31dccc479b71d96dd07bc
|
||||
SIZE (ruby/ruby-3.2.0-rc1.tar.xz) = 14934012
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
%%IF_DEFAULT%%bin/ruby
|
||||
bin/ruby%%RUBY_SUFFIX%%
|
||||
include/ruby-%%RUBY_VER%%/%%RUBY_ARCH%%/rb_mjit_min_header-%%RUBY_VERSION%%.h
|
||||
include/ruby-%%RUBY_VER%%/%%RUBY_ARCH%%/ruby/config.h
|
||||
|
|
@ -269,6 +270,7 @@ lib/libruby%%RUBY_SHLIBVER%%.so.%%RUBY_SHLIBVER%%
|
|||
%%RUBY_ARCHLIBDIR%%/enc/windows_1254.so
|
||||
%%RUBY_ARCHLIBDIR%%/enc/windows_1257.so
|
||||
%%RUBY_ARCHLIBDIR%%/enc/windows_31j.so
|
||||
%%RUBY_ARCHLIBDIR%%/erb/escape.so
|
||||
%%RUBY_ARCHLIBDIR%%/etc.so
|
||||
%%RUBY_ARCHLIBDIR%%/fcntl.so
|
||||
%%RUBY_ARCHLIBDIR%%/fiddle.so
|
||||
|
|
@ -365,6 +367,9 @@ lib/libruby%%RUBY_SHLIBVER%%.so.%%RUBY_SHLIBVER%%
|
|||
%%RUBY_LIBDIR%%/drb/version.rb
|
||||
%%RUBY_LIBDIR%%/drb/weakidconv.rb
|
||||
%%RUBY_LIBDIR%%/erb.rb
|
||||
%%RUBY_LIBDIR%%/erb/compiler.rb
|
||||
%%RUBY_LIBDIR%%/erb/def_method.rb
|
||||
%%RUBY_LIBDIR%%/erb/util.rb
|
||||
%%RUBY_LIBDIR%%/erb/version.rb
|
||||
%%RUBY_LIBDIR%%/error_highlight.rb
|
||||
%%RUBY_LIBDIR%%/error_highlight/base.rb
|
||||
|
|
@ -390,16 +395,27 @@ lib/libruby%%RUBY_SHLIBVER%%.so.%%RUBY_SHLIBVER%%
|
|||
%%RUBY_LIBDIR%%/io/console/size.rb
|
||||
%%RUBY_LIBDIR%%/ipaddr.rb
|
||||
%%RUBY_LIBDIR%%/irb.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/backtrace.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/break.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/catch.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/chws.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/continue.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/debug.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/delete.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/edit.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/finish.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/fork.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/help.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/info.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/irb_info.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/load.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/ls.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/measure.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/next.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/nop.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/pushws.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/show_source.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/step.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/subirb.rb
|
||||
%%RUBY_LIBDIR%%/irb/cmd/whereami.rb
|
||||
%%RUBY_LIBDIR%%/irb/color.rb
|
||||
|
|
@ -464,11 +480,10 @@ lib/libruby%%RUBY_SHLIBVER%%.so.%%RUBY_SHLIBVER%%
|
|||
%%RUBY_LIBDIR%%/logger/period.rb
|
||||
%%RUBY_LIBDIR%%/logger/severity.rb
|
||||
%%RUBY_LIBDIR%%/logger/version.rb
|
||||
%%RUBY_LIBDIR%%/mjit/c_32.rb
|
||||
%%RUBY_LIBDIR%%/mjit/c_64.rb
|
||||
%%RUBY_LIBDIR%%/mjit/c_pointer.rb
|
||||
%%RUBY_LIBDIR%%/mjit/c_type.rb
|
||||
%%RUBY_LIBDIR%%/mjit/compiler.rb
|
||||
%%RUBY_LIBDIR%%/mjit/instruction.rb
|
||||
%%RUBY_LIBDIR%%/mkmf.rb
|
||||
%%RUBY_LIBDIR%%/monitor.rb
|
||||
%%RUBY_LIBDIR%%/mutex_m.rb
|
||||
|
|
@ -958,6 +973,7 @@ lib/libruby%%RUBY_SHLIBVER%%.so.%%RUBY_SHLIBVER%%
|
|||
%%RUBY_LIBDIR%%/rubygems/tsort/lib/tsort.rb
|
||||
%%RUBY_LIBDIR%%/rubygems/uninstaller.rb
|
||||
%%RUBY_LIBDIR%%/rubygems/unknown_command_spell_checker.rb
|
||||
%%RUBY_LIBDIR%%/rubygems/update_suggestion.rb
|
||||
%%RUBY_LIBDIR%%/rubygems/uri.rb
|
||||
%%RUBY_LIBDIR%%/rubygems/uri_formatter.rb
|
||||
%%RUBY_LIBDIR%%/rubygems/user_interaction.rb
|
||||
|
|
@ -1105,6 +1121,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%DOCS%%%%RUBY_DOCDIR%%/dig_methods.rdoc
|
||||
%%DOCS%%%%RUBY_DOCDIR%%/dtrace_probes.rdoc
|
||||
%%DOCS%%%%RUBY_DOCDIR%%/encodings.rdoc
|
||||
%%DOCS%%%%RUBY_DOCDIR%%/examples/files.rdoc
|
||||
%%DOCS%%%%RUBY_DOCDIR%%/extension.ja.rdoc
|
||||
%%DOCS%%%%RUBY_DOCDIR%%/extension.rdoc
|
||||
%%DOCS%%%%RUBY_DOCDIR%%/fiber.md
|
||||
|
|
@ -1124,6 +1141,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%DOCS%%%%RUBY_DOCDIR%%/math/math.rdoc
|
||||
%%DOCS%%%%RUBY_DOCDIR%%/memory_view.md
|
||||
%%DOCS%%%%RUBY_DOCDIR%%/mjit.md
|
||||
%%DOCS%%%%RUBY_DOCDIR%%/net-http/examples.rdoc
|
||||
%%DOCS%%%%RUBY_DOCDIR%%/optparse/.document
|
||||
%%DOCS%%%%RUBY_DOCDIR%%/optparse/argument_converters.rdoc
|
||||
%%DOCS%%%%RUBY_DOCDIR%%/optparse/creates_option.rdoc
|
||||
|
|
@ -1184,6 +1202,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%DOCS%%%%RUBY_DOCDIR%%/optparse/ruby/true_class.rb
|
||||
%%DOCS%%%%RUBY_DOCDIR%%/optparse/ruby/uri.rb
|
||||
%%DOCS%%%%RUBY_DOCDIR%%/optparse/tutorial.rdoc
|
||||
%%DOCS%%%%RUBY_DOCDIR%%/packed_data.rdoc
|
||||
%%DOCS%%%%RUBY_DOCDIR%%/pty/README.expect.ja
|
||||
%%DOCS%%%%RUBY_DOCDIR%%/pty/README.ja
|
||||
%%DOCS%%%%RUBY_DOCDIR%%/ractor.md
|
||||
|
|
@ -1838,81 +1857,18 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/Binding/local_variables-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Binding/receiver-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Binding/source_location-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/CALL_DATA-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/IC-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/ID-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/IVC-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/NOT_COMPILED_STACK_SIZE-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/RB_BUILTIN-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/USE_LAZY_LOAD-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/USE_RVARGC-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/VALUE-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/VM_CALL_KW_SPLAT-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/VM_CALL_KW_SPLAT_bit-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/VM_CALL_TAILCALL-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/VM_CALL_TAILCALL_bit-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/VM_METHOD_TYPE_CFUNC-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/VM_METHOD_TYPE_ISEQ-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/_Bool-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/ccan_list_node-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/cdesc-C.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/compile_branch-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/compile_status-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/inlined_call_context-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/iseq_bits_t-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/iseq_catch_table-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/iseq_compile_data-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/iseq_inline_constant_cache-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/iseq_inline_constant_cache_entry-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/iseq_inline_iv_cache_entry-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/iseq_inline_storage_entry-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/iseq_insn_info-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/method_missing_reason-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/mjit_options-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_builtin_function-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_call_data-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_callable_method_entry_struct-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_callcache-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_callinfo-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_callinfo_kwarg-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_code_location_t-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_cref_struct-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_cref_t-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_event_flag_t-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_hook_list_struct-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_id_table-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_iseq_constant_body-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_iseq_location_t-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_iseq_param_keyword-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_iseq_struct-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_iseq_t-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_iseq_type-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_iv_index_tbl_entry-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_method_alias_t-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_method_attr_t-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_method_bmethod_t-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_method_cfunc_t-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_method_definition_struct-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_method_iseq_t-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_method_optimized_t-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_method_refined_t-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_method_type_t-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_mjit_compile_info-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_mjit_unit-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_scope_visibility_t-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_serial_t-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_snum_t-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/rb_thread_struct-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/C/vm_call_handler-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/Cookie/cdesc-Cookie.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/Cookie/domain%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/Cookie/domain-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/Cookie/expires-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/Cookie/httponly%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/Cookie/httponly-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/Cookie/inspect-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/Cookie/name%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/Cookie/name-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/Cookie/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/Cookie/parse-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/Cookie/path%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/Cookie/path-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/Cookie/secure%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/Cookie/secure-i.ri
|
||||
|
|
@ -2021,6 +1977,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/CGI/Util/unescapeURIComponent-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/Util/unescape_element-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/Util/unescape_html-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/_no_crlf_check-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/accept_charset%3d-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/accept_charset-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CGI/accept_charset-i.ri
|
||||
|
|
@ -2271,6 +2228,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/CSV/writer_fields_converter-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/CSV/writer_options-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Class/allocate-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Class/attached_object-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Class/cdesc-Class.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Class/inherited-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Class/json_creatable%3f-i.ri
|
||||
|
|
@ -2349,6 +2307,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/Coverage/setup-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Coverage/start-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Coverage/state-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Coverage/supported%3f-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Coverage/suspend-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/DRb/DRbArray/cdesc-DRbArray.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/DRb/DRbArray/new-c.ri
|
||||
|
|
@ -2511,6 +2470,19 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/DRb/to_obj-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/DRb/uri-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/DRb/uri-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Data/%3d%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Data/cdesc-Data.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Data/deconstruct-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Data/deconstruct_keys-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Data/define-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Data/eql%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Data/hash-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Data/inspect-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Data/members-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Data/members-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Data/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Data/to_h-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Data/to_s-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Date/%2b-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Date/%2d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Date/%3c%3c-i.ri
|
||||
|
|
@ -2806,9 +2778,6 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/Digest/cdesc-Digest.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Digest/hexencode-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Dir/%5b%5d-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Dir/Tmpname/RANDOM/cdesc-RANDOM.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Dir/Tmpname/RANDOM/next-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Dir/Tmpname/cdesc-Tmpname.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Dir/cdesc-Dir.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Dir/chdir-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Dir/children-c.ri
|
||||
|
|
@ -2898,11 +2867,10 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/ERB/DefMethod/cdesc-DefMethod.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/ERB/DefMethod/def_erb_method-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/ERB/DefMethod/def_erb_method-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/ERB/Escape/cdesc-Escape.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/ERB/Escape/html_escape-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/ERB/Escape/html_escape-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/ERB/Util/cdesc-Util.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/ERB/Util/h-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/ERB/Util/h-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/ERB/Util/html_escape-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/ERB/Util/html_escape-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/ERB/Util/u-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/ERB/Util/u-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/ERB/Util/url_encode-c.ri
|
||||
|
|
@ -3219,25 +3187,28 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/FalseClass/inspect-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/FalseClass/to_s-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fcntl/cdesc-Fcntl.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/%5b%5d%3d-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/%5b%5d-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/Pool/cdesc-Pool.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/Pool/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/SchedulerInterface/address_resolve-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/SchedulerInterface/block-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/SchedulerInterface/cdesc-SchedulerInterface.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/SchedulerInterface/close-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/SchedulerInterface/fiber-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/SchedulerInterface/io_read-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/SchedulerInterface/io_wait-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/SchedulerInterface/io_write-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/SchedulerInterface/kernel_sleep-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/SchedulerInterface/process_wait-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/SchedulerInterface/timeout_after-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/SchedulerInterface/unblock-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/Scheduler/address_resolve-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/Scheduler/block-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/Scheduler/cdesc-Scheduler.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/Scheduler/close-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/Scheduler/fiber-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/Scheduler/io_read-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/Scheduler/io_wait-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/Scheduler/io_write-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/Scheduler/kernel_sleep-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/Scheduler/process_wait-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/Scheduler/timeout_after-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/Scheduler/unblock-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/alive%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/backtrace-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/backtrace_locations-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/blocking%3f-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/blocking%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/blocking-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/cdesc-Fiber.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/current-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/current_scheduler-c.ri
|
||||
|
|
@ -3248,6 +3219,8 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/schedule-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/scheduler-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/set_scheduler-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/storage%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/storage-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/to_s-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/transfer-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiber/yield-c.ri
|
||||
|
|
@ -3289,7 +3262,10 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Closure/BlockCaller/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Closure/args-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Closure/cdesc-Closure.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Closure/create-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Closure/ctype-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Closure/free-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Closure/freed%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Closure/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Closure/to_i-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/CompositeHandler/%5b%5d-i.ri
|
||||
|
|
@ -3319,6 +3295,8 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Handle/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Handle/sym-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Handle/sym-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Handle/sym_defined%3f-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Handle/sym_defined%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Handle/to_i-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Handle/to_ptr-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Importer/%5b%5d-i.ri
|
||||
|
|
@ -3377,6 +3355,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/StructArray/cdesc-StructArray.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/StructArray/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/StructArray/to_ptr-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Types/cdesc-Types.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/Win32Types/cdesc-Win32Types.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/cdesc-Fiddle.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Fiddle/dlopen-c.ri
|
||||
|
|
@ -3584,6 +3563,9 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/FileUtils/cp_lr-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/FileUtils/cp_r-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/FileUtils/cp_r-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/FileUtils/fu_clean_components-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/FileUtils/fu_split_path-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/FileUtils/fu_starting_path%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/FileUtils/getwd-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/FileUtils/getwd-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/FileUtils/have_option%3f-c.ri
|
||||
|
|
@ -3601,6 +3583,8 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/FileUtils/ln_s-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/FileUtils/ln_sf-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/FileUtils/ln_sf-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/FileUtils/ln_sr-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/FileUtils/ln_sr-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/FileUtils/makedirs-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/FileUtils/makedirs-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/FileUtils/mkdir-c.ri
|
||||
|
|
@ -3744,6 +3728,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/GC/stress%3d-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/GC/stress-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/GC/total_time-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/GC/using_rvargc%3f-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/GC/verify_compaction_references-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/GC/verify_internal_consistency-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/GC/verify_transient_heap_internal_consistency-c.ri
|
||||
|
|
@ -4082,6 +4067,8 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/Gem/ConfigFile/hash-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/ConfigFile/home-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/ConfigFile/ipv4_fallback_enabled-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/ConfigFile/last_update_check%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/ConfigFile/last_update_check-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/ConfigFile/load_api_keys-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/ConfigFile/load_file-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/ConfigFile/new-c.ri
|
||||
|
|
@ -4095,6 +4082,8 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/Gem/ConfigFile/ssl_ca_cert-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/ConfigFile/ssl_client_cert-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/ConfigFile/ssl_verify_mode-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/ConfigFile/state_file_name-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/ConfigFile/state_file_writable%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/ConfigFile/unset_api_key%21-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/ConfigFile/update_sources-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/ConfigFile/verbose-i.ri
|
||||
|
|
@ -4570,6 +4559,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/Gem/Platform/match_platforms%3f-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/Platform/match_spec%3f-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/Platform/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/Platform/normalized_linux_version-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/Platform/os-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/Platform/sort_priority-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/Platform/to_a-i.ri
|
||||
|
|
@ -5562,6 +5552,10 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/Gem/UnsatisfiableDependencyError/name-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/UnsatisfiableDependencyError/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/UnsatisfiableDependencyError/version-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/UpdateSuggestion/cdesc-UpdateSuggestion.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/UpdateSuggestion/ci%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/UpdateSuggestion/eglible_for_update%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/UpdateSuggestion/update_suggestion-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/Uri/cdesc-Uri.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/Uri/initialize_copy-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/Uri/method_missing-i.ri
|
||||
|
|
@ -5737,6 +5731,8 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/Gem/sources%3d-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/sources-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/spec_cache_dir-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/state_file-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/state_home-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/suffix_pattern-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/suffix_regexp-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Gem/suffixes-c.ri
|
||||
|
|
@ -5865,12 +5861,15 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/cdesc-Buffer.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/clear-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/copy-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/each-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/each_byte-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/empty%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/external%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/for-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/free-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/get_string-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/get_value-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/get_values-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/hexdump-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/initialize_copy-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/inspect-i.ri
|
||||
|
|
@ -5890,11 +5889,15 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/resize-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/set_string-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/set_value-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/set_values-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/shared%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/size-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/size_of-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/slice-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/to_s-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/transfer-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/valid%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/values-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/write-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/Buffer/xor%21-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/ConsoleMode/cdesc-ConsoleMode.ri
|
||||
|
|
@ -5904,6 +5907,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/IO/EINPROGRESSWaitWritable/cdesc-EINPROGRESSWaitWritable.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/EWOULDBLOCKWaitReadable/cdesc-EWOULDBLOCKWaitReadable.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/EWOULDBLOCKWaitWritable/cdesc-EWOULDBLOCKWaitWritable.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/TimeoutError/cdesc-TimeoutError.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/WaitReadable/cdesc-WaitReadable.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/WaitWritable/cdesc-WaitWritable.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/advise-i.ri
|
||||
|
|
@ -6036,6 +6040,8 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/IO/sysseek-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/syswrite-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/tell-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/timeout%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/timeout-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/to_i-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/to_io-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IO/try_convert-c.ri
|
||||
|
|
@ -6118,7 +6124,6 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Abort/cdesc-Abort.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/CantChangeBinding/cdesc-CantChangeBinding.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/CantReturnToNormalMode/cdesc-CantReturnToNormalMode.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/CantShiftToMultiIrbMode/cdesc-CantShiftToMultiIrbMode.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Canvas/cdesc-Canvas.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Canvas/draw-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Canvas/line-i.ri
|
||||
|
|
@ -6148,6 +6153,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/back_trace_limit-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/cdesc-Context.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/change_workspace-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/command_aliases-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/echo%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/echo-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/echo_on_assignment%3f-i.ri
|
||||
|
|
@ -6193,7 +6199,9 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/save_history%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/save_history-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/set_last_value-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/symbol_alias%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/thread-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/transform_args%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/use_autocomplete%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/use_autocomplete-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/use_loader%3d-i.ri
|
||||
|
|
@ -6203,8 +6211,8 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/use_multiline-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/use_readline%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/use_readline-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/use_reidline%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/use_reidline-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/use_reline%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/use_reline-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/use_singleline%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/use_singleline-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Context/use_tracer%3d-i.ri
|
||||
|
|
@ -6219,25 +6227,38 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ContextExtender/def_extend_command-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ContextExtender/install_extend_commands-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/CurrentContext-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Backtrace/cdesc-Backtrace.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Break/cdesc-Break.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Catch/cdesc-Catch.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/ChangeWorkspace/cdesc-ChangeWorkspace.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Continue/cdesc-Continue.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/CurrentWorkingWorkspace/cdesc-CurrentWorkingWorkspace.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Debug/DEBUGGER__/capture_frames-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Debug/DEBUGGER__/cdesc-DEBUGGER__.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Debug/cdesc-Debug.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Delete/cdesc-Delete.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Edit/cdesc-Edit.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Finish/cdesc-Finish.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Foreground/cdesc-Foreground.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Fork/cdesc-Fork.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Help/cdesc-Help.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Info/cdesc-Info.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/IrbCommand/cdesc-IrbCommand.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/IrbInfo/cdesc-IrbInfo.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Jobs/cdesc-Jobs.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Kill/cdesc-Kill.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Load/cdesc-Load.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Ls/Output/cdesc-Output.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Ls/cdesc-Ls.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Measure/cdesc-Measure.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Next/cdesc-Next.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Nop/cdesc-Nop.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/PopWorkspace/cdesc-PopWorkspace.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/PushWorkspace/cdesc-PushWorkspace.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Require/cdesc-Require.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/ShowSource/cdesc-ShowSource.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Source/cdesc-Source.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Step/cdesc-Step.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Whereami/cdesc-Whereami.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/Workspaces/cdesc-Workspaces.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommand/cdesc-ExtendCommand.ri
|
||||
|
|
@ -6250,6 +6271,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommandBundle/irb_exit-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommandBundle/irb_load-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommandBundle/irb_require-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ExtendCommandBundle/load_command-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/FileInputMethod/cdesc-FileInputMethod.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/FileInputMethod/close-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/FileInputMethod/encoding-i.ri
|
||||
|
|
@ -6293,6 +6315,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Irb/cdesc-Irb.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Irb/context-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Irb/convert_invalid_byte_sequence-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Irb/debug_break-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Irb/encode_with_invalid_byte_sequence-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Irb/eval_input-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/Irb/handle_exception-i.ri
|
||||
|
|
@ -6412,17 +6435,19 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ReadlineInputMethod/line-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ReadlineInputMethod/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ReadlineInputMethod/readable_after_eof%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ReidlineInputMethod/auto_indent-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ReidlineInputMethod/cdesc-ReidlineInputMethod.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ReidlineInputMethod/check_termination-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ReidlineInputMethod/dynamic_prompt-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ReidlineInputMethod/encoding-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ReidlineInputMethod/eof%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ReidlineInputMethod/gets-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ReidlineInputMethod/inspect-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ReidlineInputMethod/line-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ReidlineInputMethod/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/ReidlineInputMethod/readable_after_eof%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/RelineInputMethod/auto_indent-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/RelineInputMethod/cdesc-RelineInputMethod.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/RelineInputMethod/check_termination-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/RelineInputMethod/dynamic_prompt-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/RelineInputMethod/encoding-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/RelineInputMethod/eof%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/RelineInputMethod/gets-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/RelineInputMethod/inspect-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/RelineInputMethod/line-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/RelineInputMethod/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/RelineInputMethod/readable_after_eof%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/RubyModel/cdesc-RubyModel.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/RubyModel/init_ruby_model-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/IRB/RubyModel/new-c.ri
|
||||
|
|
@ -6752,7 +6777,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/LUSolve/ludecomp-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/LUSolve/lusolve-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/LoadError/cdesc-LoadError.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/LoadError/path-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/LoadError/id_path-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/LocalJumpError/cdesc-LocalJumpError.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/LocalJumpError/exit_value-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/LocalJumpError/reason-i.ri
|
||||
|
|
@ -6860,6 +6885,8 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/MatchData/byteoffset-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/MatchData/captures-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/MatchData/cdesc-MatchData.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/MatchData/deconstruct-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/MatchData/deconstruct_keys-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/MatchData/end-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/MatchData/eql%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/MatchData/hash-i.ri
|
||||
|
|
@ -7278,7 +7305,6 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/Net/HTTPHeader/fetch-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Net/HTTPHeader/form_data%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Net/HTTPHeader/get_fields-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Net/HTTPHeader/initialize_http_header-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Net/HTTPHeader/key%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Net/HTTPHeader/main_type-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Net/HTTPHeader/proxy_basic_auth-i.ri
|
||||
|
|
@ -7670,6 +7696,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/BN/mod_inverse-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/BN/mod_mul-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/BN/mod_sqr-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/BN/mod_sqrt-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/BN/mod_sub-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/BN/negative%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/BN/new-c.ri
|
||||
|
|
@ -8123,6 +8150,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/SSL/SSLContext/flush_sessions-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/SSL/SSLContext/freeze-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/SSL/SSLContext/key-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/SSL/SSLContext/keylog_cb-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/SSL/SSLContext/max_version%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/SSL/SSLContext/min_version%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/SSL/SSLContext/new-c.ri
|
||||
|
|
@ -8179,6 +8207,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/SSL/SSLSocket/connect-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/SSL/SSLSocket/connect_nonblock-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/SSL/SSLSocket/context-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/SSL/SSLSocket/export_keying_material-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/SSL/SSLSocket/finished_message-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/SSL/SSLSocket/hostname%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OpenSSL/SSL/SSLSocket/hostname-i.ri
|
||||
|
|
@ -8650,6 +8679,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/OptionParser/permute%21-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OptionParser/permute-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OptionParser/program_name-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OptionParser/raise_unknown-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OptionParser/reject-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OptionParser/reject-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/OptionParser/release-i.ri
|
||||
|
|
@ -9119,6 +9149,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/Psych/Nodes/cdesc-Nodes.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Psych/Omap/cdesc-Omap.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Psych/Parser/Mark/cdesc-Mark.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Psych/Parser/_native_parse-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Psych/Parser/cdesc-Parser.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Psych/Parser/external_encoding-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Psych/Parser/handler-i.ri
|
||||
|
|
@ -9677,6 +9708,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Options/sanitize_path-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Options/setup_generator-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Options/show_hash-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Options/skip_tests-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Options/static_path-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Options/tab_width-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Options/template-i.ri
|
||||
|
|
@ -9720,7 +9752,6 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Parser/C/handle_ifdefs_in-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Parser/C/handle_method-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Parser/C/handle_singleton-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Parser/C/handle_tab_width-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Parser/C/known_classes-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Parser/C/load_variable_map-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Parser/C/look_for_directives_in-i.ri
|
||||
|
|
@ -9876,6 +9907,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Parser/check_modeline-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Parser/file_name-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Parser/for-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Parser/handle_tab_width-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Parser/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Parser/parse_files_matching-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RDoc/Parser/parsers-c.ri
|
||||
|
|
@ -10898,20 +10930,6 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/bind_variable-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/cdesc-Config.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/default_inputrc_path-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/dialog_code_to_color-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/dialog_color_to_code-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/dialog_default_bg_color%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/dialog_default_bg_color-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/dialog_default_bg_color_sequence-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/dialog_default_fg_color%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/dialog_default_fg_color-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/dialog_default_fg_color_sequence-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/dialog_highlight_bg_color%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/dialog_highlight_bg_color-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/dialog_highlight_bg_color_sequence-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/dialog_highlight_fg_color%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/dialog_highlight_fg_color-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/dialog_highlight_fg_color_sequence-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/editing_mode%3d-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/editing_mode-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Reline/Config/editing_mode_is%3f-i.ri
|
||||
|
|
@ -11663,6 +11681,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/Ripper/yydebug-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyLex/TerminateLineInput/cdesc-TerminateLineInput.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyLex/cdesc-RubyLex.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/AbstractSyntaxTree/Node/all_tokens-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/AbstractSyntaxTree/Node/cdesc-Node.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/AbstractSyntaxTree/Node/children-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/AbstractSyntaxTree/Node/first_column-i.ri
|
||||
|
|
@ -11675,8 +11694,10 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/AbstractSyntaxTree/Node/pretty_print_children-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/AbstractSyntaxTree/Node/script_lines-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/AbstractSyntaxTree/Node/source-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/AbstractSyntaxTree/Node/tokens-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/AbstractSyntaxTree/Node/type-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/AbstractSyntaxTree/cdesc-AbstractSyntaxTree.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/AbstractSyntaxTree/node_id_for_backtrace_location-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/AbstractSyntaxTree/of-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/AbstractSyntaxTree/parse-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/AbstractSyntaxTree/parse_file-c.ri
|
||||
|
|
@ -11751,7 +11772,9 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/CType/Bool/cdesc-Bool.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/CType/Bool/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/CType/Immediate/cdesc-Immediate.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/CType/Immediate/find-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/CType/Immediate/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/CType/Immediate/parse-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/CType/Pointer/cdesc-Pointer.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/CType/Pointer/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/CType/Struct/cdesc-Struct.ri
|
||||
|
|
@ -11759,41 +11782,60 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/CType/Union/cdesc-Union.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/CType/Union/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/CType/cdesc-CType.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/ISEQ_IS_SIZE-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/already_compiled%3f-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/call_data_index-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/captured_cc_entries-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/cast_offset-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/ISEQ_IS_SIZE-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/already_compiled%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/call_data_index-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/captured_cc_entries-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/cast_offset-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/cdesc-Compiler.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_body-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_cancel_handler-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_getconstant_path-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_inlined_cancel_handler-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_insn-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_insn_body-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_insn_default-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_insn_entry-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_insns-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_invokebuiltin-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_ivar-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_pc_and_sp-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_send-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/def_iseq_ptr-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/expand_simple_macros-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/has_valid_method_type%3f-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/init_compile_status-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/init_ivar_compile_status-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/inlinable_iseq_p-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/maybe_special_const%3f-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/precompile_inlinable_child_iseq-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/precompile_inlinable_iseqs-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/rb_mjit_inlinable_iseq-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/rb_mjit_iseq_compile_info-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/to_addr-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/to_cstr-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/vm_cc_cme-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_body-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_cancel_handler-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_getconstant_path-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_inlined_cancel_handler-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_insn-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_insn_body-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_insn_default-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_insn_entry-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_insns-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_invokebuiltin-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_ivar-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_leave-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_pc_and_sp-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/compile_send-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/def_iseq_ptr-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/expand_simple_macros-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/has_valid_method_type%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/init_compile_status-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/inlinable_iseq_p-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/maybe_special_const%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/parent_shape_id-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/precompile_inlinable_child_iseq-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/precompile_inlinable_iseqs-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/rb_mjit_inlinable_iseq-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/rb_mjit_iseq_compile_info-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/to_addr-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/to_cstr-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/using_ivar%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/Compiler/vm_cc_cme-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/MJIT/cdesc-MJIT.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/Shape/capacity-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/Shape/cdesc-Shape.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/Shape/depth-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/Shape/edge_name-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/Shape/edges-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/Shape/find_by_id-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/Shape/id-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/Shape/next_iv_index-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/Shape/next_shape_id-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/Shape/of-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/Shape/parent-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/Shape/parent_id-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/Shape/root_shape-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/Shape/size_pool_index-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/Shape/transition_tree-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/Shape/type-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/cdesc-RubyVM.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/each_builtin-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/RubyVM/keep_script_lines%3d-c.ri
|
||||
|
|
@ -12330,6 +12372,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/Symbol/to_sym-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Symbol/upcase-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/SyntaxError/cdesc-SyntaxError.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/SyntaxError/id_path-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/SyntaxError/new-c.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/SyntaxSuggest/AroundBlockScan/after_index-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/SyntaxSuggest/AroundBlockScan/after_lines-i.ri
|
||||
|
|
@ -12765,6 +12808,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/Time/ceil-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Time/ctime-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Time/day-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Time/deconstruct_keys-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Time/dst%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Time/eql%3f-i.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/Time/floor-i.ri
|
||||
|
|
@ -13318,6 +13362,7 @@ man/man1/ruby%%RUBY_SUFFIX%%.1.gz
|
|||
%%RDOC%%%%RUBY_RIDIR%%/page-marshal_rdoc.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/page-memory_view_md.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/page-mjit_md.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/page-packed_data_rdoc.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/page-ractor_md.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/page-regexp_rdoc.ri
|
||||
%%RDOC%%%%RUBY_RIDIR%%/page-security_rdoc.ri
|
||||
|
|
|
|||
|
|
@ -83,6 +83,7 @@
|
|||
SUBDIR += cyrus-imapd30
|
||||
SUBDIR += cyrus-imapd32
|
||||
SUBDIR += cyrus-imapd34
|
||||
SUBDIR += cyrus-imapd36
|
||||
SUBDIR += cyrus2courier
|
||||
SUBDIR += cyrus2dovecot
|
||||
SUBDIR += davmail
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= courier-imap
|
||||
PORTVERSION= 5.1.9
|
||||
PORTVERSION= 5.2.0
|
||||
PORTEPOCH= 2
|
||||
CATEGORIES= mail
|
||||
MASTER_SITES= SF/courier/imap/${PORTVERSION}
|
||||
|
|
@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING
|
|||
RUN_DEPENDS= ${LOCALBASE}/share/sysconftool/sysconftool:devel/sysconftool
|
||||
LIB_DEPENDS= libcourier-unicode.so:devel/courier-unicode \
|
||||
libcourierauth.so:security/courier-authlib-base \
|
||||
libidn.so:dns/libidn \
|
||||
libidn2.so:dns/libidn2 \
|
||||
libpcre2-8.so:devel/pcre2
|
||||
|
||||
USES= compiler:c++11-lang gmake localbase:ldflags perl5 pkgconfig ssl \
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1668436180
|
||||
SHA256 (courier-imap-5.1.9.tar.bz2) = 750cbcb0c8f9f902520f644403abfd48b09756deb6f65675fc9b90e3290c1683
|
||||
SIZE (courier-imap-5.1.9.tar.bz2) = 3409710
|
||||
TIMESTAMP = 1670179573
|
||||
SHA256 (courier-imap-5.2.0.tar.bz2) = c0c351a51f332010eea4298a0d446fc4fca506cb7364da37a1ce96193145fdf9
|
||||
SIZE (courier-imap-5.2.0.tar.bz2) = 3410809
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
--- Makefile.in.orig 2022-01-16 16:04:19 UTC
|
||||
--- Makefile.in.orig 2022-12-02 14:27:56 UTC
|
||||
+++ Makefile.in
|
||||
@@ -416,8 +416,7 @@ sbin_SCRIPTS = sharedindexinstall sharedindexsplit
|
||||
@@ -420,8 +420,7 @@ databin_SCRIPTS = mkimapdcert mkpop3dcert mkdhparams
|
||||
CLEANFILES = $(databin_SCRIPTS) $(man_MANS) $(sysconf_DATA) $(sbin_SCRIPTS)
|
||||
databindir = $(datadir)
|
||||
databin_SCRIPTS = mkimapdcert mkpop3dcert mkdhparams
|
||||
|
|
@ -10,27 +10,27 @@
|
|||
|
||||
sbinPROGRAMS = imaplogin pop3login
|
||||
libexecPROGRAMS = makedatprog couriertcpd
|
||||
@@ -433,7 +432,7 @@ man_MANS = couriertcpd.1 deliverquota.8 maildirmake.1
|
||||
EXTRA_DIST = README README.cygwin COPYING.GPL NEWS.html $(TEMPLFILES) \
|
||||
pgpkeys.txt sysconftool
|
||||
@@ -443,7 +442,7 @@ sysconf_DATA = imapd.dist imapd-ssl.dist pop3d.dist po
|
||||
packaging/debian/rules packaging/debian/source/format \
|
||||
sysconftool
|
||||
sysconf_DATA = imapd.dist imapd-ssl.dist pop3d.dist pop3d-ssl.dist \
|
||||
- imapd.cnf pop3d.cnf quotawarnmsg.example
|
||||
+ quotawarnmsg.example
|
||||
|
||||
libexec_SCRIPTS = imapd.rc imapd-ssl.rc pop3d.rc pop3d-ssl.rc
|
||||
HTML2TXT = links -dump -no-numbering -no-references
|
||||
@@ -815,8 +814,8 @@ install-man1: $(man_MANS)
|
||||
HTML2TXT = elinks -dump -no-numbering -no-references
|
||||
@@ -832,8 +831,8 @@ install-man1: $(man_MANS)
|
||||
for i in $$list; do echo "$$i"; done | $(am__base_list) | \
|
||||
while read files; do \
|
||||
test -z "$$files" || { \
|
||||
- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
|
||||
- $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
|
||||
+ echo " %%INSTALL_MAN%% $$files '$(DESTDIR)$(man1dir)'"; \
|
||||
+ %%INSTALL_MAN%% $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
|
||||
+ %%INSTALL_MAN%% $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
|
||||
done; }
|
||||
|
||||
uninstall-man1:
|
||||
@@ -851,15 +850,15 @@ install-man8: $(man_MANS)
|
||||
@@ -868,15 +867,15 @@ install-man8: $(man_MANS)
|
||||
sed 'N;N;s,\n, ,g' | { \
|
||||
list=; while read file base inst; do \
|
||||
if test "$$base" = "$$inst"; then list="$$list $$file"; else \
|
||||
|
|
@ -50,7 +50,7 @@
|
|||
done; }
|
||||
|
||||
uninstall-man8:
|
||||
@@ -1452,7 +1451,7 @@ pop3d.cnf: libs/imap/pop3d.cnf
|
||||
@@ -1468,7 +1467,7 @@ quotawarnmsg.example: libs/maildir/quotawarnmsg
|
||||
quotawarnmsg.example: libs/maildir/quotawarnmsg
|
||||
cp -f $(srcdir)/libs/maildir/quotawarnmsg quotawarnmsg.example
|
||||
|
||||
|
|
@ -59,12 +59,12 @@
|
|||
$(mkinstalldirs) $(DESTDIR)$(databindir)
|
||||
$(mkinstalldirs) $(DESTDIR)$(bindir)
|
||||
test ! -x libs/tcpd/couriertls || $(INSTALL_PROGRAM) $(INSTALL_STRIP_FLAG) \
|
||||
@@ -1460,7 +1459,7 @@ install-exec-local:
|
||||
@@ -1476,7 +1475,7 @@ install-exec-local:
|
||||
$(mkinstalldirs) $(DESTDIR)$(sbindir)
|
||||
for f in mkimapdcert mkpop3dcert mkdhparams; \
|
||||
do rm -f $(DESTDIR)$(sbindir)/$$f ; \
|
||||
- $(LN_S) $(databindir)/$$f $(DESTDIR)$(sbindir)/$$f ; done
|
||||
+ $(LN_S) $(DESTDIR)$(databindir)/$$f $(DESTDIR)$(sbindir)/$$f ; done
|
||||
- $(LN_S) `realpath -m --relative-to $(sbindir)` $(databindir)/$$f $(DESTDIR)$(sbindir)/$$f ; done
|
||||
+ install -l rs $(DESTDIR)$(databindir)/$$f $(DESTDIR)$(sbindir)/$$f ; done
|
||||
$(mkinstalldirs) $(DESTDIR)$(localstatedir)
|
||||
|
||||
install-exec-hook:
|
||||
|
|
|
|||
253
mail/cyrus-imapd36/Makefile
Normal file
253
mail/cyrus-imapd36/Makefile
Normal file
|
|
@ -0,0 +1,253 @@
|
|||
PORTNAME= cyrus-imapd
|
||||
PORTVERSION= 3.6.0
|
||||
PORTREVISION= 0
|
||||
CATEGORIES= mail
|
||||
MASTER_SITES= https://github.com/cyrusimap/cyrus-imapd/releases/download/${PORTNAME}-${DISTVERSION}/
|
||||
PKGNAMESUFFIX= ${CYRUS_IMAPD_VER}
|
||||
|
||||
MAINTAINER= ume@FreeBSD.org
|
||||
COMMENT= Cyrus mail server, supporting POP3 and IMAP4 protocols ${COMMENT_${FLAVOR}}
|
||||
WWW= https://www.cyrusimap.org/
|
||||
COMMENT_http= (with HTTP)
|
||||
|
||||
LICENSE= BSD4CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
BROKEN_riscv64= fails to build: lib/chartable.c: Error 1
|
||||
|
||||
FLAVORS= basic http
|
||||
http_PKGNAMESUFFIX= ${CYRUS_IMAPD_VER}-http
|
||||
|
||||
CYRUS_IMAPD_VER= 36
|
||||
|
||||
LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 \
|
||||
libicuuc.so:devel/icu \
|
||||
libjansson.so:devel/jansson \
|
||||
libpcre.so:devel/pcre \
|
||||
libuuid.so:misc/e2fsprogs-libuuid \
|
||||
libical.so:devel/libical
|
||||
|
||||
CONFLICTS_INSTALL= cyrus-imapd2? cyrus-imapd3[0-57-] cyrus-imapd3[0-57-]-http
|
||||
|
||||
USES= compiler:c11 cpe gmake libtool perl5 pkgconfig ssl
|
||||
USE_RC_SUBR= imapd
|
||||
GNU_CONFIGURE= yes
|
||||
CYRUS_PREFIX= ${PREFIX}/cyrus
|
||||
CONFIGURE_ARGS= --libexecdir=${CYRUS_PREFIX}/libexec \
|
||||
--sbindir=${CYRUS_PREFIX}/sbin \
|
||||
--sysconfdir=${PREFIX}/etc \
|
||||
--with-cyrus-user=${CYRUS_USER} \
|
||||
--with-sasl=${LOCALBASE} \
|
||||
--with-com_err \
|
||||
--with-openssl=${OPENSSLBASE} \
|
||||
--with-perl=${PERL}
|
||||
CONFIGURE_ENV+= LIBS="-L${LOCALBASE}/lib"
|
||||
CPPFLAGS+= -I${LOCALBASE}/include
|
||||
MAKE_JOBS_UNSAFE= yes
|
||||
|
||||
USES+= shebangfix
|
||||
SHEBANG_FILES= imap/promdatagen tools/config2header \
|
||||
tools/masssievec tools/mkimap tools/translatesieve \
|
||||
perl/sieve/scripts/*.pl
|
||||
|
||||
CPE_VENDOR= cmu
|
||||
CPE_PRODUCT= cyrus_imap_server
|
||||
|
||||
OPTIONS_DEFINE= AUTOCREATE BACKUP CLAMAV CLD2 HTTP IDLED LDAP MURDER \
|
||||
MYSQL NNTP PGSQL REPLICATION SQLITE SQUAT SRS XAPIAN \
|
||||
DOCS
|
||||
OPTIONS_DEFAULT= AUTOCREATE IDLED READLINE_GNU SQLITE SQUAT SRS
|
||||
.if ${FLAVOR:U} == http
|
||||
OPTIONS_DEFAULT+= HTTP
|
||||
.endif
|
||||
OPTIONS_SUB= yes
|
||||
AUTOCREATE_DESC= Enable autocreate support
|
||||
AUTOCREATE_CONFIGURE_ENABLE= autocreate
|
||||
BACKUP_DESC= Enable backup support (experimental)
|
||||
BACKUP_CONFIGURE_ENABLE=backup
|
||||
CLAMAV_DESC= Use ClamAV
|
||||
CLAMAV_CONFIGURE_WITH= clamav
|
||||
CLAMAV_LIB_DEPENDS= libclamav.so:security/clamav
|
||||
CLD2_DESC= Use CLD2
|
||||
CLD2_CONFIGURE_WITH= cld2
|
||||
CLD2_CONFIGURE_ENV= CLD2_CFLAGS="-I${LOCALBASE}/include" \
|
||||
CLD2_LIBS="-L${LOCALBASE}/lib -lcld2"
|
||||
CLD2_LIB_DEPENDS= libcld2.so:devel/cld2
|
||||
HTTP_DESC= Enable HTTP support
|
||||
HTTP_CONFIGURE_ENABLE= http
|
||||
HTTP_LIB_DEPENDS= libnghttp2.so:www/libnghttp2 \
|
||||
libshp.so:devel/shapelib \
|
||||
libbrotlidec.so:archivers/brotli \
|
||||
libwslay_shared.so:www/wslay \
|
||||
libzstd.so:archivers/zstd
|
||||
HTTP_CONFIGURE_ENV= WSLAY_CFLAGS="-I${LOCALBASE}/include" \
|
||||
WSLAY_LIBS="-L${LOCALBASE}/lib -lwslay_shared"
|
||||
# Need additional patch to opendkim
|
||||
#HTTP_LIB_DEPENDS+= libopendkim.so:mail/opendkim
|
||||
#HTTP_CPPFLAGS+= -I${LOCALBASE}/include/opendkim
|
||||
HTTP_USES= gnome
|
||||
HTTP_USE= GNOME=libxml2
|
||||
IDLED_DESC= Enable IMAP idled support
|
||||
IDLED_CONFIGURE_ENABLE= idled
|
||||
LDAP_DESC= Enable LDAP support (experimental)
|
||||
LDAP_USE= OPENLDAP=yes
|
||||
LDAP_CONFIGURE_ON= --with-ldap=${LOCALBASE}
|
||||
MURDER_DESC= Enable IMAP Murder support
|
||||
MURDER_CONFIGURE_ENABLE=murder
|
||||
MURDER_MAKE_ENV= PTHREAD_LIBS="-lpthread"
|
||||
MYSQL_USES= mysql
|
||||
MYSQL_CONFIGURE_WITH= mysql
|
||||
NNTP_DESC= Enable NNTP support
|
||||
NNTP_CONFIGURE_ENABLE= nntp
|
||||
PGSQL_USES= pgsql
|
||||
PGSQL_CONFIGURE_ON= --with-pgsql=${LOCALBASE}
|
||||
REPLICATION_DESC= Enable replication (experimental)
|
||||
REPLICATION_CONFIGURE_ENABLE=replication
|
||||
SRS_DESC= Enable Sender Rewriting Scheme support
|
||||
SRS_CONFIGURE_ENABLE= srs
|
||||
SRS_LIB_DEPENDS= libsrs2.so:mail/libsrs2
|
||||
SQLITE_CONFIGURE_ON= --with-sqlite=${LOCALBASE}
|
||||
SQLITE_BROKEN_OFF= SQLITE is required
|
||||
SQUAT_DESC= Enable Squat support
|
||||
SQUAT_CONFIGURE_OFF= --disable-squat
|
||||
XAPIAN_DESC= Enable Xapian support
|
||||
XAPIAN_CONFIGURE_ENABLE=xapian
|
||||
XAPIAN_LIB_DEPENDS= libxapian.so:databases/xapian-core
|
||||
XAPIAN_BUILD_DEPENDS= rsync:net/rsync
|
||||
XAPIAN_RUN_DEPENDS= ${XAPIAN_BUILD_DEPENDS}
|
||||
|
||||
OPTIONS_RADIO= GSSAPI READLINE
|
||||
OPTIONS_RADIO_GSSAPI= GSSAPI_HEIMDAL GSSAPI_MIT
|
||||
.if exists(/usr/lib/libkrb5.a)
|
||||
OPTIONS_RADIO_GSSAPI+= GSSAPI_BASE
|
||||
OPTIONS_DEFAULT+= GSSAPI_BASE
|
||||
.endif
|
||||
GSSAPI_BASE_USES= gssapi
|
||||
GSSAPI_BASE_CONFIGURE_ON= --enable-gssapi="${GSSAPIBASEDIR}" \
|
||||
--with-gss_impl=heimdal
|
||||
GSSAPI_HEIMDAL_USES= gssapi:heimdal,flags
|
||||
GSSAPI_HEIMDAL_CONFIGURE_ON= --enable-gssapi="${GSSAPIBASEDIR}" \
|
||||
--with-gss_impl=heimdal
|
||||
GSSAPI_MIT_USES= gssapi:mit
|
||||
GSSAPI_MIT_CONFIGURE_ON= --enable-gssapi="${GSSAPIBASEDIR}" \
|
||||
--with-gss_impl=mit
|
||||
|
||||
OPTIONS_RADIO_READLINE= READLINE_GNU READLINE_PERL
|
||||
READLINE_GNU_DESC= Use Term::Readline::GNU for cyradm
|
||||
READLINE_GNU_RUN_DEPENDS= p5-Term-ReadLine-Gnu>=0:devel/p5-Term-ReadLine-Gnu
|
||||
READLINE_PERL_DESC= Use Term::Readline::Perl for cyradm
|
||||
READLINE_PERL_RUN_DEPENDS= p5-Term-ReadLine-Perl>=0:devel/p5-Term-ReadLine-Perl
|
||||
|
||||
MANDIRS= ${CYRUS_PREFIX}/man
|
||||
|
||||
PORTDOCS= *
|
||||
|
||||
SUB_FILES= pkg-message pkg-install pkg-deinstall cyrus-imapd-man.conf
|
||||
|
||||
SUB_LIST= CYRUS_USER=${CYRUS_USER} CYRUS_GROUP=${CYRUS_GROUP}
|
||||
|
||||
CYRUS_USER?= cyrus
|
||||
CYRUS_GROUP?= cyrus
|
||||
|
||||
MAN_MAN1= httptest imtest installsieve lmtptest mupdatetest nntptest \
|
||||
pop3test sieveshell sivtest smtptest
|
||||
MAN_MAN3= imclient
|
||||
MAN_MAN5= cyrus.conf imapd.conf krb.equiv
|
||||
|
||||
CYRUS_MAN8= arbitron backupd chk_cyrus ctl_backups ctl_conversationsdb \
|
||||
ctl_cyrusdb ctl_deliver ctl_mboxlist cvt_cyrusdb cyr_backup \
|
||||
cyr_buildinfo cyr_dbtool cyr_deny cyr_df cyr_expire cyr_info \
|
||||
cyr_synclog cyr_virusscan deliver fud idled imapd ipurge lmtpd \
|
||||
master mbexamine mbpath mbtool notifyd pop3d quota reconstruct \
|
||||
restore smmapd timsieved tls_prune unexpunge
|
||||
CYRUS_PERL_MAN1=cyradm
|
||||
CYRUS_PERL_MAN3=Cyrus::Annotator::Daemon Cyrus::Annotator::Message \
|
||||
Cyrus::IMAP Cyrus::IMAP::Admin Cyrus::IMAP::Shell \
|
||||
Cyrus::SIEVE::managesieve
|
||||
|
||||
INSTALL_TARGET= install-strip
|
||||
|
||||
REINPLACE_ARGS= -i ''
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.if ${PORT_OPTIONS:MHTTP} || ${PORT_OPTIONS:MSQLITE}
|
||||
USES+= sqlite
|
||||
.endif
|
||||
|
||||
.if !${PORT_OPTIONS:MGSSAPI_BASE} && !${PORT_OPTIONS:MGSSAPI_HEIMDAL} && \
|
||||
!${PORT_OPTIONS:MGSSAPI_MIT}
|
||||
CONFIGURE_ARGS+=--disable-gssapi
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MHTTP}
|
||||
CYRUS_MAN8+= ctl_zoneinfo httpd
|
||||
.endif
|
||||
.if ${PORT_OPTIONS:MNNTP}
|
||||
CYRUS_MAN8+= fetchnews nntpd
|
||||
.endif
|
||||
.if ${PORT_OPTIONS:MREPLICATION}
|
||||
CYRUS_MAN8+= sync_client sync_reset sync_server
|
||||
.endif
|
||||
.if ${PORT_OPTIONS:MSQUAT} || ${PORT_OPTIONS:MXAPIAN}
|
||||
CYRUS_MAN8+= squatter
|
||||
PLIST_SUB+= SQUATTER=""
|
||||
.else
|
||||
PLIST_SUB+= SQUATTER="@comment "
|
||||
.endif
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e "s|/etc/|${PREFIX}/etc/|" \
|
||||
-e "s|%%CYRUS_USER%%|${CYRUS_USER}|g" \
|
||||
-e "s|%%CYRUS_GROUP%%|${CYRUS_GROUP}|g" \
|
||||
${WRKSRC}/tools/mkimap
|
||||
.for f in masssievec translatesieve
|
||||
@${REINPLACE_CMD} -e "s|/etc/|${PREFIX}/etc/|g" \
|
||||
-e "s|/usr/sieve|/var/imap/sieve|g" \
|
||||
${WRKSRC}/tools/${f}
|
||||
.endfor
|
||||
@${REINPLACE_CMD} \
|
||||
-e 's|$$(libdir)/\(pkgconfig\)|${PREFIX}/libdata/\1|g' \
|
||||
-e 's|$$(mandir)/\(man[8]\)|${PREFIX}/cyrus/man/\1|g' \
|
||||
${WRKSRC}/Makefile.in
|
||||
|
||||
post-install:
|
||||
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Cyrus/IMAP/IMAP.so
|
||||
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Cyrus/SIEVE/managesieve/managesieve.so
|
||||
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
||||
${INSTALL_DATA} ${FILESDIR}/imapd.conf \
|
||||
${STAGEDIR}${EXAMPLESDIR}
|
||||
${SED} -e 's,/run/cyrus/socket,/var/imap/socket,' \
|
||||
${WRKSRC}/doc/examples/cyrus_conf/normal.conf \
|
||||
> ${STAGEDIR}${EXAMPLESDIR}/cyrus.conf
|
||||
.if !${PORT_OPTIONS:MHTTP}
|
||||
${REINPLACE_CMD} -e 's/^\( http\)/#\1/' \
|
||||
${STAGEDIR}${EXAMPLESDIR}/cyrus.conf
|
||||
.endif
|
||||
.for f in mkimap masssievec translatesieve
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/tools/${f} \
|
||||
${STAGEDIR}${CYRUS_PREFIX}/sbin/${f}
|
||||
.endfor
|
||||
${INSTALL_DATA} ${WRKDIR}/cyrus-imapd-man.conf \
|
||||
${STAGEDIR}${PREFIX}/etc/man.d/cyrus-imapd.conf
|
||||
.for s in 1 3 5
|
||||
. for m in ${MAN_MAN${s}}
|
||||
@${ECHO_CMD} man/man${s}/${m}.${s}.gz >> ${TMPPLIST}
|
||||
. endfor
|
||||
.endfor
|
||||
.for s in 1 3
|
||||
. for m in ${CYRUS_PERL_MAN${s}}
|
||||
@${ECHO_CMD} ${SITE_MAN${s}}/${m}.${s}.gz >> ${TMPPLIST}
|
||||
. endfor
|
||||
.endfor
|
||||
.for m in ${CYRUS_MAN8}
|
||||
@${ECHO_CMD} ${CYRUS_PREFIX}/man/man8/${m}.8.gz >> ${TMPPLIST}
|
||||
.endfor
|
||||
|
||||
post-install-DOCS-on:
|
||||
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} \
|
||||
"! ( -path */html/_sources* -o -name .buildinfo )"
|
||||
${RM} -r ${STAGEDIR}${DOCSDIR}/rst ${STAGEDIR}${DOCSDIR}/source
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
mail/cyrus-imapd36/distinfo
Normal file
3
mail/cyrus-imapd36/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1670847461
|
||||
SHA256 (cyrus-imapd-3.6.0.tar.gz) = 83c606888ffebcdb9b7cd7860ab3c61267ab0d79233c2cff56647b43f16cdbab
|
||||
SIZE (cyrus-imapd-3.6.0.tar.gz) = 13655557
|
||||
1
mail/cyrus-imapd36/files/cyrus-imapd-man.conf.in
Normal file
1
mail/cyrus-imapd36/files/cyrus-imapd-man.conf.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
MANPATH %%PREFIX%%/cyrus/man
|
||||
372
mail/cyrus-imapd36/files/imapd.conf
Normal file
372
mail/cyrus-imapd36/files/imapd.conf
Normal file
|
|
@ -0,0 +1,372 @@
|
|||
# Sample configurations file for Cyrus IMAPd
|
||||
# Most lines in this file are commented; in this case the default is used.
|
||||
# The commented lines (usually) contain the default value
|
||||
|
||||
# The pathname of the IMAP configuration directory
|
||||
#
|
||||
configdirectory: /var/imap
|
||||
|
||||
# The partition name used by default for new mailboxes
|
||||
#
|
||||
#defaultpartition: default
|
||||
|
||||
# The directory for the different partitions
|
||||
#
|
||||
partition-default: /var/spool/imap
|
||||
|
||||
# Use the UNIX separator character '/' for delimiting levels of
|
||||
# mailbox hierarchy. The default is to use the netnews separator
|
||||
# character '.'.
|
||||
#unixhierarchysep: yes
|
||||
|
||||
# Use the alternate IMAP namespace, where personal folders reside at
|
||||
# the same level in the hierarchy as INBOX.
|
||||
#
|
||||
#altnamespace: yes
|
||||
|
||||
# If using the alternate IMAP namespace, the prefix for the other
|
||||
# users namespace. The hierarchy delimiter will be automatically
|
||||
# appended.
|
||||
#
|
||||
#userprefix: Other Users
|
||||
|
||||
# If using the alternate IMAP namespace, the prefix for the shared
|
||||
# namespace. The hierarchy delimiter will be automatically appended.
|
||||
#
|
||||
#sharedprefix: Shared Folders
|
||||
|
||||
# The umask value used by various Cyrus IMAP programs
|
||||
#
|
||||
#umask: 077
|
||||
|
||||
# This is the hostname visible in the greeting messages of the POP,
|
||||
# IMAP and LMTP daemons. If it is unset, then the result returned from
|
||||
# gethostname(2) is used.
|
||||
#
|
||||
#servername: <result returned by gethostname(2)>
|
||||
|
||||
# Whether to allow anonymous logins
|
||||
#
|
||||
#allowanonymouslogin: no
|
||||
|
||||
# Allow the use of cleartext passwords on the wire.
|
||||
#
|
||||
#allowplaintext: yes
|
||||
|
||||
# The percent of quota utilization over which the server generates
|
||||
# warnings.
|
||||
#
|
||||
#quotawarn: 90
|
||||
|
||||
# The length of the IMAP server's inactivity autologout timer, in minutes.
|
||||
# The minimum value is 30, the default.
|
||||
#
|
||||
#timeout: 30
|
||||
|
||||
# The interval (in seconds) for polling the mailbox for changes while
|
||||
# running the IDLE command. This option is used when idled can not be
|
||||
# contacted or when polling is used exclusively. The minimum value is
|
||||
# 1. A value of 0 will disable polling (and disable IDLE if polling
|
||||
# is the only method available).
|
||||
#
|
||||
#imapidlepoll: 60
|
||||
|
||||
# If enabled, the server responds to an ID command with a parameter
|
||||
# list containing: version, vendor, support-url, os, os-version,
|
||||
# command, arguments, environment. Otherwise the server returns NIL.
|
||||
#
|
||||
#imapidresponse: yes
|
||||
|
||||
# Set the length of the POP server's inactivity autologout timer, in
|
||||
# minutes. The minimum value is 10, the default.
|
||||
#
|
||||
#poptimeout: 10
|
||||
|
||||
# Set the minimum amount of time the server forces users to wait between
|
||||
# successive POP logins, in minutes. The default is 0.
|
||||
#
|
||||
#popminpoll: 0
|
||||
|
||||
# The number of days advertised as being the minimum a message may be
|
||||
# left on the POP server before it is deleted (via the CAPA command,
|
||||
# defined in the POP3 Extension Mechanism, which some clients may
|
||||
# support). "NEVER", the default, may be specified with a negative
|
||||
# number. The Cyrus POP3 server never deletes mail, no matter what
|
||||
# the value of this parameter is. However, if a site implements a
|
||||
# less liberal policy, it needs to change this parameter accordingly.
|
||||
#
|
||||
#popexpiretime: 0
|
||||
|
||||
# The list of userids with administrative rights. Separate each userid
|
||||
# with a space. We recommend that administrator userids be separate from
|
||||
# standard userids. Sites using Kerberos authentication may use separate
|
||||
# "admin" instances.
|
||||
#
|
||||
#admins: <none>
|
||||
|
||||
# A list of users and groups that are allowed to proxy for other
|
||||
# users, seperated by spaces. Any user listed in this will be allowed
|
||||
# to login for any other user: use with caution.
|
||||
#
|
||||
#proxyservers: <none>
|
||||
|
||||
# The Access Control List (ACL) placed on a newly-created (non-user)
|
||||
# mailbox that does not have a parent mailbox.
|
||||
#
|
||||
#defaultacl: anyone lrs
|
||||
|
||||
# The pathname of the news spool directory. Only used if the partition-news
|
||||
# configuration option is set.
|
||||
#
|
||||
#newsspool: <no default>
|
||||
|
||||
# Prefix to be prepended to newsgroup names to make the corresponding IMAP
|
||||
# mailbox names.
|
||||
#
|
||||
#newsprefix: <none>
|
||||
|
||||
# If set to a value of zero or higher, users have their INBOX folders
|
||||
# created upon a successful login event or upon lmtpd(8) message
|
||||
# delivery if autocreate_post is enabled, provided their INBOX did
|
||||
# not yet already exist.
|
||||
#
|
||||
# The user's quota is set to the value if it is greater than zero,
|
||||
# otherwise the user has unlimited quota.
|
||||
#
|
||||
# Note that quota is specified in kilobytes.
|
||||
#
|
||||
#autocreate_quota: -1
|
||||
|
||||
# Include notations in the protocol telemetry logs indicating the number
|
||||
# of seconds since the last command or response.
|
||||
#
|
||||
#logtimestamps: no
|
||||
|
||||
# Number of seconds to pause after a successful plaintext login. For systems
|
||||
# that support strong authentication, this permits users to perceive a cost
|
||||
# of using plaintext passwords.
|
||||
#
|
||||
#plaintextloginpause: 0
|
||||
|
||||
# The pathname of srvtab file containing the server's private key.
|
||||
# This option is passed to the SASL library and overrides its default
|
||||
# setting.
|
||||
#
|
||||
#srvtab: /etc/srvtab
|
||||
|
||||
# The list of remote realms whose users may log in using cross-realm
|
||||
# authentications. Seperate each realm name by a space. This option is
|
||||
# only used when the server is compiled with Kerberos authentication.
|
||||
#
|
||||
#loginrealms: <none>
|
||||
|
||||
# If enabled, any authentication identity which has a rights on a user's
|
||||
# INBOX may log in as that user. This option is only used when the server
|
||||
# is compiled with Kerberos authentication.
|
||||
#
|
||||
#loginuseacl: no
|
||||
|
||||
# If enabled, lmtpd attempts to only write one copy of a message per
|
||||
# partition and create hard links, resulting in a potentially large
|
||||
# disk savings.
|
||||
#
|
||||
#singleinstancestore: yes
|
||||
|
||||
# If enabled, lmtpd will suppress delivery of a message to a mailbox
|
||||
# if a message with the same message-id (or resent-message-id) is
|
||||
# recorded as having already been delivered to the mailbox. Records
|
||||
# the mailbox and message-id/resent-message-id of all successful
|
||||
# deliveries.
|
||||
#
|
||||
#duplicatesuppression: yes
|
||||
|
||||
# If enabled, lmtpd rejects messages with 8-bit characters in the
|
||||
# headers. Otherwise, 8-bit characters are changed to `X'. (A proper
|
||||
# soultion to non-ASCII characters in headers is offered by RFC 2047
|
||||
# and its predecessors.)
|
||||
#
|
||||
#reject8bit: no
|
||||
|
||||
# Maximum incoming LMTP message size. If set, lmtpd will reject
|
||||
# messages larger than maxmessagesize bytes. The default is to allow
|
||||
# messages of any size.
|
||||
#
|
||||
#maxmessagesize: <unlimited>
|
||||
|
||||
# Userid used to deliver messages to shared folders. For example, if
|
||||
# set to "bb", email sent to "bb+shared.blah" would be delivered to
|
||||
# the "shared.blah" folder. By default, an email address of
|
||||
# "+shared.blah" would be used.
|
||||
#postuser: <none>
|
||||
|
||||
# If enabled at compile time, this specifies a URL to reply when
|
||||
# Netscape asks the server where the mail administration HTTP server
|
||||
# is. The default is a site at CMU with a hopefully informative
|
||||
# message; administrators should set this to a local resource with
|
||||
# some information of greater use.
|
||||
#
|
||||
#netscapeurl: http://andrew2.andrew.cmu.edu/cyrus/imapd/netscapeadmin.html
|
||||
|
||||
# Notifyd(8) method to use for "MAIL" notifications. If not set,
|
||||
# "MAIL" notifications are disabled.
|
||||
#
|
||||
#mailnotifier: <no default>
|
||||
|
||||
# Notifyd(8) method to use for "SIEVE" notifications. If not set,
|
||||
# "SIEVE" notifications are disabled.
|
||||
#
|
||||
# This method is only used when no method is specified in the script.
|
||||
#
|
||||
#sievenotifier: <no default>
|
||||
|
||||
# If enabled, lmtpd will look for Sieve scripts in user's home
|
||||
# directories: ~user/.sieve.
|
||||
#
|
||||
sieveusehomedir: false
|
||||
|
||||
# If sieveusehomedir is false, this directory is searched for Sieve scripts.
|
||||
# The active Sieve script is s called "default", placed in the users sieve
|
||||
# sieve directory (ie. /var/imap/sieve/u/user).
|
||||
#
|
||||
sievedir: /var/imap/sieve
|
||||
|
||||
# The pathname of the sendmail executable. Sieve uses sendmail for
|
||||
# sending rejections, redirects and vaca- tion responses.
|
||||
#
|
||||
#sendmail: /usr/sbin/sendmail
|
||||
|
||||
# Username that is used as the 'From' address in rejection MDNs
|
||||
# produced by sieve.
|
||||
#
|
||||
#postmaster: postmaster
|
||||
|
||||
# If enabled, the partitions will also be hashed, in addition to the hashing
|
||||
# done on configuration directories. This is recommended if one partition has
|
||||
# a very bushy mailbox tree.
|
||||
#
|
||||
#hashimapspool: false
|
||||
|
||||
# Maximum size (in kilobytes) any sieve script can be, enforced at
|
||||
# submission by timsieved(8).
|
||||
#
|
||||
#sieve_maxscriptsize: 32
|
||||
|
||||
# Maximum number of sieve scripts any user may have, enforced at
|
||||
# submission by timsieved(8).
|
||||
#
|
||||
#sieve_maxscripts: 5
|
||||
|
||||
# The cyrusdb backend to use for mailbox annotations.
|
||||
# Allowed values: skiplist, twoskip
|
||||
#
|
||||
#annotation_db: twoskip
|
||||
|
||||
# The cyrusdb backend to use for the duplicate delivery suppression
|
||||
# and sieve.
|
||||
# Allowed values: skiplist, sql, twoskip
|
||||
#
|
||||
#duplicate_db: twoskip
|
||||
|
||||
# The cyrusdb backend to use for the mailbox list.
|
||||
# Allowed values: skiplist, twoskip
|
||||
#
|
||||
#mboxlist_db: twoskip
|
||||
|
||||
# The cyrusdb backend to use for the pts cache.
|
||||
# Allowed values: skiplist, twoskip
|
||||
#
|
||||
#ptscache_db: twoskip
|
||||
|
||||
# The cyrusdb backend to use for the seen state.
|
||||
# Allowed values: flat, skiplist, twoskip
|
||||
#
|
||||
#seenstate_db: twoskip
|
||||
|
||||
# The cyrusdb backend to use for the imap status cache.
|
||||
# Allowed values: skiplist, sql, twoskip
|
||||
#
|
||||
#statuscache_db: twoskip
|
||||
|
||||
# The cyrusdb backend to use for the subscriptions list.
|
||||
# Allowed values: flat, skiplist, twoskip
|
||||
#
|
||||
#subscription_db: flat
|
||||
|
||||
# Maximum SSF (security strength factor) that the server will allow a
|
||||
# client to negotiate.
|
||||
#
|
||||
#sasl_maximum_layer: 256
|
||||
|
||||
# The minimum SSF that the server will allow a client to negotiate. A
|
||||
# value of 1 requires integrity protection; any higher value requires
|
||||
# some amount of encryption.
|
||||
#
|
||||
#sasl_minimum_layer: 0
|
||||
|
||||
# The mechanism used by the server to verify plaintext passwords. Possible
|
||||
# values include "auxprop" or "saslauthd"
|
||||
#
|
||||
sasl_pwcheck_method: auxprop
|
||||
|
||||
# If enabled, the SASL library will automatically create authentication
|
||||
# secrets when given a plaintext password. See the SASL documentation.
|
||||
#
|
||||
#sasl_auto_transition: no
|
||||
|
||||
# Whitespace separated list of mechanisms to allow (e.g. 'plain otp').
|
||||
# Used to restrict the mechanisms to a subset of the installed
|
||||
# plugins. The default is all available.
|
||||
#
|
||||
#sasl_mech_list: cram-md5 digest-md5
|
||||
|
||||
# Location of the opiekeys file
|
||||
#
|
||||
#sasl_opiekeys: /etc/opiekeys
|
||||
|
||||
# File containing the global certificate used for ALL services (imap,
|
||||
# pop3, lmtp).
|
||||
#
|
||||
#tls_server_cert: <none>
|
||||
|
||||
# File containing the private key belonging to the global server
|
||||
# certificate.
|
||||
#
|
||||
#tls_server_key: <none>
|
||||
|
||||
# File containing one or more Certificate Authority (CA) certificates.
|
||||
#
|
||||
#tls_client_ca_file: <none>
|
||||
|
||||
# Path to directory with certificates of CAs.
|
||||
#
|
||||
#tls_client_ca_dir: <none>
|
||||
|
||||
# The cyrusdb backend to use for the TLS cache.
|
||||
# Allowed values: skiplist, sql, twoskip
|
||||
#
|
||||
#tls_sessions_db: twoskip
|
||||
|
||||
# The length of time (in minutes) that a TLS session will be cached
|
||||
# for later reuse. The maximum value is 1440 (24 hours), the default.
|
||||
# A value of 0 will disable session caching.
|
||||
#
|
||||
#tls_session_timeout: 1440
|
||||
|
||||
# The right that a user needs to delete a mailbox.
|
||||
#
|
||||
#deleteright: c
|
||||
|
||||
# Unix domain socket that lmtpd listens on, used by deliver(8).
|
||||
#
|
||||
#lmtpsocket: /var/imap/socket/lmtp
|
||||
|
||||
# Unix domain socket that idled listens on.
|
||||
#
|
||||
#idlesocket: /var/imap/socket/idle
|
||||
|
||||
# Unix domain socket that the new mail notification daemon listens on.
|
||||
#
|
||||
#notifysocket: /var/imap/socket/notify
|
||||
|
||||
#
|
||||
# EOF
|
||||
36
mail/cyrus-imapd36/files/imapd.in
Normal file
36
mail/cyrus-imapd36/files/imapd.in
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Start or stop cyrus-imapd
|
||||
|
||||
# PROVIDE: cyrus_imapd imap
|
||||
# REQUIRE: DAEMON
|
||||
# BEFORE: mail
|
||||
# KEYWORD: shutdown
|
||||
|
||||
# Define these cyrus_imapd_* variables in one of these files:
|
||||
# /etc/rc.conf
|
||||
# /etc/rc.conf.local
|
||||
# /etc/rc.conf.d/cyrus_imapd
|
||||
#
|
||||
# DO NOT CHANGE THESE DEFAULT VALUES HERE
|
||||
#
|
||||
[ -z "$cyrus_imapd_enable" ] && cyrus_imapd_enable="NO" # Enable imapd
|
||||
#cyrus_imapd_program="%%PREFIX%%/cyrus/libexec/master" # Location of imapd
|
||||
[ -z "$cyrus_imapd_flags" ] && cyrus_imapd_flags="-d" # Flags to imapd program
|
||||
|
||||
. /etc/rc.subr
|
||||
|
||||
name="cyrus_imapd"
|
||||
rcvar=cyrus_imapd_enable
|
||||
command="%%PREFIX%%/cyrus/libexec/master"
|
||||
pidfile="/var/run/cyrus-master.pid"
|
||||
required_files="%%PREFIX%%/etc/cyrus.conf %%PREFIX%%/etc/imapd.conf"
|
||||
stop_postcmd="cyrus_imapd_poststop"
|
||||
extra_commands="reload"
|
||||
|
||||
cyrus_imapd_poststop() {
|
||||
/bin/rm -f ${pidfile}
|
||||
}
|
||||
|
||||
load_rc_config $name
|
||||
run_rc_command "$1"
|
||||
11
mail/cyrus-imapd36/files/patch-Makefile.in
Normal file
11
mail/cyrus-imapd36/files/patch-Makefile.in
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- Makefile.in.orig 2020-06-22 03:08:46 UTC
|
||||
+++ Makefile.in
|
||||
@@ -2348,7 +2348,7 @@ com_err_et_libcyrus_com_err_la_CFLAGS = $(AM_CFLAGS) $
|
||||
# MD5 algorithms, without needing SSL. Currently we have no way of
|
||||
# minimally linking such code.
|
||||
LD_BASIC_ADD = lib/libcyrus.la lib/libcyrus_min.la ${LIBS} \
|
||||
- ${LIB_SASL} $(SSL_LIBS) $(GCOV_LIBS)
|
||||
+ ${LIB_SASL} $(SSL_LIBS) $(GCOV_LIBS) -lm
|
||||
|
||||
|
||||
# UTILITY is the libraries that utility programs which use Cyrus'
|
||||
22
mail/cyrus-imapd36/files/patch-configure
Normal file
22
mail/cyrus-imapd36/files/patch-configure
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
Index: configure
|
||||
diff -u configure.orig configure
|
||||
--- configure.orig 2010-10-18 21:36:00.000000000 +0900
|
||||
+++ configure 2010-10-18 23:50:45.966557478 +0900
|
||||
@@ -9501,7 +9501,7 @@
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
ac_check_lib_save_LIBS=$LIBS
|
||||
-LIBS="-lgssapi ${GSSAPIBASE_LIBS} -lgssapi -lkrb5 -lasn1 -lroken ${LIB_CRYPT} ${LIB_DES} -lcom_err ${LIB_SOCKET} $LIBS"
|
||||
+LIBS="-lgssapi ${GSSAPIBASE_LIBS} -lgssapi -lkrb5 -lasn1 -lroken ${LIB_CRYPT} ${LIB_DES} -lcom_err ${LIB_SOCKET} -lhx509 $LIBS"
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
|
||||
@@ -9803,7 +9803,7 @@
|
||||
GSSAPIBASE_STATIC_LIBS="$GSSAPIBASE_LIBS $gssapi_dir/libgssapi_krb5.a $gssapi_dir/libkrb5.a $gssapi_dir/libk5crypto.a $gssapi_dir/libcom_err.a ${K5SUPSTATIC}"
|
||||
elif test "$gss_impl" = "heimdal"; then
|
||||
CPPFLAGS="$CPPFLAGS -DKRB5_HEIMDAL"
|
||||
- GSSAPIBASE_LIBS="$GSSAPIBASE_LIBS -lgssapi -lkrb5 -lasn1 -lroken ${LIB_CRYPT} ${LIB_DES} -lcom_err"
|
||||
+ GSSAPIBASE_LIBS="$GSSAPIBASE_LIBS -lgssapi -lkrb5 -lasn1 -lroken ${LIB_CRYPT} ${LIB_DES} -lcom_err -lhx509"
|
||||
GSSAPIBASE_STATIC_LIBS="$GSSAPIBASE_STATIC_LIBS $gssapi_dir/libgssapi.a $gssapi_dir/libkrb5.a $gssapi_dir/libasn1.a $gssapi_dir/libroken.a $gssapi_dir/libcom_err.a ${LIB_CRYPT}"
|
||||
elif test "$gss_impl" = "cybersafe03"; then
|
||||
# Version of CyberSafe with two libraries
|
||||
11
mail/cyrus-imapd36/files/patch-imap__http_client.h
Normal file
11
mail/cyrus-imapd36/files/patch-imap__http_client.h
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- imap/http_client.h.orig 2016-04-11 02:02:11 UTC
|
||||
+++ imap/http_client.h
|
||||
@@ -57,7 +57,7 @@ struct body_t {
|
||||
unsigned char framing; /* Message framing */
|
||||
unsigned char te; /* Transfer-Encoding */
|
||||
unsigned max; /* Max allowed len */
|
||||
- ulong len; /* Content-Length */
|
||||
+ unsigned long len; /* Content-Length */
|
||||
struct buf payload; /* Payload */
|
||||
};
|
||||
|
||||
11
mail/cyrus-imapd36/files/patch-imap__httpd.h
Normal file
11
mail/cyrus-imapd36/files/patch-imap__httpd.h
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- imap/httpd.h.orig 2016-04-11 02:02:11 UTC
|
||||
+++ imap/httpd.h
|
||||
@@ -264,7 +264,7 @@ struct patch_doc_t {
|
||||
|
||||
/* Meta-data for response body (payload & representation headers) */
|
||||
struct resp_body_t {
|
||||
- ulong len; /* Content-Length */
|
||||
+ unsigned long len; /* Content-Length */
|
||||
struct range *range; /* Content-Range */
|
||||
const char *fname; /* Content-Dispo */
|
||||
unsigned char enc; /* Content-Encoding */
|
||||
11
mail/cyrus-imapd36/files/patch-imap__jmap_mail_submission.c
Normal file
11
mail/cyrus-imapd36/files/patch-imap__jmap_mail_submission.c
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- imap/jmap_mail_submission.c.orig 2022-03-06 23:01:23 UTC
|
||||
+++ imap/jmap_mail_submission.c
|
||||
@@ -223,7 +223,7 @@ static int _emailsubmission_address_parse(json_t *addr
|
||||
|
||||
if (!strcasecmp(key, "HOLDFOR")) {
|
||||
char *endptr = (char *) val;
|
||||
- ulong interval = val ? strtoul(val, &endptr, 10) : ULONG_MAX;
|
||||
+ unsigned long interval = val ? strtoul(val, &endptr, 10) : ULONG_MAX;
|
||||
time_t now = time(0);
|
||||
|
||||
if (endptr == val || *endptr != '\0' ||
|
||||
48
mail/cyrus-imapd36/files/patch-imap__notify.c
Normal file
48
mail/cyrus-imapd36/files/patch-imap__notify.c
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
--- imap/notify.c.orig 2021-05-10 04:34:24 UTC
|
||||
+++ imap/notify.c
|
||||
@@ -49,6 +49,9 @@
|
||||
#include <syslog.h>
|
||||
#include <sys/mman.h>
|
||||
#include <sys/types.h>
|
||||
+#if defined(__FreeBSD__)
|
||||
+#include <sys/sysctl.h>
|
||||
+#endif
|
||||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>
|
||||
#include <sys/un.h>
|
||||
@@ -209,6 +212,27 @@ EXPORTED void notify(const char *method,
|
||||
FNAME_NOTIFY_SOCK, sizeof(sun_data.sun_path));
|
||||
}
|
||||
|
||||
+#if defined(__FreeBSD__)
|
||||
+ size_t maxsockbuf;
|
||||
+ size_t len = sizeof(maxsockbuf);
|
||||
+ r = sysctlbyname("kern.ipc.maxsockbuf", &maxsockbuf, &len, NULL, 0);
|
||||
+ if (r == 0) {
|
||||
+ bufsiz = MIN(maxsockbuf, NOTIFY_MAXSIZE);
|
||||
+ } else {
|
||||
+ syslog(LOG_WARNING,
|
||||
+ "NOTIFY(%s): unable to sysctlbyname(kern.ipc.maxsockbuf): %m",
|
||||
+ loginfo);
|
||||
+ bufsiz = NOTIFY_MAXSIZE;
|
||||
+ }
|
||||
+
|
||||
+ optlen = sizeof(bufsiz);
|
||||
+ r = setsockopt(soc, SOL_SOCKET, SO_SNDBUF, &bufsiz, optlen);
|
||||
+ if (r == -1) {
|
||||
+ syslog(LOG_WARNING,
|
||||
+ "NOTIFY(%s): unable to setsockopt(SO_SNDBUF) on socket: %m",
|
||||
+ loginfo);
|
||||
+ }
|
||||
+#else
|
||||
/* Get send buffer size */
|
||||
optlen = sizeof(bufsiz);
|
||||
r = getsockopt(soc, SOL_SOCKET, SO_SNDBUF, &bufsiz, &optlen);
|
||||
@@ -221,6 +245,7 @@ EXPORTED void notify(const char *method,
|
||||
|
||||
/* Use minimum of 1/10 of send buffer size (-overhead) NOTIFY_MAXSIZE */
|
||||
bufsiz = MIN(bufsiz / 10 - 32, NOTIFY_MAXSIZE);
|
||||
+#endif
|
||||
|
||||
/*
|
||||
* build request of the form:
|
||||
14
mail/cyrus-imapd36/files/patch-imap__xapian_wrap.cpp
Normal file
14
mail/cyrus-imapd36/files/patch-imap__xapian_wrap.cpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
--- imap/xapian_wrap.cpp.orig 2022-02-23 00:13:21 UTC
|
||||
+++ imap/xapian_wrap.cpp
|
||||
@@ -32,7 +32,11 @@ extern "C" {
|
||||
#include <xapian.h>
|
||||
|
||||
#ifdef HAVE_CLD2
|
||||
+#ifdef __FreeBSD__
|
||||
+#include <cld/public/compact_lang_det.h>
|
||||
+#else
|
||||
#include <cld2/public/compact_lang_det.h>
|
||||
+#endif
|
||||
#endif
|
||||
|
||||
// from global.h
|
||||
19
mail/cyrus-imapd36/files/patch-lib__cyr_qsort_r.c
Normal file
19
mail/cyrus-imapd36/files/patch-lib__cyr_qsort_r.c
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
--- lib/cyr_qsort_r.c.orig 2019-12-04 02:17:01 UTC
|
||||
+++ lib/cyr_qsort_r.c
|
||||
@@ -18,14 +18,14 @@ EXPORTED void cyr_qsort_r(void *base, size_t nmemb, si
|
||||
// NOTE: this is kinda ugly, but it's OK if you're not multithreaded
|
||||
|
||||
static void *qsort_r_thunk;
|
||||
-static int (*qsort_r_compar)(const void *, const void *, void *);
|
||||
+static int (*qsort_r_compar)QSORT_R_COMPAR_ARGS(const void *, const void *, void *);
|
||||
static int qsort_r_compar_func(const void *a, const void *b)
|
||||
{
|
||||
return qsort_r_compar(a, b, qsort_r_thunk);
|
||||
}
|
||||
|
||||
EXPORTED void cyr_qsort_r(void *base, size_t nmemb, size_t size,
|
||||
- int (*compar)(const void *, const void *, void *),
|
||||
+ int (*compar)QSORT_R_COMPAR_ARGS(const void *, const void *, void *),
|
||||
void *thunk)
|
||||
{
|
||||
qsort_r_thunk = thunk;
|
||||
20
mail/cyrus-imapd36/files/patch-lib__imapoptions
Normal file
20
mail/cyrus-imapd36/files/patch-lib__imapoptions
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
--- lib/imapoptions.orig 2020-02-06 22:38:20 UTC
|
||||
+++ lib/imapoptions
|
||||
@@ -2230,7 +2230,7 @@ If all partitions are over that limit, this feature is
|
||||
{ "seenstate_db", "twoskip", STRINGLIST("flat", "skiplist", "twoskip", "zeroskip"), "3.1.6" }
|
||||
/* The cyrusdb backend to use for the seen state. */
|
||||
|
||||
-{ "sendmail", "/usr/lib/sendmail", STRING, "2.3.17" }
|
||||
+{ "sendmail", "/usr/sbin/sendmail", STRING, "2.3.17" }
|
||||
/* The pathname of the sendmail executable. Sieve invokes sendmail
|
||||
for sending rejections, redirects and vacation responses. */
|
||||
|
||||
@@ -2363,7 +2363,7 @@ product version in the capabilities
|
||||
For backward compatibility, if no unit is specified, seconds is
|
||||
assumed. */
|
||||
|
||||
-{ "sievedir", "/usr/sieve", STRING, "2.3.17" }
|
||||
+{ "sievedir", "/var/imap/sieve", STRING, "2.3.17" }
|
||||
/* If sieveusehomedir is false, this directory is searched for Sieve
|
||||
scripts. */
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue