*/*: sync with upstream

Taken from: HardenedBSD
This commit is contained in:
Franco Fichtner 2019-04-22 21:23:52 +02:00
parent 015ef9c0f0
commit 7f64a4e5f9
424 changed files with 3286 additions and 5642 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= fasttracker2
DISTVERSION= 0.1-b149
DISTVERSION= 0.1-b150
CATEGORIES= audio
MASTER_SITES= https://16-bits.org/ \
LOCAL/ehaupt

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1555658970
SHA256 (ft2clone-b149-code.zip) = d6c5b8ce2ac0a973ea2632e6ee0215daa8c902ebcdb23465775a6004164d79b1
SIZE (ft2clone-b149-code.zip) = 3425082
TIMESTAMP = 1556007856
SHA256 (ft2clone-b150-code.zip) = 08ca9ab970f5024b8f370deb15f71865324c1c18d6b63b13b1f705c52f3ec43f
SIZE (ft2clone-b150-code.zip) = 3425078

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= locust
PORTVERSION= 0.9.0
PORTVERSION= 0.11.0
CATEGORIES= benchmarks www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -11,6 +11,7 @@ MAINTAINER= egypcio@FreeBSD.org
COMMENT= Python utility for doing easy, distributed load testing
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask>=0.10.1:www/py-flask@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}gevent>=1.2.2:devel/py-gevent@${PY_FLAVOR} \
@ -21,12 +22,15 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask>=0.10.1:www/py-flask@${PY_FLAVOR} \
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist distutils
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
OPTIONS_DEFINE= EXAMPLES
do-test:
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
post-install-EXAMPLES-on:
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${FILESDIR}/extra-EXAMPLES* ${STAGEDIR}${EXAMPLESDIR}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1547833536
SHA256 (locustio-0.9.0.tar.gz) = c77b471e0e08e215c93a7af9a95b79193268072873fbbc0effca40f3d9b58be4
SIZE (locustio-0.9.0.tar.gz) = 226870
TIMESTAMP = 1555083697
SHA256 (locustio-0.11.0.tar.gz) = 93404f831114791b0756325c53b08bff73f048eeb69688be657629feaa62b507
SIZE (locustio-0.11.0.tar.gz) = 229879

View File

@ -66,6 +66,7 @@
SUBDIR += mafft
SUBDIR += mapm3
SUBDIR += migrate
SUBDIR += minimap2
SUBDIR += molden
SUBDIR += mopac
SUBDIR += mrbayes

View File

@ -11,7 +11,8 @@ COMMENT= Ultrafast, memory-efficient short read aligner
LICENSE= GPLv3+
LICENSE_FILE= ${WRKSRC}/LICENSE
# May also work on other 64-bit platforms, but untested
# Requires a 64-bit processor and depends on hard-coded SSE instructions
# Experimental support for AARCH64 as of 2.3.5
ONLY_FOR_ARCHS= amd64
LIB_DEPENDS= libtbb.so:devel/tbb
RUN_DEPENDS= bash:shells/bash

25
biology/minimap2/Makefile Normal file
View File

@ -0,0 +1,25 @@
# $FreeBSD$
PORTNAME= minimap2
DISTVERSIONPREFIX= v
DISTVERSION= 2.16
CATEGORIES= biology
MAINTAINER= jwb@FreeBSD.org
COMMENT= Pairwise aligner for genomic and spliced nucleotide sequences
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
# Depends on hard-coded SSE instructions
# There appears to be some support for AARCH64 as well
ONLY_FOR_ARCHS= amd64 i386
USES= gmake
USE_GITHUB= yes
GH_ACCOUNT= lh3
INSTALL_TARGET= install-strip
PLIST_FILES= bin/minimap2 man/man1/minimap2.1.gz
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1555901297
SHA256 (lh3-minimap2-v2.16_GH0.tar.gz) = 9d4f1c9f1c2b29c2560b7ad53b2210dabd82161a0f88184f423534bd289433c3
SIZE (lh3-minimap2-v2.16_GH0.tar.gz) = 221287

View File

@ -0,0 +1,40 @@
--- Makefile.orig 2019-02-28 20:49:24 UTC
+++ Makefile
@@ -1,11 +1,19 @@
-CFLAGS= -g -Wall -O2 -Wc++-compat #-Wextra
-CPPFLAGS= -DHAVE_KALLOC
+CFLAGS?= -g -Wall -O2
+CFLAGS+= -Wc++-compat #-Wextra
+CPPFLAGS+= -DHAVE_KALLOC
INCLUDES=
OBJS= kthread.o kalloc.o misc.o bseq.o sketch.o sdust.o options.o index.o chain.o align.o hit.o map.o format.o pe.o esterr.o splitidx.o ksw2_ll_sse.o
PROG= minimap2
PROG_EXTRA= sdust minimap2-lite
LIBS= -lm -lz -lpthread
+PREFIX?= /usr/local
+DESTDIR?= .
+MAN1DIR?= ${PREFIX}/man/man1
+MKDIR?= mkdir
+INSTALL?= install
+STRIP?= strip
+
ifeq ($(arm_neon),) # if arm_neon is not defined
ifeq ($(sse2only),) # if sse2only is not defined
OBJS+=ksw2_extz2_sse41.o ksw2_extd2_sse41.o ksw2_exts2_sse41.o ksw2_extz2_sse2.o ksw2_extd2_sse2.o ksw2_exts2_sse2.o ksw2_dispatch.o
@@ -84,6 +92,15 @@ ksw2_exts2_neon.o:ksw2_exts2_sse.c ksw2.h kalloc.h
$(CC) -c $(CFLAGS) $(CPPFLAGS) -DKSW_SSE2_ONLY -D__SSE2__ $(INCLUDES) $< -o $@
# other non-file targets
+
+install: all
+ ${MKDIR} -p ${DESTDIR}${PREFIX}/bin
+ ${MKDIR} -p ${DESTDIR}${MAN1DIR}
+ ${INSTALL} -c minimap2 ${DESTDIR}${PREFIX}/bin
+ ${INSTALL} -c minimap2.1 ${DESTDIR}${MAN1DIR}
+
+install-strip: install
+ ${STRIP} ${DESTDIR}${PREFIX}/bin/minimap2
clean:
rm -fr gmon.out *.o a.out $(PROG) $(PROG_EXTRA) *~ *.a *.dSYM build dist mappy*.so mappy.c python/mappy.c mappy.egg*

View File

@ -0,0 +1,18 @@
Minimap2 is a versatile sequence alignment program that aligns DNA or mRNA
sequences against a large reference database. Typical use cases include:
(1) mapping PacBio or Oxford Nanopore genomic reads to the human genome
(2) finding overlaps between long reads with error rate up to ~15%
(3) splice-aware alignment of PacBio Iso-Seq or Nanopore cDNA or Direct RNA
readsagainst a reference genome
(4) aligning Illumina single- or paired-end reads
(5) assembly-to-assembly alignment
(6) full-genome alignment between two closely related species with divergence
below ~15%
WWW: https://github.com/lh3/minimap2

View File

@ -3,7 +3,7 @@
PORTNAME= Bio-MAGETAB
PORTVERSION= 1.31
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= biology perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
@ -14,7 +14,7 @@ COMMENT= Data model and utility API for the MAGE-TAB format
LICENSE= GPLv2
BUILD_DEPENDS= ${RUN_DEPENDS}
xRUN_DEPENDS= p5-Date-Manip>=5.44:devel/p5-Date-Manip \
RUN_DEPENDS= p5-Date-Manip>=5.44:devel/p5-Date-Manip \
p5-DateTime>=0.43.02:devel/p5-DateTime \
p5-DateTime-Format-DateManip>=0.04:devel/p5-DateTime-Format-DateManip \
p5-Email-Valid>=0.179:mail/p5-Email-Valid \

View File

@ -3,6 +3,7 @@
PORTNAME= STAR
DISTVERSION= 2.7.0f
CATEGORIES= biology
PKGNAMEPREFIX= rna-
MAINTAINER= jwb@FreeBSD.org
COMMENT= Spliced Transcripts Alignment to a Reference

View File

@ -10,6 +10,9 @@ COMMENT= Qt-based GDS2 Viewer
LICENSE= GPLv2
BROKEN_i386= type 'hash<long long>' does not provide a call operator
BROKEN_sparc64= Does not compile on sparc64: gcc bug
USES= compiler:c++0x gmake gl python qt:5
USE_GITHUB= yes
GH_ACCOUNT= KLayout
@ -31,8 +34,6 @@ MAKE_ENV= INSTALL_ROOT=${STAGEDIR}
BUILD_WRKSRC= ${WRKSRC}/build-release
INSTALL_WRKSRC= ${WRKSRC}/build-release
BROKEN_sparc64= Does not compile on sparc64: gcc bug
do-configure:
cd ${WRKSRC} && \
${SETENV} ${MAKE_ENV} ${SH} build.sh \

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= gcin
PORTVERSION= 2.8.8
PORTVERSION= 2.8.9
CATEGORIES= chinese textproc gnome
MASTER_SITES= http://hyperrate.com/gcin-source/
PKGNAMESUFFIX= -gtk3
@ -16,6 +16,7 @@ LICENSE= LGPL21
LIB_DEPENDS= libgcin-im-client.so:chinese/gcin
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/gtk3-im
USES= gmake gnome pkgconfig tar:xz
USE_GNOME= gtk30
MAKE_ENV= INSTALL_PROGRAM="${INSTALL_PROGRAM}" \

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1545105187
SHA256 (gcin-2.8.8.tar.xz) = 22b64d519a28ac82e662f6107dbb8c829a80b07a216a8b00e64103feacb031f3
SIZE (gcin-2.8.8.tar.xz) = 4035876
TIMESTAMP = 1556113892
SHA256 (gcin-2.8.9.tar.xz) = e08426cc85c5932392ebf73ac7d140cd778862517c3ea0cf8953aaab6c14d078
SIZE (gcin-2.8.9.tar.xz) = 4033152

View File

@ -2,7 +2,7 @@
Remember to set these environment varibles (such as your ~/.xinitrc):
export XMODIFIERS='@im=gcin'
export GTK_IM_MODULE=xim
export GTK_IM_MODULE=gcin
# Finally, to start the GCIN input method daemon, use command:
exec gcin &

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= gcin
PORTVERSION= 2.8.8
PORTREVISION= 1
PORTVERSION= 2.8.9
CATEGORIES= chinese textproc gnome
MASTER_SITES= http://hyperrate.com/gcin-source/
PKGNAMESUFFIX= -qt5

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1545123484
SHA256 (gcin-2.8.8.tar.xz) = 22b64d519a28ac82e662f6107dbb8c829a80b07a216a8b00e64103feacb031f3
SIZE (gcin-2.8.8.tar.xz) = 4035876
TIMESTAMP = 1556114580
SHA256 (gcin-2.8.9.tar.xz) = e08426cc85c5932392ebf73ac7d140cd778862517c3ea0cf8953aaab6c14d078
SIZE (gcin-2.8.9.tar.xz) = 4033152

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= gcin
PORTVERSION= 2.8.8
PORTVERSION= 2.8.9
CATEGORIES= chinese textproc gnome
MASTER_SITES= http://hyperrate.com/gcin-source/
EXTRACT_ONLY= gcin-${PORTVERSION}.tar.xz
@ -16,10 +16,10 @@ BROKEN_powerpc64= fails to build: gmake[3]: *** [Makefile:30: en-american] Error
LIB_DEPENDS= libcurl.so:ftp/curl
USES= gmake pkgconfig tar:xz
USES= gmake gnome pkgconfig tar:xz
HAS_CONFIGURE= YES
CONFIGURE_ARGS+= --use_gtk3=N --use_qt3=N --use_qt4=N --use_qt5=N
USE_GNOME= gtk20
CONFIGURE_ARGS+= --use_gtk3=N --use_qt5=N
USE_GNOME= gtk30
USE_XORG= x11 xtst xext
INSTALLS_ICONS= YES
USE_LDCONFIG= ${PREFIX}/lib/gcin
@ -43,7 +43,7 @@ post-patch:
s,%%PREFIX%%,${PREFIX},;' \
${WRKSRC}/Makefile
@${REINPLACE_CMD} -e 's,/usr/local,/usr,g' \
${WRKSRC}/gtk-im/Makefile ${WRKSRC}/menu/Makefile
${WRKSRC}/menu/Makefile
@${REINPLACE_CMD} -e 's,modify-XIM ,,; 8,10 d' \
${WRKSRC}/scripts/Makefile
@${REINPLACE_CMD} -e 's,bash,sh,; s/&//; s,/opt/gnome,${LOCALBASE},;' \
@ -54,8 +54,6 @@ post-patch:
@${REINPLACE_CMD} -e 's,bash,sh,; s/&//; 12,13 s/=/ /; \
s/export/setenv/; s/$$UTF8ED/xdg-open/' \
${WRKSRC}/scripts/html-browser
@${REINPLACE_CMD} -e 's,gcin-im-client.h,im-client/gcin-im-client.h,;' \
${WRKSRC}/gtk-im/gtkimcontextgcin.c
@${REINPLACE_CMD} -e 's,/usr/X11R6,${LOCALBASE},' \
${WRKSRC}/IMdkit/lib/Makefile ${WRKSRC}/Makefile \
${WRKSRC}/qt-im/Makefile ${WRKSRC}/scripts/modify-XIM \

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1545093618
SHA256 (gcin-2.8.8.tar.xz) = 22b64d519a28ac82e662f6107dbb8c829a80b07a216a8b00e64103feacb031f3
SIZE (gcin-2.8.8.tar.xz) = 4035876
TIMESTAMP = 1552571155
SHA256 (gcin-2.8.9.tar.xz) = e08426cc85c5932392ebf73ac7d140cd778862517c3ea0cf8953aaab6c14d078
SIZE (gcin-2.8.9.tar.xz) = 4033152

View File

@ -1,4 +1,4 @@
--- Makefile.orig 2017-11-18 04:48:43 UTC
--- Makefile.orig 2019-03-07 09:07:52 UTC
+++ Makefile
@@ -4,8 +4,11 @@ include config.mak
include suffixes-rule
@ -26,27 +26,28 @@
OBJS_TSLEARN=tslearn.o util.o gcin-conf.o pho-util.o tsin-util.o gcin-send.o pho-sym.o \
table-update.o locale.o gcin-settings.o gcin-common.o gcin-icon.o pho-dbg.o \
pho2pinyin.o pinyin.o lang.o gtab-list.o gtab-init.o fullchar.o \
@@ -103,7 +110,7 @@ PROGS_CV=kbmcv pin-juyin
@@ -102,8 +109,7 @@ PROGS_CV=kbmcv pin-juyin
all: $(PROGS) trad2sim $(GCIN_SO) $(DATA) $(PROGS_CV) gcin.spec gcin-fedora.spec
$(MAKE) -C data
$(MAKE) -C gtk-im
- $(MAKE) -C gtk-im
- if [ $(BUILD_MODULE) = 'Y' ]; then $(MAKE) -C modules; fi
+ $(MAKE) -C modules
if [ $(USE_I18N) = 'Y' ]; then $(MAKE) -C po; fi
if [ $(GTK3_IM) = 'Y' ]; then $(MAKE) -C gtk3-im; fi
if [ $(QT_IM) = 'Y' ]; then $(MAKE) -C qt-im; fi
@@ -113,18 +120,18 @@ all: $(PROGS) trad2sim $(GCIN_SO) $(DATA) $(PROGS_CV)
@@ -113,18 +119,18 @@ all: $(PROGS) trad2sim $(GCIN_SO) $(DATA) $(PROGS_CV)
#gcc_ld_run_path=-Wl,-rpath,$(gcin_ld_run_path)
gcin: $(OBJS) $(IMdkitLIB) $(OBJ_IMSRV)
- $(CCLD) $(EXTRA_LDFLAGS) $(gcc_ld_run_path) -o $@ $(OBJS) $(IMdkitLIB) $(OBJ_IMSRV) -lXtst $(GCIN_LDFLAGS) -L/usr/X11R6/$(LIB)
+ $(CCLD) $(EXTRA_LDFLAGS) $(gcc_ld_run_path) -o $@ $(OBJS) $(IMdkitLIB) $(OBJ_IMSRV) -lXtst $(GCIN_LDFLAGS) -L/usr/local/$(LIB)
+ $(CCLD) $(EXTRA_LDFLAGS) $(gcc_ld_run_path) -o $@ $(OBJS) $(IMdkitLIB) $(OBJ_IMSRV) -lXtst $(GCIN_LDFLAGS) -L%%PREFIX%%/$(LIB)
rm -f core.* vgcore.*
ln -sf $@ $@.test
gcin-nocur: $(OBJS) $(IMdkitLIB) $(OBJ_IMSRV)
- $(CCLD) -Wl,-rpath,$(gcinlibdir) $(EXTRA_LDFLAGS) -o $@ $(OBJS) $(IMdkitLIB) $(OBJ_IMSRV) -lXtst $(LDFLAGS) -L/usr/X11R6/$(LIB)
+ $(CCLD) -Wl,-rpath,$(gcinlibdir) $(EXTRA_LDFLAGS) -o $@ $(OBJS) $(IMdkitLIB) $(OBJ_IMSRV) -lXtst $(LDFLAGS) -L/usr/local/$(LIB)
+ $(CCLD) -Wl,-rpath,$(gcinlibdir) $(EXTRA_LDFLAGS) -o $@ $(OBJS) $(IMdkitLIB) $(OBJ_IMSRV) -lXtst $(LDFLAGS) -L%%PREFIX%%/$(LIB)
rm -f core.*
-tslearn: $(OBJS_TSLEARN)
@ -58,7 +59,7 @@
$(CCLD) $(gcc_ld_run_path) -o $@ $(OBJS_TS_EDIT) -L./im-client -lgcin-im-client -lcurl $(LDFLAGS)
ts-contribute: ts-edit
@@ -171,16 +178,16 @@ gtab-merge: $(OBJS_gtab_merge)
@@ -171,16 +177,16 @@ gtab-merge: $(OBJS_gtab_merge)
kbmcv: $(OBJS_kbmcv)
$(CCLD) -o $@ $(OBJS_kbmcv) $(LDFLAGS)
@ -79,10 +80,11 @@
$(CCLD) $(gcc_ld_run_path) -o $@ $(OBJS_gcin_message) -L./im-client -lgcin-im-client $(LDFLAGS)
pin-juyin: $(OBJS_pin_juyin)
@@ -229,23 +236,19 @@ install:
@@ -228,24 +234,19 @@ install:
install -d $(bindir)
$(MAKE) -C data install
$(MAKE) -C im-client install
$(MAKE) -C gtk-im install
- $(MAKE) -C gtk-im install
- if [ $(BUILD_MODULE) = 'Y' ]; then $(MAKE) -C modules install; fi
+ $(MAKE) -C modules install
if [ $(GTK3_IM) = 'Y' ]; then $(MAKE) -C gtk3-im install; fi
@ -106,7 +108,7 @@
install -s $(PROGS) $(bindir); \
rm -f $(bindir)/trad2sim; ln -sf sim2trad $(bindir)/trad2sim; \
rm -f $(bindir)/ts-contribute; ln -sf ts-edit $(bindir)/ts-contribute; \
@@ -253,6 +256,7 @@ install:
@@ -253,6 +254,7 @@ install:
rm -f $(bindir)/ts-edit-en; ln -sf ts-edit $(bindir)/ts-edit-en; \
fi
$(MAKE) -C scripts install
@ -114,7 +116,15 @@
$(MAKE) -C menu install
if [ $(USE_I18N) = 'Y' ]; then $(MAKE) -C po install; fi
@@ -286,5 +290,3 @@ gcin.spec: gcin.spec.in
@@ -261,7 +263,6 @@ clean:
$(MAKE) -C data clean
$(MAKE) -C scripts clean
$(MAKE) -C im-client clean
- $(MAKE) -C gtk-im clean
$(MAKE) -C modules clean
if [ $(GTK3_IM) = 'Y' ]; then $(MAKE) -C gtk3-im clean; fi
$(MAKE) -C qt-im clean
@@ -286,5 +287,3 @@ gcin.spec: gcin.spec.in
gcin-fedora.spec: gcin-fedora.spec.in VERSION.gcin
rm -f $@
sed -e "s/__gcin_version__/$(GCIN_VERSION)/" < $< > $@

View File

@ -1,4 +1,4 @@
--- configure.orig 2018-05-12 11:15:17 UTC
--- configure.orig 2019-02-01 23:11:02 UTC
+++ configure
@@ -1,4 +1,4 @@
-##!/bin/bash
@ -47,10 +47,10 @@
grep -v qt3/plugins/inputmethods gcin.spec.tmp > gcin.spec
else
- for i in /usr/share/qt/bin/moc /usr/lib/qt/bin/moc /usr/lib64/qt/bin/moc /usr/lib/qt3/bin/moc /usr/share/qt3/bin/moc /usr/lib64/qt3/bin/moc
+ for i in $prefix/share/qt/bin/moc /usr/lib/qt/bin/moc /usr/lib64/qt/bin/moc /usr/lib/qt3/bin/moc /usr/share/qt3/bin/moc /usr/lib64/qt3/bin/moc
+ for i in $prefix/share/qt/bin/moc /usr/lib/qt/bin/moc /usr/lib64/qt/bin/moc /usr/lib/qt3/bin/moc $prefix/share/qt3/bin/moc /usr/lib64/qt3/bin/moc
do
- [ ! -x $i ] && continue
+ [ ! -x $i ] & continue
+ [ ! -x $i ] continue
QT_MOC=$i
echo "QT_MOC=$QT_MOC"
break;

View File

@ -1,4 +1,4 @@
--- gcb.cpp.orig 2015-11-22 23:15:12 UTC
--- gcb.cpp.orig 2019-03-06 00:33:25 UTC
+++ gcb.cpp
@@ -1,3 +1,4 @@
+#if USE_GCB
@ -13,9 +13,12 @@
static GtkWidget *mainwin;
static GtkClipboard *pclipboard_clipboard, *pclipboard_primary;
static GtkWidget **buttonArr;
@@ -529,4 +531,4 @@ void free_gcb() {
g_free(buttonStr); buttonStr = NULL;
@@ -256,7 +258,7 @@ static void get_mouse_button( GtkWidget *widget,GdkEve
}
}
-
+#endif
static void hist_get_mouse_button( GtkWidget *widget,GdkEventButton *event, gpointer data)
{
int i;

View File

@ -0,0 +1,14 @@
--- im-client/Makefile.orig 2011-12-17 06:16:17 UTC
+++ im-client/Makefile
@@ -20,10 +20,9 @@ OBJS = gcin-im-client.o im-addr.o gcin-conf.o util.o g
$(CC) -x c -c $(CFLAGS) $<
$(SOFILEVER): $(OBJS)
- $(CC) $(SO_FLAGS) -Wl,-soname,libgcin-im-client.so.1 $(OBJS) -lX11 -o $@ -L/usr/X11R6/lib
+ $(CC) $(SO_FLAGS) -Wl,-soname,libgcin-im-client.so.1 $(OBJS) -lX11 -o $@ -L/usr/local/lib
ln -sf $(SOFILEVER) $(SOFILE)
ln -sf $(SOFILEVER) $(SOFILE).1
- $(MAKE) -C ../gtk-im
LOCALLIB=/usr/local/$(LIB)

View File

@ -2,7 +2,7 @@
Remember to set these environment varibles (such as your ~/.xinitrc):
export XMODIFIERS='@im=gcin'
export GTK_IM_MODULE=xim
export GTK_IM_MODULE=gcin
# Finally, to start the GCIN input method daemon, use command:
exec gcin &

View File

@ -28,7 +28,6 @@ lib/gcin/intcode-module.so
lib/gcin/libgcin-im-client.so
lib/gcin/libgcin-im-client.so.1
lib/gcin/libgcin-im-client.so.1.2.5
lib/gtk-2.0/immodules/im-gcin.so
man/man1/gcin-exit.1.gz
man/man1/gcin-gb-toggle.1.gz
man/man1/gcin-kbm-toggle.1.gz
@ -167,5 +166,3 @@ share/icons/gcin/vocabulary.png
share/icons/gcin/wm2.png
share/icons/gcin/wubi.png
share/icons/hicolor/64x64/apps/gcin.png
@postexec %%LOCALBASE%%/bin/gtk-query-immodules-2.0 --update-cache
@postunexec %%LOCALBASE%%/bin/gtk-query-immodules-2.0 --update-cache

View File

@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= qrq
PORTVERSION= 0.3.1
PORTREVISION= 1
PORTVERSION= 0.3.2
CATEGORIES= comms hamradio
MASTER_SITES= http://fkurz.net/ham/qrq/
@ -12,9 +11,12 @@ COMMENT= Morse telegraphy trainer similar to the classic DOS version by DL4MM
LICENSE= GPLv2
USES= gmake ncurses shebangfix
SHEBANG_FILES= qrqscore
post-install:
${INSTALL_DATA} ${WRKSRC}/qrq.png ${STAGEDIR}${DATADIR}/qrq.png
MAKE_ENV= DESTDIR=${LOCALBASE}
.include <bsd.port.mk>

View File

@ -1,2 +1,3 @@
SHA256 (qrq-0.3.1.tar.gz) = 92988a33b7eddb3941cf91a285a57f4f0872722adf003350a8afe2caf83159a1
SIZE (qrq-0.3.1.tar.gz) = 131508
TIMESTAMP = 1556007902
SHA256 (qrq-0.3.2.tar.gz) = f340aa1e99a1c7752fe3600828a6596354485fffdb66a39eaf79227ac24ac43c
SIZE (qrq-0.3.2.tar.gz) = 132546

View File

@ -1,4 +1,4 @@
--- Makefile.orig 2013-01-06 14:14:09 UTC
--- Makefile.orig 2019-03-09 20:14:52 UTC
+++ Makefile
@@ -8,7 +8,7 @@ DESTDIR?=/usr
USE_CA=NO
@ -9,15 +9,18 @@
# set to YES if you compile with MINGW32
USE_WIN32=NO
@@ -26,7 +26,6 @@ ifneq ($(OSX_PLATFORM), YES)
@@ -27,8 +27,8 @@ endif
ifeq ($(USE_WIN32), YES)
CC=i686-w64-mingw32-gcc-posix
-else
- CC=gcc
+#else
+# CC=gcc
endif
CFLAGS:=$(CFLAGS) -D DESTDIR=\"$(DESTDIR)\" -D VERSION=\"$(VERSION)\" -I.
-CC=gcc
ifeq ($(USE_CA), YES)
OBJECTS=qrq.o coreaudio.o
@@ -95,16 +94,14 @@ uninstall:
# build information may be added by CI scripts and will be
@@ -104,16 +104,14 @@ uninstall:
else
install: qrq

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= cego
PORTVERSION= 2.44.5
PORTVERSION= 2.44.6
CATEGORIES= databases
MASTER_SITES= http://www.lemke-it.com/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1555941194
SHA256 (cego-2.44.5.tar.gz) = df95be291cb7c02576257622dc650d5e0bddeb60afbc247cab722bef7a20921d
SIZE (cego-2.44.5.tar.gz) = 2797394
TIMESTAMP = 1556020020
SHA256 (cego-2.44.6.tar.gz) = 2b15e0c0b16e73588cf1b500fd2137ea83135d02c6ee6efe7ebe0b8991887c3d
SIZE (cego-2.44.6.tar.gz) = 2798303

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= memcached
PORTVERSION= 1.5.12
PORTVERSION= 1.5.13
CATEGORIES= databases
MASTER_SITES= http://www.memcached.org/files/ \
GENTOO

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1543291520
SHA256 (memcached-1.5.12.tar.gz) = c02f97d5685617b209fbe25f3464317b234d765b427d254c2413410a5c095b29
SIZE (memcached-1.5.12.tar.gz) = 457719
TIMESTAMP = 1556052101
SHA256 (memcached-1.5.13.tar.gz) = 61e1a774949735a9eb6e40992bb04083d8427f3d0ce1a52a15c0116db39c4d63
SIZE (memcached-1.5.13.tar.gz) = 483697

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= puppetdb-terminus
PORTVERSION= 6.3.0
PORTVERSION= 6.3.1
CATEGORIES= databases ruby
MASTER_SITES= https://downloads.puppetlabs.com/puppetdb/
PKGNAMESUFFIX= 6

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1554308541
SHA256 (puppetdb-6.3.0.tar.gz) = 92b1f4d93adda65fc2082d58e15a1299c5c6516f10ceb942e4379a3dbc6548e7
SIZE (puppetdb-6.3.0.tar.gz) = 41678795
TIMESTAMP = 1555531514
SHA256 (puppetdb-6.3.1.tar.gz) = 7bac6a9254731f869b37382b97454064ad6e997bded793b94a120ceceb3f039b
SIZE (puppetdb-6.3.1.tar.gz) = 41706703

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= puppetdb
PORTVERSION= 6.3.0
PORTVERSION= 6.3.1
CATEGORIES= databases java
MASTER_SITES= https://downloads.puppetlabs.com/puppetdb/
PKGNAMESUFFIX= 6

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1554308519
SHA256 (puppetdb-6.3.0.tar.gz) = 92b1f4d93adda65fc2082d58e15a1299c5c6516f10ceb942e4379a3dbc6548e7
SIZE (puppetdb-6.3.0.tar.gz) = 41678795
TIMESTAMP = 1555531506
SHA256 (puppetdb-6.3.1.tar.gz) = 7bac6a9254731f869b37382b97454064ad6e997bded793b94a120ceceb3f039b
SIZE (puppetdb-6.3.1.tar.gz) = 41706703

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= rocksdb
PORTVERSION= 6.0.1
PORTVERSION= 6.0.2
DISTVERSIONPREFIX= v
CATEGORIES= databases

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1555592228
SHA256 (facebook-rocksdb-v6.0.1_GH0.tar.gz) = 9a9aca15bc3617729d976ceb98f6cbd64c6c25c4d92f374b4897aa2d2faa07cf
SIZE (facebook-rocksdb-v6.0.1_GH0.tar.gz) = 5445103
TIMESTAMP = 1556118458
SHA256 (facebook-rocksdb-v6.0.2_GH0.tar.gz) = 89e0832f1fb00ac240a9438d4bbdae37dd3e52f7c15c3f646dc26887da16f342
SIZE (facebook-rocksdb-v6.0.2_GH0.tar.gz) = 5445260

View File

@ -105,6 +105,7 @@
SUBDIR += amd64-binutils
SUBDIR += amd64-gcc
SUBDIR += amd64-xtoolchain-gcc
SUBDIR += amqp-cpp
SUBDIR += android-tools-adb
SUBDIR += android-tools-fastboot
SUBDIR += android-tools-simpleperf
@ -4121,6 +4122,7 @@
SUBDIR += phpunit7
SUBDIR += phpunit8
SUBDIR += physfs
SUBDIR += picojson
SUBDIR += picp
SUBDIR += picprog
SUBDIR += pig
@ -4933,6 +4935,7 @@
SUBDIR += py-prettytable
SUBDIR += py-prioritized_methods
SUBDIR += py-proglog
SUBDIR += py-progress
SUBDIR += py-promise
SUBDIR += py-prompt_toolkit
SUBDIR += py-prompt_toolkit1
@ -5944,6 +5947,7 @@
SUBDIR += rubygem-pry-rails
SUBDIR += rubygem-pry-remote-em
SUBDIR += rubygem-ptreloaded
SUBDIR += rubygem-puppet-resource_api
SUBDIR += rubygem-pygments.rb
SUBDIR += rubygem-r18n-core
SUBDIR += rubygem-rabl
@ -5977,7 +5981,6 @@
SUBDIR += rubygem-react-rails-rails5
SUBDIR += rubygem-readwritesettings
SUBDIR += rubygem-recaptcha
SUBDIR += rubygem-recaptcha3
SUBDIR += rubygem-recursive-open-struct
SUBDIR += rubygem-redis-activesupport
SUBDIR += rubygem-redis-activesupport-rails5

22
devel/amqp-cpp/Makefile Normal file
View File

@ -0,0 +1,22 @@
# $FreeBSD$
PORTNAME= AMQP-CPP
DISTVERSIONPREFIX= v
DISTVERSION= 4.1.4
CATEGORIES= devel
MAINTAINER= aleksandr.fedorov@vstack.com
COMMENT= C++ library for asynchronous non-blocking communication with RabbitMQ
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= cmake compiler:c++11-lib
USE_LDCONFIG= yes
CMAKE_ON= AMQP-CPP_LINUX_TCP AMQP-CPP_BUILD_SHARED
USE_GITHUB= yes
GH_ACCOUNT= CopernicaMarketingSoftware
.include <bsd.port.mk>

3
devel/amqp-cpp/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1555487571
SHA256 (CopernicaMarketingSoftware-AMQP-CPP-v4.1.4_GH0.tar.gz) = 1e0d070d980e44a2293a94c416b5690ffc529e0246cc2ef079dec59773b9708b
SIZE (CopernicaMarketingSoftware-AMQP-CPP-v4.1.4_GH0.tar.gz) = 143444

View File

@ -0,0 +1,10 @@
--- src/linux_tcp/includes.h.orig 2019-04-24 08:29:32 UTC
+++ src/linux_tcp/includes.h
@@ -14,6 +14,7 @@
#include <sys/socket.h>
#include <netdb.h>
#include <unistd.h>
+#include <netinet/in.h>
#include <netinet/tcp.h>
// utility classes

3
devel/amqp-cpp/pkg-descr Normal file
View File

@ -0,0 +1,3 @@
AMQP-CPP is a C++ library for communicating with a RabbitMQ message broker.
WWW: https://github.com/CopernicaMarketingSoftware/AMQP-CPP

63
devel/amqp-cpp/pkg-plist Normal file
View File

@ -0,0 +1,63 @@
cmake/amqpcppConfig-%%CMAKE_BUILD_TYPE%%.cmake
cmake/amqpcppConfig.cmake
include/amqpcpp.h
include/amqpcpp/address.h
include/amqpcpp/addresses.h
include/amqpcpp/array.h
include/amqpcpp/booleanset.h
include/amqpcpp/buffer.h
include/amqpcpp/bytebuffer.h
include/amqpcpp/callbacks.h
include/amqpcpp/channel.h
include/amqpcpp/channelimpl.h
include/amqpcpp/classes.h
include/amqpcpp/connection.h
include/amqpcpp/connectionhandler.h
include/amqpcpp/connectionimpl.h
include/amqpcpp/copiedbuffer.h
include/amqpcpp/decimalfield.h
include/amqpcpp/deferred.h
include/amqpcpp/deferredcancel.h
include/amqpcpp/deferredconfirm.h
include/amqpcpp/deferredconsumer.h
include/amqpcpp/deferreddelete.h
include/amqpcpp/deferredextreceiver.h
include/amqpcpp/deferredget.h
include/amqpcpp/deferredpublisher.h
include/amqpcpp/deferredqueue.h
include/amqpcpp/deferredreceiver.h
include/amqpcpp/endian.h
include/amqpcpp/entityimpl.h
include/amqpcpp/envelope.h
include/amqpcpp/exception.h
include/amqpcpp/exchangetype.h
include/amqpcpp/field.h
include/amqpcpp/fieldproxy.h
include/amqpcpp/flags.h
include/amqpcpp/frame.h
include/amqpcpp/libboostasio.h
include/amqpcpp/libev.h
include/amqpcpp/libevent.h
include/amqpcpp/libuv.h
include/amqpcpp/linux_tcp.h
include/amqpcpp/linux_tcp/tcpchannel.h
include/amqpcpp/linux_tcp/tcpconnection.h
include/amqpcpp/linux_tcp/tcpdefines.h
include/amqpcpp/linux_tcp/tcphandler.h
include/amqpcpp/linux_tcp/tcpparent.h
include/amqpcpp/login.h
include/amqpcpp/message.h
include/amqpcpp/metadata.h
include/amqpcpp/monitor.h
include/amqpcpp/numericfield.h
include/amqpcpp/openssl.h
include/amqpcpp/outbuffer.h
include/amqpcpp/protocolexception.h
include/amqpcpp/receivedframe.h
include/amqpcpp/stack_ptr.h
include/amqpcpp/stringfield.h
include/amqpcpp/table.h
include/amqpcpp/watchable.h
lib/libamqpcpp.so
lib/libamqpcpp.so.4.1
libdata/pkgconfig/amqpcpp.pc

View File

@ -3,7 +3,7 @@
PORTNAME= catch
DISTVERSIONPREFIX= v
DISTVERSION= 2.7.1
DISTVERSION= 2.7.2
PORTREVISION= 0
CATEGORIES= devel

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1554799917
SHA256 (catchorg-Catch2-v2.7.1_GH0.tar.gz) = 04b303517284572c277597004a33c3f8c02a4d12ba73d5a4cb73b4a369dfef0b
SIZE (catchorg-Catch2-v2.7.1_GH0.tar.gz) = 573626
TIMESTAMP = 1556007749
SHA256 (catchorg-Catch2-v2.7.2_GH0.tar.gz) = 9f4116da13d8402b5145f95ab91ae0173cd27b804152d3bb2d4f9b6e64852af7
SIZE (catchorg-Catch2-v2.7.2_GH0.tar.gz) = 576963

View File

@ -2,7 +2,7 @@
PORTNAME= git-lfs
DISTVERSIONPREFIX= v
DISTVERSION= 2.7.1
DISTVERSION= 2.7.2
CATEGORIES= devel
MAINTAINER= egypcio@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1551345706
SHA256 (git-lfs-git-lfs-v2.7.1_GH0.tar.gz) = af60c2370d135ab13724d302a0b1c226ec9fb0ee6d29ecc335e9add4c86497b4
SIZE (git-lfs-git-lfs-v2.7.1_GH0.tar.gz) = 1670764
TIMESTAMP = 1556093086
SHA256 (git-lfs-git-lfs-v2.7.2_GH0.tar.gz) = e65659f12ec557ae8c778c01ca62d921413221864b68bd93cfa41399028ae67f
SIZE (git-lfs-git-lfs-v2.7.2_GH0.tar.gz) = 1672700

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= gitaly
DISTVERSION= 1.27.1
DISTVERSION= 1.33.0
PORTREVISION= 1
CATEGORIES= devel
@ -12,23 +12,23 @@ LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
# define dependencies that are required for build and run under MY_DEPENDS
MY_DEPENDS= git>=2.18:devel/git \
MY_DEPENDS= git>=2.21:devel/git \
rubygem-bundler>=1.16.5:sysutils/rubygem-bundler \
rubygem-rugged>=0.28.0:devel/rubygem-rugged \
rubygem-github-linguist>=6.1:textproc/rubygem-github-linguist \
rubygem-gitlab-markup>=1.6.5:textproc/rubygem-gitlab-markup \
rubygem-gitaly-proto>=1.13.0:net/rubygem-gitaly-proto \
rubygem-gitlab-markup>=1.7.0:textproc/rubygem-gitlab-markup \
rubygem-gitaly-proto>=1.19.0:net/rubygem-gitaly-proto \
rubygem-activesupport50>=5.0.2:devel/rubygem-activesupport50 \
rubygem-rdoc>=6.0:devel/rubygem-rdoc \
rubygem-gitlab-gollum-lib>=4.2:www/rubygem-gitlab-gollum-lib \
rubygem-gitlab-gollum-rugged_adapter>=0.4.4:www/rubygem-gitlab-gollum-rugged_adapter \
rubygem-gitlab-gollum-lib>=4.2.7.7:www/rubygem-gitlab-gollum-lib \
rubygem-gitlab-gollum-rugged_adapter>=0.4.4.2:www/rubygem-gitlab-gollum-rugged_adapter \
rubygem-grpc>=1.15.0:net/rubygem-grpc \
rubygem-sentry-raven>=2.7.2:devel/rubygem-sentry-raven \
rubygem-sentry-raven>=2.9.0:devel/rubygem-sentry-raven \
rubygem-faraday>=0.12:www/rubygem-faraday \
rubygem-rbtrace>0:devel/rubygem-rbtrace \
rubygem-licensee8>=8.9.0:devel/rubygem-licensee8 \
rubygem-google-protobuf>=3.6:devel/rubygem-google-protobuf
BUILD_DEPENDS= go>=1.10:lang/go \
BUILD_DEPENDS= go>=1.11:lang/go \
gem:devel/ruby-gems \
${MY_DEPENDS}
RUN_DEPENDS= ${MY_DEPENDS} \
@ -40,7 +40,7 @@ USE_RUBY= yes
USE_GITLAB= yes
GL_ACCOUNT= gitlab-org
# Find this here: https://gitlab.com/gitlab-org/gitaly/tags
GL_COMMIT= a3648fa4ba39e937093c10802ddc26aa00c58e9b
GL_COMMIT= 800f4ff3272bc519b71cbc7b95d937978d2c53aa
post-patch:
${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/config.toml.example

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1553767951
SHA256 (gitlab-org-gitaly-a3648fa4ba39e937093c10802ddc26aa00c58e9b_GL0.tar.gz) = 672ed410ad0961302a51de833e5247fa8ed55a0c59082e0e1ccede58524eb354
SIZE (gitlab-org-gitaly-a3648fa4ba39e937093c10802ddc26aa00c58e9b_GL0.tar.gz) = 4691407
TIMESTAMP = 1555691732
SHA256 (gitlab-org-gitaly-800f4ff3272bc519b71cbc7b95d937978d2c53aa_GL0.tar.gz) = d38236048e19128ee5ddde0d9c4e2189851e89ebe18bc8ec0c1439286a5b3a25
SIZE (gitlab-org-gitaly-800f4ff3272bc519b71cbc7b95d937978d2c53aa_GL0.tar.gz) = 4713844

View File

@ -1,4 +1,4 @@
--- _support/makegen.go.orig 2019-03-25 09:02:26 UTC
--- _support/makegen.go.orig 2019-04-05 16:17:09 UTC
+++ _support/makegen.go
@@ -253,7 +253,7 @@ var templateText = `
# These variables may be overriden at runtime by top-level make
@ -9,7 +9,7 @@
ASSEMBLY_ROOT ?= {{ .BuildDir }}/assembly
BUILD_TAGS := tracer_static tracer_static_jaeger
@@ -273,8 +273,8 @@ build: ../.ruby-bundle
@@ -274,8 +274,8 @@ build: ../.ruby-bundle
# step. Both Omnibus and CNG assume it is in the Gitaly root, not in
# _build. Hence the '../' in front.
../.ruby-bundle: {{ .GitalyRubyDir }}/Gemfile.lock {{ .GitalyRubyDir }}/Gemfile

View File

@ -24,7 +24,7 @@
[[storage]]
name = "default"
-path = "/home/git/repositories"
+path = "/usr/home/git/repositories"
+path = "/usr/local/git/repositories"
# # You can optionally configure more storages for this Gitaly instance to serve up
#

View File

@ -1,13 +1,13 @@
--- ruby/Gemfile.orig 2019-03-11 20:46:03 UTC
--- ruby/Gemfile.orig 2019-04-05 16:17:09 UTC
+++ ruby/Gemfile
@@ -8,7 +8,7 @@ gem 'github-linguist', '~> 6.1', require: 'linguist'
gem 'gitlab-markup', '~> 1.6.5'
gem 'gitaly-proto', '~> 1.13.0'
gem 'gitlab-markup', '~> 1.7.0'
gem 'gitaly-proto', '~> 1.19.0'
gem 'activesupport', '~> 5.0.2'
-gem 'rdoc', '~> 4.2'
+gem 'rdoc', '~> 6.0'
gem 'gitlab-gollum-lib', '~> 4.2', require: false
gem 'gitlab-gollum-rugged_adapter', '~> 0.4.4', require: false
gem 'gitlab-gollum-lib', '~> 4.2.7.7', require: false
gem 'gitlab-gollum-rugged_adapter', '~> 0.4.4.2', require: false
gem 'grpc', '~> 1.15.0'
@@ -22,17 +22,3 @@ gem 'licensee', '~> 8.9.0'

View File

@ -7,6 +7,111 @@
%%DATADIR%%/ruby/git-hooks/post-receive
%%DATADIR%%/ruby/git-hooks/pre-receive
%%DATADIR%%/ruby/git-hooks/update
%%DATADIR%%/ruby/gitlab-shell/.codeclimate.yml
%%DATADIR%%/ruby/gitlab-shell/.gitlab-ci.yml
%%DATADIR%%/ruby/gitlab-shell/.rubocop.yml
%%DATADIR%%/ruby/gitlab-shell/.ruby-version
%%DATADIR%%/ruby/gitlab-shell/CHANGELOG
%%DATADIR%%/ruby/gitlab-shell/CONTRIBUTING.md
%%DATADIR%%/ruby/gitlab-shell/Gemfile
%%DATADIR%%/ruby/gitlab-shell/LICENSE
%%DATADIR%%/ruby/gitlab-shell/README.md
%%DATADIR%%/ruby/gitlab-shell/README.orig.md
%%DATADIR%%/ruby/gitlab-shell/VERSION
%%DATADIR%%/ruby/gitlab-shell/bin/authorized_keys
%%DATADIR%%/ruby/gitlab-shell/bin/check
%%DATADIR%%/ruby/gitlab-shell/bin/compile
%%DATADIR%%/ruby/gitlab-shell/bin/create-hooks
%%DATADIR%%/ruby/gitlab-shell/bin/gitlab-keys
%%DATADIR%%/ruby/gitlab-shell/bin/gitlab-shell-authorized-keys-check
%%DATADIR%%/ruby/gitlab-shell/bin/gitlab-shell-authorized-principals-check
%%DATADIR%%/ruby/gitlab-shell/bin/gitlab-shell-ruby
%%DATADIR%%/ruby/gitlab-shell/bin/install
%%DATADIR%%/ruby/gitlab-shell/bin/test-logger
%%DATADIR%%/ruby/gitlab-shell/config.yml.example
%%DATADIR%%/ruby/gitlab-shell/lib/action.rb
%%DATADIR%%/ruby/gitlab-shell/lib/action/custom.rb
%%DATADIR%%/ruby/gitlab-shell/lib/gitlab_access.rb
%%DATADIR%%/ruby/gitlab-shell/lib/gitlab_access_status.rb
%%DATADIR%%/ruby/gitlab-shell/lib/gitlab_config.rb
%%DATADIR%%/ruby/gitlab-shell/lib/gitlab_custom_hook.rb
%%DATADIR%%/ruby/gitlab-shell/lib/gitlab_init.rb
%%DATADIR%%/ruby/gitlab-shell/lib/gitlab_keys.rb
%%DATADIR%%/ruby/gitlab-shell/lib/gitlab_lfs_authentication.rb
%%DATADIR%%/ruby/gitlab-shell/lib/gitlab_logger.rb
%%DATADIR%%/ruby/gitlab-shell/lib/gitlab_metrics.rb
%%DATADIR%%/ruby/gitlab-shell/lib/gitlab_net.rb
%%DATADIR%%/ruby/gitlab-shell/lib/gitlab_net/errors.rb
%%DATADIR%%/ruby/gitlab-shell/lib/gitlab_post_receive.rb
%%DATADIR%%/ruby/gitlab-shell/lib/gitlab_shell.rb
%%DATADIR%%/ruby/gitlab-shell/lib/hooks_utils.rb
%%DATADIR%%/ruby/gitlab-shell/lib/http_helper.rb
%%DATADIR%%/ruby/gitlab-shell/lib/httpunix.rb
%%DATADIR%%/ruby/gitlab-shell/lib/object_dirs_helper.rb
%%DATADIR%%/ruby/gitlab-shell/spec/gitlab_access_spec.rb
%%DATADIR%%/ruby/gitlab-shell/spec/gitlab_config_spec.rb
%%DATADIR%%/ruby/gitlab-shell/spec/gitlab_custom_hook_spec.rb
%%DATADIR%%/ruby/gitlab-shell/spec/gitlab_keys_spec.rb
%%DATADIR%%/ruby/gitlab-shell/spec/gitlab_lfs_authentication_spec.rb
%%DATADIR%%/ruby/gitlab-shell/spec/gitlab_logger_spec.rb
%%DATADIR%%/ruby/gitlab-shell/spec/gitlab_metrics_spec.rb
%%DATADIR%%/ruby/gitlab-shell/spec/gitlab_net_spec.rb
%%DATADIR%%/ruby/gitlab-shell/spec/gitlab_post_receive_spec.rb
%%DATADIR%%/ruby/gitlab-shell/spec/gitlab_shell_authorized_keys_check_spec.rb
%%DATADIR%%/ruby/gitlab-shell/spec/gitlab_shell_spec.rb
%%DATADIR%%/ruby/gitlab-shell/spec/hooks_utils_spec.rb
%%DATADIR%%/ruby/gitlab-shell/spec/httpunix_spec.rb
%%DATADIR%%/ruby/gitlab-shell/spec/object_dirs_helper_spec.rb
%%DATADIR%%/ruby/gitlab-shell/spec/spec_helper.rb
%%DATADIR%%/ruby/gitlab-shell/spec/support/gitlab_shell_setup.rb
%%DATADIR%%/ruby/gitlab-shell/spec/support/gl_id_test_hook
%%DATADIR%%/ruby/gitlab-shell/spec/support/hook_fail
%%DATADIR%%/ruby/gitlab-shell/spec/support/hook_ok
%%DATADIR%%/ruby/gitlab-shell/spec/support/http_unix_server.rb
%%DATADIR%%/ruby/gitlab-shell/spec/support/vcr.rb
%%DATADIR%%/ruby/gitlab-shell/spec/support/webmock.rb
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/allowed-pull.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/allowed-push-project-not-found-404-text-html.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/allowed-push-project-not-found-404-text-plain.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/allowed-push-project-not-found-404.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/allowed-push-project-not-found-text-html.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/allowed-push-project-not-found-text-plain.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/allowed-push-project-not-found.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/allowed-push.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/broadcast_message-none.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/broadcast_message-ok.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/check-ok.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/custom-action-not-ok-json.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/custom-action-not-ok-not-json.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/custom-action-ok-not-json.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/custom-action-ok-with-message.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/custom-action-ok.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/discover-ok.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/http-pull-disabled.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/http-push-disabled.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/lfs-authenticate-ok-download.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/lfs-authenticate-ok-upload.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/notify-post-receive.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/post-receive-not-found.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/post-receive.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/pre-receive-not-found.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/pre-receive.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/ssh-key-not-found.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/ssh-key-not-implemented.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/ssh-key-ok.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/ssh-pull-disabled.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/ssh-pull-project-denied-401-text-html.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/ssh-pull-project-denied-401-text-plain.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/ssh-pull-project-denied-401.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/ssh-pull-project-denied-with-user.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/ssh-pull-project-denied.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/ssh-push-disabled.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/ssh-push-project-denied-401-text-html.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/ssh-push-project-denied-401-text-plain.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/ssh-push-project-denied-401.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/ssh-push-project-denied.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/two-factor-recovery-codes-fail.yml
%%DATADIR%%/ruby/gitlab-shell/spec/vcr_cassettes/two-factor-recovery-codes.yml
%%DATADIR%%/ruby/lib/gitaly_server.rb
%%DATADIR%%/ruby/lib/gitaly_server/blob_service.rb
%%DATADIR%%/ruby/lib/gitaly_server/client.rb
@ -46,7 +151,6 @@
%%DATADIR%%/ruby/lib/gitlab/git/operation_service.rb
%%DATADIR%%/ruby/lib/gitlab/git/path_helper.rb
%%DATADIR%%/ruby/lib/gitlab/git/popen.rb
%%DATADIR%%/ruby/lib/gitlab/git/raw_diff_change.rb
%%DATADIR%%/ruby/lib/gitlab/git/ref.rb
%%DATADIR%%/ruby/lib/gitlab/git/remote_mirror.rb
%%DATADIR%%/ruby/lib/gitlab/git/remote_repository.rb
@ -66,7 +170,6 @@
%%DATADIR%%/ruby/lib/gitlab/rails_logger.rb
%%DATADIR%%/ruby/lib/gitlab/ref_matcher.rb
%%DATADIR%%/ruby/lib/gitlab/utils/strong_memoize.rb
%%DATADIR%%/ruby/lib/gitlab/version_info.rb
%%DATADIR%%/ruby/spec/factories/gitaly/commit.rb
%%DATADIR%%/ruby/spec/factories/gitaly/commit_author.rb
%%DATADIR%%/ruby/spec/factories/sequences.rb
@ -89,7 +192,6 @@
%%DATADIR%%/ruby/spec/lib/gitlab/git/index_spec.rb
%%DATADIR%%/ruby/spec/lib/gitlab/git/lfs_changes_spec.rb
%%DATADIR%%/ruby/spec/lib/gitlab/git/popen_spec.rb
%%DATADIR%%/ruby/spec/lib/gitlab/git/raw_diff_change_spec.rb
%%DATADIR%%/ruby/spec/lib/gitlab/git/remote_mirror_spec.rb
%%DATADIR%%/ruby/spec/lib/gitlab/git/remote_repository_client_spec.rb
%%DATADIR%%/ruby/spec/lib/gitlab/git/remote_repository_spec.rb
@ -105,7 +207,6 @@
%%DATADIR%%/ruby/spec/lib/gitlab/git/user_spec.rb
%%DATADIR%%/ruby/spec/lib/gitlab/git/wiki_spec.rb
%%DATADIR%%/ruby/spec/lib/gitlab/ref_matcher_spec.rb
%%DATADIR%%/ruby/spec/lib/gitlab/version_info_spec.rb
%%DATADIR%%/ruby/spec/spec_helper.rb
%%DATADIR%%/ruby/spec/support/generate-seed-repo-rb
%%DATADIR%%/ruby/spec/support/helpers/certs/gitalycert.pem
@ -115,116 +216,13 @@
%%DATADIR%%/ruby/spec/support/helpers/seed_repo.rb
%%DATADIR%%/ruby/spec/support/sentry.rb
%%DATADIR%%/ruby/spec/test_repo_helper.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/.codeclimate.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/.gitlab-ci.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/.rubocop.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/.ruby-version
%%DATADIR%%/ruby/vendor/gitlab-shell/CHANGELOG
%%DATADIR%%/ruby/vendor/gitlab-shell/CONTRIBUTING.md
%%DATADIR%%/ruby/vendor/gitlab-shell/Gemfile
%%DATADIR%%/ruby/vendor/gitlab-shell/LICENSE
%%DATADIR%%/ruby/vendor/gitlab-shell/README.md
%%DATADIR%%/ruby/vendor/gitlab-shell/README.orig.md
%%DATADIR%%/ruby/vendor/gitlab-shell/VERSION
%%DATADIR%%/ruby/vendor/gitlab-shell/bin/authorized_keys
%%DATADIR%%/ruby/vendor/gitlab-shell/bin/check
%%DATADIR%%/ruby/vendor/gitlab-shell/bin/compile
%%DATADIR%%/ruby/vendor/gitlab-shell/bin/create-hooks
%%DATADIR%%/ruby/vendor/gitlab-shell/bin/gitlab-keys
%%DATADIR%%/ruby/vendor/gitlab-shell/bin/gitlab-shell-authorized-keys-check
%%DATADIR%%/ruby/vendor/gitlab-shell/bin/gitlab-shell-authorized-principals-check
%%DATADIR%%/ruby/vendor/gitlab-shell/bin/gitlab-shell-ruby
%%DATADIR%%/ruby/vendor/gitlab-shell/bin/install
%%DATADIR%%/ruby/vendor/gitlab-shell/bin/test-logger
%%DATADIR%%/ruby/vendor/gitlab-shell/config.yml.example
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/action.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/action/custom.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/gitlab_access.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/gitlab_access_status.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/gitlab_config.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/gitlab_custom_hook.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/gitlab_init.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/gitlab_keys.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/gitlab_lfs_authentication.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/gitlab_logger.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/gitlab_metrics.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/gitlab_net.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/gitlab_net/errors.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/gitlab_post_receive.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/gitlab_shell.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/hooks_utils.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/http_helper.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/httpunix.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/lib/object_dirs_helper.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/gitlab_access_spec.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/gitlab_config_spec.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/gitlab_custom_hook_spec.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/gitlab_keys_spec.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/gitlab_lfs_authentication_spec.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/gitlab_logger_spec.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/gitlab_metrics_spec.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/gitlab_net_spec.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/gitlab_post_receive_spec.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/gitlab_shell_authorized_keys_check_spec.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/gitlab_shell_spec.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/hooks_utils_spec.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/httpunix_spec.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/object_dirs_helper_spec.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/spec_helper.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/support/gl_id_test_hook
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/support/hook_fail
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/support/hook_ok
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/support/http_unix_server.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/support/vcr.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/support/webmock.rb
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/allowed-pull.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/allowed-push-project-not-found-404-text-html.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/allowed-push-project-not-found-404-text-plain.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/allowed-push-project-not-found-404.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/allowed-push-project-not-found-text-html.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/allowed-push-project-not-found-text-plain.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/allowed-push-project-not-found.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/allowed-push.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/broadcast_message-none.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/broadcast_message-ok.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/check-ok.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/custom-action-not-ok-json.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/custom-action-not-ok-not-json.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/custom-action-ok-not-json.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/custom-action-ok-with-message.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/custom-action-ok.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/discover-ok.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/http-pull-disabled.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/http-push-disabled.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/lfs-authenticate-ok-download.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/lfs-authenticate-ok-upload.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/notify-post-receive.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/post-receive-not-found.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/post-receive.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/pre-receive-not-found.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/pre-receive.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/ssh-key-not-found.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/ssh-key-not-implemented.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/ssh-key-ok.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/ssh-pull-disabled.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/ssh-pull-project-denied-401-text-html.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/ssh-pull-project-denied-401-text-plain.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/ssh-pull-project-denied-401.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/ssh-pull-project-denied-with-user.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/ssh-pull-project-denied.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/ssh-push-disabled.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/ssh-push-project-denied-401-text-html.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/ssh-push-project-denied-401-text-plain.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/ssh-push-project-denied-401.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/ssh-push-project-denied.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/two-factor-recovery-codes-fail.yml
%%DATADIR%%/ruby/vendor/gitlab-shell/spec/vcr_cassettes/two-factor-recovery-codes.yml
@(,,555) %%DATADIR%%/ruby/git-hooks/gitlab-shell-hook
@(,,555) %%DATADIR%%/ruby/vendor/gitlab-shell/hooks/post-receive
@(,,555) %%DATADIR%%/ruby/vendor/gitlab-shell/hooks/pre-receive
@(,,555) %%DATADIR%%/ruby/vendor/gitlab-shell/hooks/update
@(,,555) %%DATADIR%%/ruby/gitlab-shell/hooks/post-receive
@(,,555) %%DATADIR%%/ruby/gitlab-shell/hooks/pre-receive
@(,,555) %%DATADIR%%/ruby/gitlab-shell/hooks/update
@(,,555) %%DATADIR%%/bin/gitaly
@(,,555) %%DATADIR%%/bin/gitaly-debug
@(,,555) %%DATADIR%%/bin/gitaly-ssh
@(,,555) %%DATADIR%%/bin/gitaly-wrapper
@(,,555) %%DATADIR%%/bin/praefect
@sample %%DATADIR%%/config.toml.sample

View File

@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= gitlab-runner
PORTVERSION= 11.7.0
PORTREVISION= 1
PORTVERSION= 11.10.0
CATEGORIES= devel
MASTER_SITES= \
https://gitlab-runner-downloads.s3.amazonaws.com/master/docker/:dockerx64 \
@ -27,9 +26,11 @@ RUN_DEPENDS= ca_root_nss>=0:security/ca_root_nss \
USE_GITLAB= yes
# Find tags here:
# https://gitlab.com/gitlab-org/gitlab-runner/tags
GL_ACCOUNT= gitlab-org
GL_COMMIT= 8bb608ff3a677132022502b07dae8a3ea679f3d1
GITBRANCH= 11-7-stable
GL_COMMIT= 3001a600b2465b6ce803841a84a5a3cac0aadad2
GITBRANCH= 11-10-stable
BUILT= 2019-01-15T15:24:23+0000
GO_LDFLAGS= -X gitlab.com/gitlab-org/gitlab-runner/common.VERSION=${PORTVERSION} \

View File

@ -1,7 +1,7 @@
TIMESTAMP = 1548607774
TIMESTAMP = 1555827554
SHA256 (gitlab-runner/prebuilt-x86_64.tar.xz) = b0dccc53f415962dde3f5a7e6f1ab068b8da5484a7fefdae2c5e39d8bb6c637e
SIZE (gitlab-runner/prebuilt-x86_64.tar.xz) = 9594352
SHA256 (gitlab-runner/prebuilt-arm.tar.xz) = 5018c6b661ebf4b9c661593548e45394c553bbd4082b5ef744a39a1f7f1fee32
SIZE (gitlab-runner/prebuilt-arm.tar.xz) = 9020896
SHA256 (gitlab-runner/gitlab-org-gitlab-runner-8bb608ff3a677132022502b07dae8a3ea679f3d1_GL0.tar.gz) = 5bbee4fb83c65f1615fa4acc2acde5897c9ae8d7bb65d58a6d77db211bcf572b
SIZE (gitlab-runner/gitlab-org-gitlab-runner-8bb608ff3a677132022502b07dae8a3ea679f3d1_GL0.tar.gz) = 25783583
SHA256 (gitlab-runner/gitlab-org-gitlab-runner-3001a600b2465b6ce803841a84a5a3cac0aadad2_GL0.tar.gz) = a5aa71d5930528ac54c4bd44ff16985157270845f4b57376bd8e885d7ec6c986
SIZE (gitlab-runner/gitlab-org-gitlab-runner-3001a600b2465b6ce803841a84a5a3cac0aadad2_GL0.tar.gz) = 27078224

View File

@ -1,11 +0,0 @@
--- src/github.com/docker/docker/pkg/system/mknod.go.orig 2019-03-01 15:22:53 UTC
+++ src/github.com/docker/docker/pkg/system/mknod.go
@@ -9,7 +9,7 @@ import (
// Mknod creates a filesystem node (file, device special file or named pipe) named path
// with attributes specified by mode and dev.
func Mknod(path string, mode uint32, dev int) error {
- return syscall.Mknod(path, mode, dev)
+ return syscall.Mknod(path, mode, uint64(dev))
}
// Mkdev is used to build the value of linux devices (in /dev/) which specifies major

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= gitlab-shell
PORTVERSION= 8.7.1
PORTVERSION= 9.0.0
CATEGORIES= devel
MAINTAINER= mfechner@FreeBSD.org
@ -16,7 +16,7 @@ BUILD_DEPENDS= gem:devel/ruby-gems \
USE_GITLAB= yes
GL_ACCOUNT= gitlab-org
# Find the commit hash here: https://gitlab.com/gitlab-org/gitlab-shell/tags
GL_COMMIT= 6109b64ed81f80e90bf094ad1f1ded8f5e5f8324
GL_COMMIT= ffe54c21ffc42c03bfbca0dd21e23ae956517c2c
USERS= git
GROUPS= git

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1553171073
SHA256 (gitlab-org-gitlab-shell-6109b64ed81f80e90bf094ad1f1ded8f5e5f8324_GL0.tar.gz) = d013d35555f8dd004926366f6b9d66b46cce2e5ca3c89c9448d07903cb9a345b
SIZE (gitlab-org-gitlab-shell-6109b64ed81f80e90bf094ad1f1ded8f5e5f8324_GL0.tar.gz) = 2197505
TIMESTAMP = 1555692196
SHA256 (gitlab-org-gitlab-shell-ffe54c21ffc42c03bfbca0dd21e23ae956517c2c_GL0.tar.gz) = eadcca3192a783a5d66b51c0541ecd81b23e5e4a16bf96a934f99b5ca7541a52
SIZE (gitlab-org-gitlab-shell-ffe54c21ffc42c03bfbca0dd21e23ae956517c2c_GL0.tar.gz) = 2200758

View File

@ -5,7 +5,7 @@
# File used as authorized_keys for gitlab user
-auth_file: "/home/git/.ssh/authorized_keys"
+auth_file: "/usr/home/git/.ssh/authorized_keys"
+auth_file: "/usr/local/git/.ssh/authorized_keys"
# File that contains the secret key for verifying access to GitLab.
# Default is .gitlab_shell_secret in the gitlab-shell directory.

View File

@ -30,10 +30,9 @@
@(,,555) %%DATADIR%%/hooks/update
%%DATADIR%%/lib/action.rb
%%DATADIR%%/lib/action/custom.rb
%%DATADIR%%/lib/gitlab_access.rb
%%DATADIR%%/lib/console_helper.rb
%%DATADIR%%/lib/gitlab_access_status.rb
%%DATADIR%%/lib/gitlab_config.rb
%%DATADIR%%/lib/gitlab_custom_hook.rb
%%DATADIR%%/lib/gitlab_init.rb
%%DATADIR%%/lib/gitlab_keys.rb
%%DATADIR%%/lib/gitlab_lfs_authentication.rb
@ -41,29 +40,28 @@
%%DATADIR%%/lib/gitlab_metrics.rb
%%DATADIR%%/lib/gitlab_net.rb
%%DATADIR%%/lib/gitlab_net/errors.rb
%%DATADIR%%/lib/gitlab_post_receive.rb
%%DATADIR%%/lib/gitlab_shell.rb
%%DATADIR%%/lib/hooks_utils.rb
%%DATADIR%%/lib/httpunix.rb
%%DATADIR%%/lib/http_helper.rb
%%DATADIR%%/lib/object_dirs_helper.rb
%%DATADIR%%/spec/action/custom_spec.rb
%%DATADIR%%/spec/gitlab_access_spec.rb
%%DATADIR%%/spec/console_helper_spec.rb
%%DATADIR%%/spec/gitlab_config_spec.rb
%%DATADIR%%/spec/gitlab_custom_hook_spec.rb
%%DATADIR%%/spec/gitlab_keys_spec.rb
%%DATADIR%%/spec/gitlab_lfs_authentication_spec.rb
%%DATADIR%%/spec/gitlab_logger_spec.rb
%%DATADIR%%/spec/gitlab_metrics_spec.rb
%%DATADIR%%/spec/gitlab_net_spec.rb
%%DATADIR%%/spec/gitlab_post_receive_spec.rb
%%DATADIR%%/spec/gitlab_shell_authorized_keys_check_spec.rb
%%DATADIR%%/spec/gitlab_shell_gitlab_shell_spec.rb
%%DATADIR%%/spec/gitlab_shell_spec.rb
%%DATADIR%%/spec/gitlab_shell_two_factor_recovery_spec.rb
%%DATADIR%%/spec/hooks_utils_spec.rb
%%DATADIR%%/spec/httpunix_spec.rb
%%DATADIR%%/spec/object_dirs_helper_spec.rb
%%DATADIR%%/spec/spec_helper.rb
%%DATADIR%%/spec/support/gitlab_shell_setup.rb
%%DATADIR%%/spec/support/gl_id_test_hook
%%DATADIR%%/spec/support/http_unix_server.rb
%%DATADIR%%/support/go-update-vendor

View File

@ -7,6 +7,8 @@ CATEGORIES= devel
MAINTAINER= swills@FreeBSD.org
COMMENT= Python to Go source code transcompiler and runtime
BROKEN_i386= constant 2147762812 overflows int
BUILD_DEPENDS= go:lang/go
RUN_DEPENDS:= ${BUILD_DEPENDS}

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= include-what-you-use
PORTVERSION= 0.10
PORTVERSION= 0.12
CATEGORIES= devel
MAINTAINER= koobs@FreeBSD.org
@ -11,8 +11,8 @@ COMMENT= Tool for use with clang to analyze #includes in C and C++ source files
LICENSE= NCSA
LICENSE_FILE= ${WRKSRC}/LICENSE.TXT
BUILD_DEPENDS= clang60:devel/llvm60
RUN_DEPENDS= clang60:devel/llvm60
BUILD_DEPENDS= clang80:devel/llvm80
RUN_DEPENDS= clang80:devel/llvm80
USES= cmake compiler:c++11-lang ncurses python:run shebangfix
USE_GITHUB= yes
@ -20,9 +20,9 @@ USE_GITHUB= yes
SHEBANG_FILES= fix_includes.py \
iwyu_tool.py
GH_TAGNAME= clang_6.0
GH_TAGNAME= clang_8.0
CMAKE_ARGS+= -DIWYU_LLVM_INCLUDE_PATH=${LOCALBASE}/llvm60/include \
-DIWYU_LLVM_LIB_PATH=${LOCALBASE}/llvm60/lib
CMAKE_ARGS+= -DLLVM_DIR=${LOCALBASE}/llvm80/lib/cmake/llvm \
-DClang_DIR=${LOCALBASE}/llvm80/lib/cmake/clang
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1533500686
SHA256 (include-what-you-use-include-what-you-use-0.10-clang_6.0_GH0.tar.gz) = 720275b2742462004c8b2b2317571569cec8d084f6e8eda745c99043b63d7175
SIZE (include-what-you-use-include-what-you-use-0.10-clang_6.0_GH0.tar.gz) = 440406
TIMESTAMP = 1556011804
SHA256 (include-what-you-use-include-what-you-use-0.12-clang_8.0_GH0.tar.gz) = 2df080a3e657ebf40386c94a327d1aeeb9ff8d4569bfb860df398629b7f0fdb6
SIZE (include-what-you-use-include-what-you-use-0.12-clang_8.0_GH0.tar.gz) = 545788

View File

@ -12,4 +12,4 @@ without fear of accidentally breaking the upwards dependencies of
that file. It also becomes easy to automatically track and update
dependencies in the source code.
WWW: http://include-what-you-use.org
WWW: https://include-what-you-use.org

View File

@ -1,8 +1,12 @@
bin/fix_includes.py
bin/include-what-you-use
bin/iwyu_tool.py
%%DATADIR%%/boost-1.64-all-private.imp
%%DATADIR%%/boost-1.64-all.imp
%%DATADIR%%/boost-all-private.imp
%%DATADIR%%/boost-all.imp
%%DATADIR%%/clang-6.intrinsics.imp
%%DATADIR%%/gcc-8.intrinsics.imp
%%DATADIR%%/gcc.libc.imp
%%DATADIR%%/gcc.stl.headers.imp
%%DATADIR%%/gcc.symbols.imp
@ -11,4 +15,3 @@ bin/iwyu_tool.py
%%DATADIR%%/qt4.imp
%%DATADIR%%/qt5_4.imp
%%DATADIR%%/stl.c.headers.imp
%%DATADIR%%/third_party.imp

View File

@ -3,6 +3,7 @@
PORTNAME= ipython
PORTVERSION= 7.2.0
PORTREVISION= 1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -17,7 +18,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pexpect>=0:misc/py-pexpect@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}sqlite3>=2:databases/py-sqlite3@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}decorator>=0:devel/py-decorator@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pickleshare>=0:databases/py-pickleshare@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}prompt_toolkit2>=2.0.0:devel/py-prompt_toolkit2@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}prompt_toolkit>=2.0.0:devel/py-prompt_toolkit@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pygments>=0:textproc/py-pygments@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}simplegeneric>0.8:devel/py-simplegeneric@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}traitlets>=4.2:devel/py-traitlets@${PY_FLAVOR} \

View File

@ -3,8 +3,7 @@
PORTNAME= ispc
DISTVERSIONPREFIX= v
DISTVERSION= 1.10.0
PORTREVISION= 2
DISTVERSION= 1.11.0
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org
@ -18,29 +17,19 @@ ONLY_FOR_ARCHS_REASON= only available for x86 architectures
LIB_DEPENDS= libLLVM.so:devel/llvm${LLVM_DEFAULT}
USES= bison gmake python:build shebangfix
USES= bison cmake python:build shebangfix
USE_GITHUB= yes
ALL_TARGET= default
MAKE_ENV= LLVM_HOME="${LOCALBASE}"
SHEBANG_FILES= *.py
MAKE_ARGS= LLVM_CONFIG=${LOCALBASE}/bin/llvm-config${LLVM_DEFAULT} \
CLANG=clang${LLVM_DEFAULT} CXX=clang++${LLVM_DEFAULT}
CONFIGURE_ENV= PATH=${LOCALBASE}/llvm${LLVM_DEFAULT}/bin:${PATH}
CMAKE_OFF= ISPC_INCLUDE_EXAMPLES
PLIST_FILES= bin/ispc
BINARY_ALIAS= python=${PYTHON_CMD}
post-patch:
@${REINPLACE_CMD} -e 's|python|${PYTHON_CMD}| ; s|@$$(C|$$(C|' \
${WRKSRC}/Makefile
@${REINPLACE_CMD} -e '/alloca\.h/d' ${WRKSRC}/src/util.cpp
@${REINPLACE_CMD} -e '/^LLVM_LIBS=/s|$$| -lexecinfo|' \
${WRKSRC}/Makefile
PLIST_FILES= bin/ispc \
bin/check_isa
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ispc ${STAGEDIR}${PREFIX}/bin
do-test:
do-test: # tests are broken with python-3.6
@cd ${WRKSRC} && ISPC_HOME=${WRKSRC} ./run_tests.py
run-examples:

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1548912339
SHA256 (ispc-ispc-v1.10.0_GH0.tar.gz) = 0aa30e989f8d446b2680c9078d5c5db70634f40b9aa07db387aa35aa08dd0b81
SIZE (ispc-ispc-v1.10.0_GH0.tar.gz) = 19358558
TIMESTAMP = 1555776188
SHA256 (ispc-ispc-v1.11.0_GH0.tar.gz) = f48ef6e8a1fe5ad4fca691583bf7419f4dce1596e7ed850ff99cc017f8711b2f
SIZE (ispc-ispc-v1.11.0_GH0.tar.gz) = 19369955

View File

@ -1,31 +0,0 @@
--- Makefile.orig 2019-01-19 01:23:04 UTC
+++ Makefile
@@ -113,7 +113,7 @@ endif
ifneq ($(NVPTX_ENABLED), 0)
LLVM_COMPONENTS+=nvptx
endif
-LLVM_LIBS=$(shell $(LLVM_CONFIG) --libs $(LLVM_COMPONENTS))
+LLVM_LIBS=$(shell $(LLVM_CONFIG) --libs $(LLVM_COMPONENTS)) -lexecinfo
CLANG=clang
CLANG_LIBS = -lclangFrontend -lclangDriver \
@@ -249,16 +249,16 @@ dirs:
@/bin/mkdir -p objs
llvm_check:
- @llvm-config --version > /dev/null || \
+ @$(LLVM_CONFIG) --version > /dev/null || \
(echo; \
echo "******************************************"; \
- echo "ERROR: llvm-config not found in your PATH"; \
+ echo "ERROR: $(LLVM_CONFIG) not found in your PATH"; \
echo "******************************************"; \
echo; exit 1)
@echo -e '$(subst $(newline), ,$(RIGHT_LLVM))'
print_llvm_src: llvm_check
- @echo Using LLVM `llvm-config --version` from `llvm-config --libdir`
+ @echo Using LLVM `$(LLVM_CONFIG) --version` from `$(LLVM_CONFIG) --libdir`
@echo Using compiler to build: `$(CXX) --version | head -1`
clean:

View File

@ -1,39 +0,0 @@
--- examples/common.mk.orig 2016-07-08 11:13:52 UTC
+++ examples/common.mk
@@ -4,18 +4,18 @@ TASK_LIB=-lpthread
TASK_OBJ=objs/tasksys.o
CXX=clang++
-CXXFLAGS+=-Iobjs/ -O2
+CXXFLAGS+=-Iobjs/ -O2 -std=c++11 -I$(LOCALBASE)/include
CC=clang
CCFLAGS+=-Iobjs/ -O2
-LIBS=-lm $(TASK_LIB) -lstdc++
+LIBS=-lm $(TASK_LIB) -lstdc++ -L$(LOCALBASE)/lib -ltbb
ISPC=ispc
ISPC_FLAGS+=-O2
ISPC_HEADER=objs/$(ISPC_SRC:.ispc=_ispc.h)
-ARCH:=$(shell uname -m | sed -e s/x86_64/x86/ -e s/i686/x86/ -e s/arm.*/arm/ -e s/sa110/arm/)
+_ARCH:=$(shell uname -m | sed -e s/amd64/x86/ -e s/i.86/x86/ -e s/arm.*/arm/ -e s/sa110/arm/)
-ifeq ($(ARCH),x86)
+ifeq ($(_ARCH),x86)
ISPC_OBJS=$(addprefix objs/, $(ISPC_SRC:.ispc=)_ispc.o)
COMMA=,
ifneq (,$(findstring $(COMMA),$(ISPC_IA_TARGETS)))
@@ -53,11 +53,11 @@ ifeq ($(ARCH),x86)
CXXFLAGS += -m64
CCFLAGS += -m64
endif
-else ifeq ($(ARCH),arm)
+else ifeq ($(_ARCH),arm)
ISPC_OBJS=$(addprefix objs/, $(ISPC_SRC:.ispc=_ispc.o))
ISPC_TARGETS=$(ISPC_ARM_TARGETS)
else
- $(error Unknown architecture $(ARCH) from uname -m)
+ $(error Unknown architecture $(_ARCH) from uname -m)
endif
CPP_OBJS=$(addprefix objs/, $(CPP_SRC:.cpp=.o))

View File

@ -1,11 +1,20 @@
--- examples/tasksys.cpp.orig 2016-07-08 11:13:52 UTC
--- examples/tasksys.cpp.orig 2019-04-20 16:09:47 UTC
+++ examples/tasksys.cpp
@@ -90,6 +90,8 @@
#define ISPC_USE_CONCRT
#elif defined(__linux__)
#define ISPC_USE_PTHREADS
+ #elif defined(__FreeBSD__)
+ #define ISPC_USE_TBB_TASK_GROUP // ISPC_USE_PTHREADS fails for some reason, need to investigate
#elif defined(__APPLE__)
#define ISPC_USE_GCD
#endif
@@ -88,6 +88,8 @@
#define ISPC_USE_CONCRT
#elif defined(__linux__)
#define ISPC_USE_PTHREADS
+#elif defined(__FreeBSD__)
+#define ISPC_USE_TBB_TASK_GROUP // ISPC_USE_PTHREADS fails for some reason, need to investigate
#elif defined(__APPLE__)
#define ISPC_USE_GCD
#endif
@@ -101,6 +103,8 @@
#define ISPC_IS_WINDOWS
#elif defined(__linux__)
#define ISPC_IS_LINUX
+#elif defined(__FreeBSD__)
+#define ISPC_IS_FREEBSD
#elif defined(__APPLE__)
#define ISPC_IS_APPLE
#endif

View File

@ -0,0 +1,11 @@
--- src/ispc.h.orig 2019-04-20 16:38:55 UTC
+++ src/ispc.h
@@ -48,6 +48,8 @@
#define ISPC_IS_WINDOWS
#elif defined(__linux__)
#define ISPC_IS_LINUX
+#elif defined(__FreeBSD__)
+#define ISPC_IS_FREEBSD
#elif defined(__APPLE__)
#define ISPC_IS_APPLE
#endif

View File

@ -1,8 +1,9 @@
ISPC devs insist on using dump() functions which LLVM devs consider a debug functionality, and it isn't available in the LLVM packages.
--- src/llvmutil.cpp.orig 2019-03-02 06:20:14 UTC
--- src/llvmutil.cpp.orig 2019-04-20 16:08:37 UTC
+++ src/llvmutil.cpp
@@ -1550,7 +1550,7 @@ lDumpValue(llvm::Value *v, std::set<llvm
@@ -1349,7 +1349,7 @@ static void lDumpValue(llvm::Value *v, s
return;
fprintf(stderr, " ");

View File

@ -1,45 +1,61 @@
ISPC devs insist on using dump() functions which LLVM devs consider a debug functionality, and it isn't available in the LLVM packages.
--- src/opt.cpp.orig 2019-03-02 06:22:00 UTC
--- src/opt.cpp.orig 2019-04-20 16:07:05 UTC
+++ src/opt.cpp
@@ -173,7 +173,7 @@ static llvm::Pass *CreatePromoteLocalToP
strlen(getenv("FUNC"))))) { \
fprintf(stderr, "Start of " NAME "\n"); \
fprintf(stderr, "---------------\n"); \
- bb.dump(); \
+ /*bb.dump();*/ \
fprintf(stderr, "---------------\n\n"); \
@@ -175,7 +175,7 @@ static llvm::Pass *CreatePromoteLocalToP
getenv("FUNC"), strlen(getenv("FUNC")))))) { \
fprintf(stderr, "Start of " NAME "\n"); \
fprintf(stderr, "---------------\n"); \
- bb.dump(); \
+ /*bb.dump();*/ \
fprintf(stderr, "---------------\n\n"); \
} else /* eat semicolon */
@@ -184,7 +184,7 @@ static llvm::Pass *CreatePromoteLocalToP
strlen(getenv("FUNC"))))) { \
fprintf(stderr, "End of " NAME " %s\n", modifiedAny ? "** CHANGES **" : ""); \
fprintf(stderr, "---------------\n"); \
- bb.dump(); \
+ /*bb.dump();*/ \
fprintf(stderr, "---------------\n\n"); \
@@ -185,7 +185,7 @@ static llvm::Pass *CreatePromoteLocalToP
getenv("FUNC"), strlen(getenv("FUNC")))))) { \
fprintf(stderr, "End of " NAME " %s\n", modifiedAny ? "** CHANGES **" : ""); \
fprintf(stderr, "---------------\n"); \
- bb.dump(); \
+ /*bb.dump();*/ \
fprintf(stderr, "---------------\n\n"); \
} else /* eat semicolon */
@@ -537,7 +537,7 @@ void
Optimize(llvm::Module *module, int optLevel) {
#else
@@ -505,7 +505,7 @@ void Optimize(llvm::Module *module, int
#ifndef ISPC_NO_DUMPS
if (g->debugPrint) {
printf("*** Code going into optimization ***\n");
- module->dump();
+ //module->dump();
}
#endif
DebugPassManager optPM;
optPM.add(llvm::createVerifierPass(),0);
@@ -932,7 +932,7 @@ Optimize(llvm::Module *module, int optLe
@@ -892,7 +892,7 @@ void Optimize(llvm::Module *module, int
#ifndef ISPC_NO_DUMPS
if (g->debugPrint) {
printf("\n*****\nFINAL OUTPUT\n*****\n");
- module->dump();
+ //module->dump();
}
#endif
}
@@ -4895,7 +4895,7 @@ bool
DebugPass::runOnModule(llvm::Module &module) {
@@ -1944,11 +1944,11 @@ lExtractUniformsFromOffset(llvm::Value *
llvm::Value *offsetScale,
llvm::Instruction *insertBefore) {
#if 1
- (*basePtr)->dump();
+ //(*basePtr)->dump();
printf("\n");
- (*offsetVector)->dump();
+ //(*offsetVector)->dump();
printf("\n");
- offsetScale->dump();
+ //offsetScale->dump();
printf("-----\n");
#endif
@@ -4394,7 +4394,7 @@ char DebugPass::ID = 0;
bool DebugPass::runOnModule(llvm::Module &module) {
fprintf(stderr, "%s", str_output);
fflush(stderr);
- module.dump();

View File

@ -0,0 +1,12 @@
--- src/util.cpp.orig 2019-04-20 16:26:13 UTC
+++ src/util.cpp
@@ -43,7 +43,9 @@
#include <malloc.h> // for alloca()
#endif
#else
+#if !defined(ISPC_IS_FREEBSD)
#include <alloca.h>
+#endif
#include <unistd.h>
#endif
#include <stdio.h>

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= libepoll-shim
PORTVERSION= 0.0.20181229
PORTVERSION= 0.0.20190311
CATEGORIES= devel
MAINTAINER= x11@FreeBSD.org
@ -13,17 +13,17 @@ LICENSE= MIT
USE_GITHUB= yes
GH_ACCOUNT= FreeBSDDesktop
GH_PROJECT= epoll-shim
GH_TAGNAME= 212c17b
GH_TAGNAME= 1d1135384395dbf38eea00680ca28ead04f8dce2
USE_LDCONFIG= yes
USES= compiler uidfix
MAKE_ARGS= INCSDIR=${PREFIX}/include/libepoll-shim/sys \
LIBDIR=${PREFIX}/lib WITHOUT_PROFILE=yes
MAKE_ARGS= WITHOUT_PROFILE=yes
.include <bsd.port.pre.mk>
post-patch:
@${REINPLACE_CMD} -e 's,/usr/local,${PREFIX},' ${WRKSRC}/Makefile
.if "${CHOSEN_COMPILER_TYPE}" == "gcc"
@${REINPLACE_CMD} -e 's|Wno-missing-variable-declarations|Wno-missing-declarations|' \
-e 's|-Wno-thread-safety-analysis||' ${WRKSRC}/Makefile

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1546110650
SHA256 (FreeBSDDesktop-epoll-shim-0.0.20181229-212c17b_GH0.tar.gz) = 819ec3de3ab233487d5be5fe506b23b81c05ee5daf5db1440ede76231615a86a
SIZE (FreeBSDDesktop-epoll-shim-0.0.20181229-212c17b_GH0.tar.gz) = 15833
TIMESTAMP = 1554794906
SHA256 (FreeBSDDesktop-epoll-shim-0.0.20190311-1d1135384395dbf38eea00680ca28ead04f8dce2_GH0.tar.gz) = 689aaf4a6f8f14a715986f03c283cbabf404a2ac5370ad6430f28cc8e101b554
SIZE (FreeBSDDesktop-epoll-shim-0.0.20190311-1d1135384395dbf38eea00680ca28ead04f8dce2_GH0.tar.gz) = 16341

View File

@ -4,3 +4,4 @@ include/libepoll-shim/sys/timerfd.h
lib/libepoll-shim.a
lib/libepoll-shim.so
lib/libepoll-shim.so.0
libdata/pkgconfig/epoll-shim.pc

View File

@ -12,7 +12,6 @@ COMMENT= Foreign function call libraries
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
BROKEN_aarch64= fails to build: checking whether code in malloc()ed memory is executable... Killing runaway build after 14400 seconds with no output
BROKEN_armv6= fails to build: avcall-armhf.s:46:2: error: '.syntax divided' arm assembly not supported
BROKEN_armv7= fails to build: avcall-armhf.s:46:2: error: '.syntax divided' arm assembly not supported
BROKEN_mips= fails to build: gmake[2]: No rule to make target 'avcall-mipsn32-macro.S', needed by 'avcall-mipsn32.s'

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= libmaa
PORTVERSION= 1.4.3
PORTVERSION= 1.4.4
PORTEPOCH= 1
CATEGORIES= devel

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1550365183
SHA256 (cheusov-libmaa-1.4.3_GH0.tar.gz) = 6e577ea641bf4007f9f060fc5c912b002ab31b235f852ee390e458b87b5cd394
SIZE (cheusov-libmaa-1.4.3_GH0.tar.gz) = 175161
TIMESTAMP = 1556118464
SHA256 (cheusov-libmaa-1.4.4_GH0.tar.gz) = 6d65f63d6eb633f2a20993f6b58db0fdcd3b70c5749ed1105aed55ca953119fa
SIZE (cheusov-libmaa-1.4.4_GH0.tar.gz) = 175202

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= Alien-Build
PORTVERSION= 1.65
PORTVERSION= 1.68
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1555111281
SHA256 (Alien-Build-1.65.tar.gz) = 8ad4ffdf237b5e6d7e2f70e83bad2972eae13d5ab87d44fba5912b25b2817cf7
SIZE (Alien-Build-1.65.tar.gz) = 242826
TIMESTAMP = 1556118495
SHA256 (Alien-Build-1.68.tar.gz) = c854c901e0b12c1f3ab7826db14108ba9698efed4df2c2d3155b0230dfc3465a
SIZE (Alien-Build-1.68.tar.gz) = 260463

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= Date-Manip
PORTVERSION= 6.75
PORTVERSION= 6.76
CATEGORIES= devel perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:SBECK

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1543875843
SHA256 (Date-Manip-6.75.tar.gz) = c1fbcfbe2ab1a84e57f191807e87c97985da00926f64d1aae598c8756acbb67d
SIZE (Date-Manip-6.75.tar.gz) = 1849350
TIMESTAMP = 1556052688
SHA256 (Date-Manip-6.76.tar.gz) = 1c87c78c03e3479e3b695952c0a5c11d3593ca9a5340dfb14d0be3d3e7ad63a8
SIZE (Date-Manip-6.76.tar.gz) = 2020952

View File

@ -549,6 +549,11 @@ bin/dm_zdump
%%SITE_PERL%%/Date/Manip/Offset/off437.pm
%%SITE_PERL%%/Date/Manip/Offset/off438.pm
%%SITE_PERL%%/Date/Manip/Offset/off439.pm
%%SITE_PERL%%/Date/Manip/Offset/off440.pm
%%SITE_PERL%%/Date/Manip/Offset/off441.pm
%%SITE_PERL%%/Date/Manip/Offset/off442.pm
%%SITE_PERL%%/Date/Manip/Offset/off443.pm
%%SITE_PERL%%/Date/Manip/Offset/off444.pm
%%SITE_PERL%%/Date/Manip/Problems.pod
%%SITE_PERL%%/Date/Manip/Recur.pm
%%SITE_PERL%%/Date/Manip/Recur.pod
@ -770,6 +775,7 @@ bin/dm_zdump
%%SITE_PERL%%/Date/Manip/TZ/aspont00.pm
%%SITE_PERL%%/Date/Manip/TZ/aspyon00.pm
%%SITE_PERL%%/Date/Manip/TZ/asqata00.pm
%%SITE_PERL%%/Date/Manip/TZ/asqost00.pm
%%SITE_PERL%%/Date/Manip/TZ/asqyzy00.pm
%%SITE_PERL%%/Date/Manip/TZ/asriya00.pm
%%SITE_PERL%%/Date/Manip/TZ/assakh00.pm

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= FFI-Platypus
PORTVERSION= 0.86
PORTVERSION= 0.87
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1551632280
SHA256 (FFI-Platypus-0.86.tar.gz) = 7ab95c86c3a23bf213f19cf2977033ecb61b819bdade60beb8660cd0d41dd0a0
SIZE (FFI-Platypus-0.86.tar.gz) = 241072
TIMESTAMP = 1556118470
SHA256 (FFI-Platypus-0.87.tar.gz) = 2ee823d9e2fcb9b30cbb1716c19b15bf9e1e8618d65ebb2b2747cc973b0128b9
SIZE (FFI-Platypus-0.87.tar.gz) = 251625

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= Glib
PORTVERSION= 1.328
PORTVERSION= 1.329
CATEGORIES= devel perl5
MASTER_SITES= CPAN SF/gtk2-perl/${PORTNAME}/${PORTVERSION}
MASTER_SITE_SUBDIR= CPAN:XAOC

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1541121247
SHA256 (Glib-1.328.tar.gz) = 459cc2add7aaa90aa56675582a93989158ed38caa1e10628733ccc690e0464d5
SIZE (Glib-1.328.tar.gz) = 301694
TIMESTAMP = 1556053503
SHA256 (Glib-1.329.tar.gz) = 7b4ce1c8cf884849189efaa0b5722ecfb0d87a15f94fccc6a6017d3b3f982a35
SIZE (Glib-1.329.tar.gz) = 301794

View File

@ -11,6 +11,7 @@ MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Prompt for user input with a default option
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
TEST_DEPENDS= p5-Capture-Tiny>=0.12:devel/p5-Capture-Tiny

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= Storable
PORTVERSION= 3.11
PORTVERSION= 3.15
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1536761398
SHA256 (Storable-3.11.tar.gz) = b2dac116d2f5adaf289e9a8a9bbac35cc2c24a9d2221fea9b6578a33b8ec7d28
SIZE (Storable-3.11.tar.gz) = 201627
TIMESTAMP = 1556118498
SHA256 (Storable-3.15.tar.gz) = fc3dad06cb2e6fc86a2f2abc5b5491d9da328ca3e6b6306559c224521db174da
SIZE (Storable-3.15.tar.gz) = 200589

View File

@ -1,5 +1,3 @@
%%SITE_ARCH%%/Storable.pm
%%SITE_ARCH%%/Storable/Limit.pm
%%SITE_ARCH%%/auto/Storable/Storable.so
%%PERL5_MAN3%%/Storable.3.gz
%%PERL5_MAN3%%/Storable::Limit.3.gz

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= Test-Timer
PORTVERSION= 2.09
PORTVERSION= 2.10
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1515786826
SHA256 (Test-Timer-2.09.tar.gz) = 10f08d92f0dcdc9f41eb9dc9aeed488f74c9527dc14201e5d48246646cb95302
SIZE (Test-Timer-2.09.tar.gz) = 37225
TIMESTAMP = 1556053894
SHA256 (Test-Timer-2.10.tar.gz) = 2a7950cc266b0ee6fde08506ccfed9e300fde4e965f0b443963c47ada037f3aa
SIZE (Test-Timer-2.10.tar.gz) = 46361

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= event
PORTVERSION= 2.4.3
PORTVERSION= 2.4.4
CATEGORIES= devel
MAINTAINER= joneum@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1544958659
SHA256 (PECL/event-2.4.3.tgz) = fb15654a5c84b9080ded14d734fee073e0b528d42378dec9af54a222f28465cf
SIZE (PECL/event-2.4.3.tgz) = 139788
TIMESTAMP = 1556108563
SHA256 (PECL/event-2.4.4.tgz) = 21e1aabfe58b4618360f1260f9824f6c01ab993c39036aa250c660ef16ba3d29
SIZE (PECL/event-2.4.4.tgz) = 139986

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