*/*: sync with upstream

Taken from: FreeBSD
This commit is contained in:
Franco Fichtner 2017-01-10 06:23:02 +01:00
parent 32fbe6e424
commit b2b807b85d
380 changed files with 2094 additions and 2438 deletions

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= lua51
PORTVERSION= 1.0
PORTVERSION= 1.1
DISTVERSIONPREFIX=v
CATEGORIES= archivers
PKGNAMESUFFIX= -zlib

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1483297792
SHA256 (brimworks-lua-zlib-v1.0_GH0.tar.gz) = 3c24a142fb758fa1efc91cd229462719be5ba8956dbe648e41a68069616b7dee
SIZE (brimworks-lua-zlib-v1.0_GH0.tar.gz) = 16471
TIMESTAMP = 1483616981
SHA256 (brimworks-lua-zlib-v1.1_GH0.tar.gz) = 9f0820cc14873248a0c5ae22623cb2fc767fb830e47f6b34b01d71a6e1db2356
SIZE (brimworks-lua-zlib-v1.1_GH0.tar.gz) = 16572

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= pbzip2
PORTVERSION= 1.1.12
PORTVERSION= 1.1.13
CATEGORIES= archivers
MASTER_SITES= http://launchpad.net/${PORTNAME}/1.1/${PORTVERSION}/+download/

View file

@ -1,2 +1,3 @@
SHA256 (pbzip2-1.1.12.tar.gz) = 573bb358a5a7d3bf5f42f881af324cedf960c786e8d66dd03d448ddd8a0166ee
SIZE (pbzip2-1.1.12.tar.gz) = 47826
TIMESTAMP = 1483860870
SHA256 (pbzip2-1.1.13.tar.gz) = 8fd13eaaa266f7ee91f85c1ea97c86d9c9cc985969db9059cdebcb1e1b7bdbe6
SIZE (pbzip2-1.1.13.tar.gz) = 48015

View file

@ -31,13 +31,6 @@ PORTEXAMPLES= lsar.bash_completion unar.bash_completion
OPTIONS_DEFINE= DOCS EXAMPLES
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000024
CC= clang
CXX= clang++
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/XADMaster/??ar ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/Extra/??ar.1 ${STAGEDIR}${MANPREFIX}/man/man1
@ -51,4 +44,4 @@ do-install-EXAMPLES-on:
${INSTALL_DATA} ${WRKSRC}/Extra/??ar.bash_completion \
${STAGEDIR}${EXAMPLESDIR}
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View file

@ -3,7 +3,7 @@
PORTNAME= amarok
PORTVERSION= 2.8.0
PORTREVISION= 8
PORTREVISION= 9
CATEGORIES= audio kde
MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION}/src
@ -13,8 +13,6 @@ COMMENT= KDE music player
LIB_DEPENDS= libtag.so:audio/taglib \
libtag-extras.so:audio/taglib-extras \
liblastfm.so:audio/liblastfm \
libofa.so:audio/libofa \
libavcodec.so:multimedia/ffmpeg \
libqjson.so:devel/qjson \
libqca.so:devel/qca \
libdbus-1.so:devel/dbus
@ -33,6 +31,7 @@ USE_QT4= corelib dbus designer gui network opengl \
USE_XORG= ice sm x11 xau xdmcp xext xft xpm
SHEBANG_FILES= src/kconf_update/amarok-2.4.1-tokens_syntax_update.pl
USE_LDCONFIG= yes
CMAKE_ARGS= -DWITH_FFmpeg:BOOL=off
BROKEN_sparc64= does not build (GCC-related error)

View file

@ -3,7 +3,7 @@
PORTNAME= ardour
PORTVERSION= 2.8.16
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= audio
MASTER_SITES= http://freebsd.nsu.ru/distfiles/

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= aubio
PORTVERSION= 0.4.3
PORTVERSION= 0.4.4
CATEGORIES= audio
MASTER_SITES= http://aubio.org/pub/

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1482928262
SHA256 (aubio-0.4.3.tar.bz2) = b62cdb073c0c64ae301917fa162969d42cba45e478bdf1e74490bd87e9cceaab
SIZE (aubio-0.4.3.tar.bz2) = 328852
TIMESTAMP = 1483950303
SHA256 (aubio-0.4.4.tar.bz2) = 2acdb92623b9d4ba641c387760ffe3ec1e4c6ab498e64e5e2286c99e36ffbff8
SIZE (aubio-0.4.4.tar.bz2) = 334754

View file

@ -1,6 +1,6 @@
--- wscript.orig 2016-08-16 10:36:06 UTC
--- wscript.orig 2017-01-08 15:44:05 UTC
+++ wscript
@@ -91,6 +91,9 @@ def options(ctx):
@@ -103,6 +103,9 @@ def options(ctx):
help_str = 'build documentation (auto)',
help_disable_str = 'do not build documentation')
@ -10,7 +10,7 @@
ctx.add_option('--with-target-platform', type='string',
help='set target platform for cross-compilation', dest='target_platform')
@@ -323,6 +326,9 @@ def configure(ctx):
@@ -376,6 +379,9 @@ def configure(ctx):
# check if doxygen is installed, optional
try:
ctx.find_program('doxygen', var='DOXYGEN')
@ -20,17 +20,18 @@
except ctx.errors.ConfigurationError:
ctx.to_log('doxygen was not found (ignoring)')
@@ -358,11 +364,11 @@ def build(bld):
bld( source = bld.path.ant_glob('doc/*.txt') )
@@ -428,12 +434,12 @@ def txt2man(bld):
def doxygen(bld):
# build documentation from source files using doxygen
- if bld.env['DOXYGEN']:
+ if bld.env['DOXYGEN'] and not bld.options.disable_doxygen:
bld( name = 'doxygen', rule = 'doxygen ${SRC} > /dev/null',
source = 'doc/web.cfg',
target = '../doc/web/html/index.html',
cwd = 'doc')
- bld.install_files( '${PREFIX}' + '/share/doc/libaubio-doc',
+ bld.install_files( '${PREFIX}' + '/share/doc/aubio',
- bld.install_files( '${DATAROOTDIR}' + '/doc/libaubio-doc',
+ bld.install_files( '${DATAROOTDIR}' + '/doc/aubio',
bld.path.ant_glob('doc/web/html/**'),
cwd = bld.path.find_dir ('doc/web'),
relative_trick = True)

View file

@ -9,6 +9,7 @@ include/aubio/cvec.h
include/aubio/fmat.h
include/aubio/fvec.h
include/aubio/io/audio_unit.h
include/aubio/io/ioutils.h
include/aubio/io/sink.h
include/aubio/io/sink_apple_audio.h
include/aubio/io/sink_sndfile.h
@ -49,12 +50,14 @@ include/aubio/temporal/filter.h
include/aubio/temporal/resampler.h
include/aubio/types.h
include/aubio/utils/hist.h
include/aubio/utils/log.h
include/aubio/utils/parameter.h
include/aubio/utils/scale.h
include/aubio/vecutils.h
lib/libaubio.a
lib/libaubio.so
lib/libaubio.so.5
lib/libaubio.so.5.0.4
lib/libaubio.so.5.1.5
libdata/pkgconfig/aubio.pc
man/man1/aubiocut.1.gz
man/man1/aubiomfcc.1.gz
@ -80,6 +83,7 @@ man/man1/aubiotrack.1.gz
%%DOXYGEN%%share/doc/aubio/html/cvec_8h_source.html
%%DOXYGEN%%share/doc/aubio/html/dir_0019dc9908b3707f2efe5d1d2e908f03.html
%%DOXYGEN%%share/doc/aubio/html/dir_24909bf68f95b02474c7cd396a6ea1b7.html
%%DOXYGEN%%share/doc/aubio/html/dir_421d137a6d6e69b3f737421a73d375f8.html
%%DOXYGEN%%share/doc/aubio/html/dir_6c3688c2a02b4bf89699351955a39c88.html
%%DOXYGEN%%share/doc/aubio/html/dir_7672bb780010713f2d2504f90f5cfe22.html
%%DOXYGEN%%share/doc/aubio/html/dir_9f81523443f82c74e7139b3dddc1da52.html
@ -116,6 +120,8 @@ man/man1/aubiotrack.1.gz
%%DOXYGEN%%share/doc/aubio/html/globals_c.html
%%DOXYGEN%%share/doc/aubio/html/globals_d.html
%%DOXYGEN%%share/doc/aubio/html/globals_defs.html
%%DOXYGEN%%share/doc/aubio/html/globals_enum.html
%%DOXYGEN%%share/doc/aubio/html/globals_eval.html
%%DOXYGEN%%share/doc/aubio/html/globals_f.html
%%DOXYGEN%%share/doc/aubio/html/globals_func.html
%%DOXYGEN%%share/doc/aubio/html/globals_func_c.html
@ -134,6 +140,8 @@ man/man1/aubiotrack.1.gz
%%DOXYGEN%%share/doc/aubio/html/io_2test-source_8c-example.html
%%DOXYGEN%%share/doc/aubio/html/io_2test-source_multi_8c-example.html
%%DOXYGEN%%share/doc/aubio/html/jquery.js
%%DOXYGEN%%share/doc/aubio/html/log_8h.html
%%DOXYGEN%%share/doc/aubio/html/log_8h_source.html
%%DOXYGEN%%share/doc/aubio/html/lvec_8h.html
%%DOXYGEN%%share/doc/aubio/html/lvec_8h_source.html
%%DOXYGEN%%share/doc/aubio/html/menu.js
@ -145,6 +153,8 @@ man/man1/aubiotrack.1.gz
%%DOXYGEN%%share/doc/aubio/html/nav_f.png
%%DOXYGEN%%share/doc/aubio/html/nav_g.png
%%DOXYGEN%%share/doc/aubio/html/nav_h.png
%%DOXYGEN%%share/doc/aubio/html/notes_8h.html
%%DOXYGEN%%share/doc/aubio/html/notes_8h_source.html
%%DOXYGEN%%share/doc/aubio/html/onset_2test-onset_8c-example.html
%%DOXYGEN%%share/doc/aubio/html/onset_8h.html
%%DOXYGEN%%share/doc/aubio/html/onset_8h_source.html
@ -205,6 +215,10 @@ man/man1/aubiotrack.1.gz
%%DOXYGEN%%share/doc/aubio/html/search/defines_0.js
%%DOXYGEN%%share/doc/aubio/html/search/defines_1.html
%%DOXYGEN%%share/doc/aubio/html/search/defines_1.js
%%DOXYGEN%%share/doc/aubio/html/search/enums_0.html
%%DOXYGEN%%share/doc/aubio/html/search/enums_0.js
%%DOXYGEN%%share/doc/aubio/html/search/enumvalues_0.html
%%DOXYGEN%%share/doc/aubio/html/search/enumvalues_0.js
%%DOXYGEN%%share/doc/aubio/html/search/files_0.html
%%DOXYGEN%%share/doc/aubio/html/search/files_0.js
%%DOXYGEN%%share/doc/aubio/html/search/files_1.html
@ -231,6 +245,8 @@ man/man1/aubiotrack.1.gz
%%DOXYGEN%%share/doc/aubio/html/search/files_b.js
%%DOXYGEN%%share/doc/aubio/html/search/files_c.html
%%DOXYGEN%%share/doc/aubio/html/search/files_c.js
%%DOXYGEN%%share/doc/aubio/html/search/files_d.html
%%DOXYGEN%%share/doc/aubio/html/search/files_d.js
%%DOXYGEN%%share/doc/aubio/html/search/functions_0.html
%%DOXYGEN%%share/doc/aubio/html/search/functions_0.js
%%DOXYGEN%%share/doc/aubio/html/search/functions_1.html
@ -277,6 +293,7 @@ man/man1/aubiotrack.1.gz
%%DOXYGEN%%share/doc/aubio/html/source_8h_source.html
%%DOXYGEN%%share/doc/aubio/html/specdesc_8h.html
%%DOXYGEN%%share/doc/aubio/html/specdesc_8h_source.html
%%DOXYGEN%%share/doc/aubio/html/spectral_2test-fft_8c-example.html
%%DOXYGEN%%share/doc/aubio/html/spectral_2test-filterbank_8c-example.html
%%DOXYGEN%%share/doc/aubio/html/spectral_2test-filterbank_mel_8c-example.html
%%DOXYGEN%%share/doc/aubio/html/spectral_2test-mfcc_8c-example.html
@ -284,7 +301,6 @@ man/man1/aubiotrack.1.gz
%%DOXYGEN%%share/doc/aubio/html/spectral_2test-specdesc_8c-example.html
%%DOXYGEN%%share/doc/aubio/html/spectral_2test-tss_8c-example.html
%%DOXYGEN%%share/doc/aubio/html/splitbar.png
%%DOXYGEN%%share/doc/aubio/html/src_2spectral_2test-fft_8c-example.html
%%DOXYGEN%%share/doc/aubio/html/structcvec__t.html
%%DOXYGEN%%share/doc/aubio/html/structfmat__t.html
%%DOXYGEN%%share/doc/aubio/html/structfvec__t.html
@ -313,6 +329,7 @@ man/man1/aubiotrack.1.gz
%%DOXYGEN%%share/doc/aubio/html/tss_8h_source.html
%%DOXYGEN%%share/doc/aubio/html/types_8h.html
%%DOXYGEN%%share/doc/aubio/html/types_8h_source.html
%%DOXYGEN%%share/doc/aubio/html/utils_2test-log_8c-example.html
%%DOXYGEN%%share/doc/aubio/html/utils_2test-parameter_8c-example.html
%%DOXYGEN%%share/doc/aubio/html/vecutils_8h.html
%%DOXYGEN%%share/doc/aubio/html/vecutils_8h_source.html

View file

@ -105,16 +105,7 @@ DOCS_DISTFILES= Csound${PORTVERSION:R}_manual_html.zip:manual
MAKE_ARGS+= Word64=1
.endif
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000033
BUILD_DEPENDS+= flex>0:textproc/flex
MAKE_ENV+= PATH=${LOCALBASE}/bin:$$PATH
.endif
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000054
CXXLIB= c++
.else
CXXLIB= # empty
.endif
BROKEN_powerpc64= Does not build

View file

@ -100,13 +100,6 @@ PULSEAUDIO_DESC= Build PulseAudio I/O module
PULSEAUDIO_LIB_DEPENDS= libpulse-simple.so:audio/pulseaudio
PULSEAUDIO_CMAKE_OFF= -DUSE_PULSEAUDIO:BOOL=OFF
.include <bsd.port.options.mk>
.if ${OSVERSION} < 1000033
BUILD_DEPENDS+= ${LOCALBASE}/bin/flex:textproc/flex
CMAKE_ARGS+= -DFLEX_EXECUTABLE:STRING="${LOCALBASE}/bin/flex"
.endif
post-patch:
@${REINPLACE_CMD} -e \
'/-O3/s|^|#| ; \

View file

@ -3,7 +3,7 @@
PORTNAME= denemo
PORTVERSION= 2.0.6
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= audio
MASTER_SITES= GNU

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= midipp
PORTVERSION= 1.3.2
PORTVERSION= 1.3.3
CATEGORIES= audio
MASTER_SITES= http://www.selasky.org/hans_petter/distfiles/ \
http://home.selasky.org:8192/distfiles/
@ -16,6 +16,17 @@ BUILD_DEPENDS= libumidi>=2.0.13:audio/libumidi
LIB_DEPENDS= libumidi20.so:audio/libumidi
USES= qmake tar:bzip2
USE_QT4= gui moc_build rcc_build network
_USE_QT4= corelib gui moc_build rcc_build network
_USE_QT5= core gui network widgets \
printsupport buildtools_build
OPTIONS_SINGLE= TOOLKIT
OPTIONS_SINGLE_TOOLKIT= QT4 QT5
OPTIONS_DEFAULT= QT5
TOOLKIT_DESC= Qt toolkit
QT4_USE= ${_USE_QT4:S/^/QT4=/}
QT5_USE= ${_USE_QT5:S/^/QT5=/} GL=gl
.include <bsd.port.mk>

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1470247137
SHA256 (midipp-1.3.2.tar.bz2) = 708870fb9eb404a47282879773da29df0d4cf05591c5d505d891d8dd8a0b4344
SIZE (midipp-1.3.2.tar.bz2) = 108009
TIMESTAMP = 1481019827
SHA256 (midipp-1.3.3.tar.bz2) = 322efd0aac7fc5800b296c23fb78deb160e44edc749af527a5d01cae88820a3f
SIZE (midipp-1.3.3.tar.bz2) = 108032

View file

@ -10,15 +10,16 @@ MASTER_SITES= ftp://ftp.wspse.de/linux/wspse/
MAINTAINER= ports@FreeBSD.org
COMMENT= CD to mp3c converter with a console frontend
LICENSE= GPLv2
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
RUN_DEPENDS= mp3info:audio/mp3info \
cdrecord:sysutils/cdrtools
USES= ncurses
HAS_CONFIGURE= yes
CONFIGURE_ARGS= "--prefix=${PREFIX}"
GNU_CONFIGURE= yes
DEFAULT_CDROM_DEVICE?= cd0
OPTIONS_DEFINE= NLS
OPTIONS_SUB= yes
@ -26,14 +27,6 @@ OPTIONS_SUB= yes
NLS_USES= gettext
NLS_CONFIGURE_ENABLE= nls
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000031
DEFAULT_CDROM_DEVICE= cd0
.else
DEFAULT_CDROM_DEVICE= acd0
.endif
post-patch:
@${REINPLACE_CMD} -e 's|rcd0d|${DEFAULT_CDROM_DEVICE}|g' \
-e 's|/dev/cdrom|/dev/${DEFAULT_CDROM_DEVICE}|g' \
@ -42,4 +35,4 @@ post-patch:
post-install:
${INSTALL_SCRIPT} ${FILESDIR}/cdrip.sh ${STAGEDIR}${LOCALBASE}/bin
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View file

@ -14,6 +14,8 @@ LICENSE_NAME= OptimFROG - License
LICENSE_FILE= ${WRKSRC}/license.html #only available as html
LICENSE_PERMS= dist-mirror pkg-mirror auto-accept
RUN_DEPENDS+= ${LOCALBASE}/lib/compat/libstdc++.so.6:misc/compat9x
CONFLICTS_INSTALL?= optimfrog-sse2-[0-9]*
ONLY_FOR_ARCHS?= amd64 i386
@ -40,10 +42,6 @@ DISTNAME= OptimFROG_FreeBSD_x86_${DISTVERSION:S/.//}
. endif
.endif
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000
RUN_DEPENDS+= ${LOCALBASE}/lib/compat/libstdc++.so.6:misc/compat9x
.endif
do-install:
@(cd ${WRKSRC} && ./install.sh -d ${STAGEDIR})

View file

@ -19,13 +19,6 @@ USE_GNOME= gtk20
MAKEFILE= makefile
PLIST_FILES= bin/praat man/man1/praat.1.gz
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 1000000
# Requires std=g++11
USE_GCC= yes
.endif
post-patch:
@${FIND} ${WRKSRC} -name Makefile -exec \
${REINPLACE_CMD} -e 's|^CFLAGS =|CFLAGS +=|' {} \;
@ -46,4 +39,4 @@ do-install:
${INSTALL_PROGRAM} ${WRKSRC}/praat ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${FILESDIR}/praat.1 ${STAGEDIR}${PREFIX}/man/man1
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View file

@ -57,13 +57,11 @@ PLIST_FILES+= "@postunexec if [ ! -s ${SHOUTCASTDIR}/sc_serv.${ext} ];\
.include <bsd.port.options.mk>
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000010
.if ${ARCH} == "i386"
RUN_DEPENDS+= ${LOCALBASE}/lib/compat/libstdc++.so.6:misc/compat9x
.else
RUN_DEPENDS+= ${LOCALBASE}/lib32/compat/libstdc++.so.6:misc/compat9x
.endif
.endif
post-patch:
@${REINPLACE_CMD} -e '/sc_serv2 directory/d' \

View file

@ -17,13 +17,6 @@ CONFIGURE_ARGS= --prefix=${PREFIX} --mandir=${PREFIX}/man
USE_LDCONFIG= yes
USE_RC_SUBR= sndiod
.include <bsd.port.pre.mk>
# FreeBSD 9.x does not have SOCK_CLOEXEC
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
CFLAGS+= -DSOCK_CLOEXEC=0
.endif
USERS= _sndio
GROUPS= _sndio
@ -38,4 +31,4 @@ post-install:
${STAGEDIR}${PREFIX}/bin/aucat \
${STAGEDIR}${PREFIX}/bin/midicat
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View file

@ -18,16 +18,6 @@ GNUPLOT_DESC= Support for plotting graphs
GNUPLOT_BUILD_DEPENDS= ${LOCALBASE}/bin/gnuplot:math/gnuplot
.include <bsd.port.options.mk>
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000013
BUILD_DEPENDS+= byacc>0:devel/byacc
MAKE_ARGS+= YACC=${LOCALBASE}/bin/yacc
BUILD_DEPENDS+= flex>0:textproc/flex
MAKE_ARGS+= LEX=${LOCALBASE}/bin/flex
.endif
BROKEN_powerpc64= Does not build on powerpc64
do-install:

View file

@ -2,21 +2,18 @@
# $FreeBSD$
PORTNAME= sipp
PORTVERSION= 3.4.1
DISTVERSIONPREFIX= v
PORTVERSION= 3.5.1
CATEGORIES= benchmarks net
MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/v${PORTVERSION}/
MAINTAINER= farrokhi@FreeBSD.org
COMMENT= SIP benchmarking and testing tool
LICENSE= GPLv2
USE_GITHUB= yes
GH_ACCOUNT= SIPp
PLIST_FILES= bin/sipp man/man1/sipp.1.gz
USES= gmake ncurses
USES= autoreconf gmake ncurses
GNU_CONFIGURE= yes
OPTIONS_DEFINE= OPENSSL GSL PCAP RTPSTREAM SCTP

View file

@ -1,2 +1,3 @@
SHA256 (SIPp-sipp-v3.4.1_GH0.tar.gz) = bb6829a1f3af8d8b5f08ffcd7de40e2692b4dfb9a83eccec3653a51f77a82bc4
SIZE (SIPp-sipp-v3.4.1_GH0.tar.gz) = 439326
TIMESTAMP = 1483863258
SHA256 (sipp-3.5.1.tar.gz) = 56421ba7b43b67e9b04e21894b726502a82a6149fc86ba06df33dfc7252a1891
SIZE (sipp-3.5.1.tar.gz) = 608235

View file

@ -28,16 +28,6 @@ USE_GCC= yes
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 1000000
post-patch:
# missing C99 functions in FreeBSD's math.h, use C++ instead
@${REINPLACE_CMD} -e 's|expl(|std::exp(|g' ${WRKSRC}/apps/snp_store/snp_store.h
@${REINPLACE_CMD} -e 's|logl(|std::log(|g' ${WRKSRC}/apps/snp_store/snp_store.h
# the other way around (use math.h instead of cmath)
@${REINPLACE_CMD} -e 's|std::round|round|g' ${WRKSRC}/apps/yara/mapper_writer.h
@${REINPLACE_CMD} -e 's|std::erfc|erfc|g' ${WRKSRC}/apps/yara/bits_matches.h
.endif
.if ${ARCH} == "i386"
PLIST_SUB+= RM_I386="@comment "
.else

View file

@ -31,6 +31,9 @@ QMAKE_ARGS= INSTALL_PREFIX="${PREFIX}" UGENE_INSTALL_DATA="${DATADIR}" \
LUPDATE="${LUPDATE}"
ALL_TARGET= release
# Required for Google Test code
CXXFLAGS+= -std=c++11
DOCSDIR= ${DATADIR}/manuals
OPTIONS_DEFINE= DOCS
@ -38,11 +41,6 @@ DOCS_DESC= Install official UGENE documentation (PDF)
.include <bsd.port.pre.mk>
# Required for Google Test code
.if ${OSVERSION} > 1000054
CXXFLAGS+= -std=c++11
.endif
.if ${ARCH} == amd64
# XXX: need to manually tell the build we are on x64
QMAKE_ARGS+= CONFIG+=x64

View file

@ -13,17 +13,9 @@ COMMENT= Verilog simulation and synthesis tool
LICENSE= GPLv2
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-suffix
USES= bison gmake
MAKE_JOBS_UNSAFE= yes
.include <bsd.port.options.mk>
.if ${OSVERSION} < 1000033
BUILD_DEPENDS+= flex>=0:textproc/flex
CONFIGURE_ENV+= ac_cv_prog_LEX="${LOCALBASE}/bin/flex"
.endif
CONFIGURE_ARGS= --disable-suffix
.include <bsd.port.mk>

View file

@ -184,10 +184,8 @@ PLIST_SHAREDDIR_LIST= share/mimelnk/application \
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD
.if ${OSVERSION} < 1000000 || ${CHOSEN_COMPILER_TYPE} == gcc
IGNORE= builds only on greater than 10 and with clang
.endif
.if ${OPSYS} == FreeBSD && ${CHOSEN_COMPILER_TYPE} == gcc
IGNORE= builds only with clang
.endif
.include <bsd.port.post.mk>

View file

@ -1,10 +0,0 @@
--- src/xmlrpcpp/XmlRpcBase64.h.orig 2015-04-27 22:22:52.000000000 -0700
+++ src/xmlrpcpp/XmlRpcBase64.h 2015-04-27 22:23:02.000000000 -0700
@@ -18,6 +18,7 @@
#if !defined(__BASE64_H_INCLUDED__)
#define __BASE64_H_INCLUDED__ 1
+#include <ios>
#include <iterator>
static

View file

@ -102,9 +102,6 @@ TESTING_BUILD_DEPENDS= cppunit-config:devel/cppunit
LIBSTRIP_FILES+= uhd
LIB_DEPENDS+= libuhd.so:comms/uhd
.endif
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
USE_GCC= yes
.endif
PATCH_FILES= docs/doxygen/Doxyfile.in \
gr-fec/lib/CMakeLists.txt

View file

@ -43,11 +43,4 @@ do-install:
${INSTALL_DATA} ${WRKSRC}/gqrx.desktop \
${STAGEDIR}${PREFIX}/share/applications
.include <bsd.port.pre.mk>
# Chase comms/gnuradio compiler choice
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
USE_GCC= yes
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View file

@ -23,10 +23,4 @@ USE_QT5= core buildtools_build qmake widgets
USES= cmake pkgconfig
USE_LDCONFIG= yes
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
USE_GCC= yes
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View file

@ -854,11 +854,13 @@
SUBDIR += ruby-sybct
SUBDIR += ruby-tokyocabinet
SUBDIR += rubygem-activemodel4
SUBDIR += rubygem-activemodel5
SUBDIR += rubygem-activerecord-import
SUBDIR += rubygem-activerecord-jdbc-adapter
SUBDIR += rubygem-activerecord-jdbcmysql-adapter
SUBDIR += rubygem-activerecord-session_store
SUBDIR += rubygem-activerecord4
SUBDIR += rubygem-activerecord5
SUBDIR += rubygem-after_commit_queue
SUBDIR += rubygem-amalgalite
SUBDIR += rubygem-arel

View file

@ -139,7 +139,7 @@ post-install:
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000012
.if ${OPSYS} == FreeBSD
CMAKE_ARGS+= -DWITH_JEMALLOC="system"
.else
CMAKE_ARGS+= -DWITH_JEMALLOC="no"
@ -151,7 +151,7 @@ NOT_FOR_ARCHS_REASON= TokuDB not supported on 32-bit platforms, see \
https://github.com/percona/PerconaFT/blob/master/README.md
.endif
.if ${ARCH} == 'i386' && ${OSVERSION} >= 1001000
.if ${ARCH} == 'i386'
# Server segfaults on i386 when built with clang >= 3.4
USE_GCC= yes
.endif

View file

@ -154,14 +154,7 @@ IGNORE= BASE_GSSAPI is not compatible with OpenSSL from ports. Use other GSSAPI
.endif
.if ${OPSYS} == FreeBSD
. if ${OSVERSION} >= 1000012
CMAKE_ARGS+= -DWITH_JEMALLOC="system"
. else
CMAKE_ARGS+= -DWITH_JEMALLOC="no"
. if ${PORT_OPTIONS:MGSSAPI_BASE}
IGNORE= requires a Kerberos implementation from ports on FreeBSD < 10. Select GSSAPI_HEIMDAL or GSSAPI_MIT option
. endif
. endif
.endif
post-patch:

View file

@ -108,14 +108,14 @@ MAXKEY_EXTRA_PATCHES= ${FILESDIR}/extra-patch-include_my_compare.h
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000012
.if ${OPSYS} == FreeBSD
CMAKE_ARGS+= -DWITH_JEMALLOC="system"
.else
CMAKE_ARGS+= -DWITH_JEMALLOC="no"
.endif
# Server segfaults on i386 when built with clang >= 3.4
.if ${ARCH} == 'i386' && ${OSVERSION} >= 1001000
.if ${ARCH} == 'i386'
USE_GCC= yes
.endif

View file

@ -1,6 +1,6 @@
--- scripts/mysqld_safe.sh.orig 2007-10-08 10:39:23.000000000 +0200
+++ scripts/mysqld_safe.sh 2007-10-08 10:40:52.000000000 +0200
@@ -242,10 +242,10 @@
--- scripts/mysqld_safe.sh.orig 2017-01-09 14:36:43 UTC
+++ scripts/mysqld_safe.sh
@@ -468,10 +468,10 @@ fi
if test -z "$MYSQL_HOME"
then
@ -13,12 +13,12 @@
$DATADIR/my.cnf
IGNORING $DATADIR/my.cnf"
@@ -254,7 +254,7 @@
@@ -480,7 +480,7 @@ IGNORING $DATADIR/my.cnf"
then
log_error "WARNING: Found $DATADIR/my.cnf
The data directory is a deprecated location for my.cnf, please move it to
-$MY_BASEDIR_VERSION/my.cnf"
+$MY_BASEDIR_VERSION/etc/my.cnf"
unsafe_my_cnf=1
MYSQL_HOME=$DATADIR
else
MYSQL_HOME=$MY_BASEDIR_VERSION

View file

@ -39,13 +39,6 @@ MAKE_ENV= GOPATH="${WRKSRC}/.gopath:${WRKSRC}/vendor" \
USES= localbase
MY_TAGS= -tags "${USE_MY_TAGS}"
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 1000000
# Cannot be built
IGNORE= unsupported on FreeBSD 9 or older
.endif
post-patch:
@cd ${WRKSRC} ; ${MKDIR} ${WRKSRC}/.gopath/src/github.com/${GH_ACCOUNT} ; \
${LN} -sf ${WRKSRC} ${WRKSRC}/.gopath/src/github.com/${GH_ACCOUNT}/${GH_PROJECT}
@ -68,4 +61,4 @@ do-install:
${INSTALL_MAN} ${WRKSRC}/${x} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View file

@ -129,15 +129,6 @@ PERFSCHM_SUB_LIST+= PERFSCHEMRC=""
PERFSCHM_SUB_LIST_OFF+= PERFSCHEMRC="--skip-performance-schema"
.endif
.include <bsd.port.options.mk>
### Just for the sake of FreeBSD 9.X ###
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
. if !defined(CLIENT_ONLY)
EXTRA_PATCHES+= ${PATCHDIR}/rapid_plugin-patch-_x_mysqlxtest__src_mysqlxtest.cc
. endif
.endif
.include <bsd.port.pre.mk>
.if ${SSL_DEFAULT} == base

View file

@ -1,12 +0,0 @@
--- rapid/plugin/x/mysqlxtest_src/mysqlxtest.cc.orig 2016-03-28 18:06:12 UTC
+++ rapid/plugin/x/mysqlxtest_src/mysqlxtest.cc
@@ -1661,7 +1661,8 @@ private:
if (2 == argl.size())
tolerance = atoi(argl[1].c_str());
- if (abs(expected_msec - msec) > tolerance)
+#define my_abs_64(x) ((x) < 0 ? (-x) : (x))
+ if (my_abs_64((expected_msec - msec)) > tolerance)
{
std::cerr << "Timeout should occur after " << expected_msec << "ms, but it was " << msec <<"ms. \n";
return Stop_with_failure;

View file

@ -3,6 +3,7 @@
PORTNAME= DBI
PORTVERSION= 1.636
PORTREVISION= 1
CATEGORIES= databases perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
@ -26,4 +27,7 @@ SHEBANG_FILES= dbixs_rev.pl
PROXY_BUILD_DEPENDS= p5-PlRPC>=0.2001:net/p5-PlRPC
PROXY_RUN_DEPENDS= p5-PlRPC>=0.2001:net/p5-PlRPC
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/DBI/DBI.so
.include <bsd.port.mk>

View file

@ -105,11 +105,6 @@ BROKEN= Does not compile on arm
NOT_FOR_ARCHS= i386
NOT_FOR_ARCHS_REASON= TokuDB not supported on 32-bit platforms, see \
https://github.com/percona/PerconaFT/blob/master/README.md
.if ${OPSYS} == FreeBSD && ${OSVERSION} <= 1000000
IGNORE= unsupported on FreeBSD 9 or older
.endif
.endif
.include <bsd.port.post.mk>

View file

@ -22,11 +22,4 @@ GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
MAKE_ARGS= INSTALL="${INSTALL} -c"
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000033
BUILD_DEPENDS+= ${LOCALBASE}/bin/flex:textproc/flex
MAKE_ARGS+= FLEX=${LOCALBASE}/bin/flex
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View file

@ -41,12 +41,6 @@ PLIST_SUB+= PGBOUNCER_USER="${USERS}" \
PGBOUNCER_RUNDIR="${PGBOUNCER_RUNDIR}"
SUB_LIST+= PGBOUNCER_RUNDIR="${PGBOUNCER_RUNDIR}"
.include <bsd.port.options.mk>
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
WITH_OPENSSL_PORT= yes
.endif
post-patch:
@${REINPLACE_CMD} -e "s|= pgbouncer.log|= ${PGBOUNCER_LOGDIR}/pgbouncer.log|g" \
-e "s|= pgbouncer.pid|= ${PGBOUNCER_RUNDIR}/pgbouncer.pid|g" \

View file

@ -33,10 +33,4 @@ pre-install:
post-install:
@${RM} ${STAGEDIR}${PREFIX}/bin/tests
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000 && ${OSVERSION} < 1002000
USE_GCC= yes
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View file

@ -0,0 +1,22 @@
# Created by: Johannes Meixner <johannes@perceivon.net>
# $FreeBSD$
PORTNAME= activemodel
PORTVERSION= 5.0.1
CATEGORIES= databases rubygems
MASTER_SITES= RG
PKGNAMESUFFIX= 5
MAINTAINER= ruby@FreeBSD.org
COMMENT= Toolkit for building modeling frameworks
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
RUN_DEPENDS= rubygem-activesupport5>=${PORTVERSION}:devel/rubygem-activesupport5
NO_ARCH= yes
USE_RUBY= yes
USES= gem
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1483888451
SHA256 (rubygem/activemodel-5.0.1.gem) = 5c15679d79f5f386cc5a9d09500d2da9fe6f0953c5624aee0617761740e12850
SIZE (rubygem/activemodel-5.0.1.gem) = 53248

View file

@ -0,0 +1,6 @@
A toolkit for building modeling frameworks like Active Record and
Active Resource. Rich support for attributes, callbacks,
validations, observers, serialization, internationalization,
and testing.
WWW: http://rubyonrails.org/

View file

@ -0,0 +1,24 @@
# Created by: Johannes Meixner <johannes@perceivon.net>
# $FreeBSD$
PORTNAME= activerecord
PORTVERSION= 5.0.1
CATEGORIES= databases rubygems
MASTER_SITES= RG
PKGNAMESUFFIX= 5
MAINTAINER= ruby@FreeBSD.org
COMMENT= Object-relational mapping layer for Rails MVC Framework
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
RUN_DEPENDS= rubygem-activemodel5>=${PORTVERSION}:databases/rubygem-activemodel5 \
rubygem-activesupport5>=${PORTVERSION}:devel/rubygem-activesupport5 \
rubygem-arel>=7.0:databases/rubygem-arel
NO_ARCH= yes
USE_RUBY= yes
USES= gem
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1483888473
SHA256 (rubygem/activerecord-5.0.1.gem) = d48fddd5de204458a1d3d1ae9b16268e45097a84661012f27aef2679ab99ee98
SIZE (rubygem/activerecord-5.0.1.gem) = 359936

View file

@ -0,0 +1,8 @@
Action Record
In Rails, the model is handled by what's called a object-relational
mapping layer entitled Active Record. This layer allows you to present
the data from database rows as objects and embellish these data objects
with business logic methods.
WWW: http://rubyonrails.org/

View file

@ -39,12 +39,6 @@ DOCS= AUTHORS ChangeLog NEWS README TODO
PLIST_SUB+= VERSION=${PORTVERSION}
.include <bsd.port.options.mk>
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
EXTRA_PATCHES= ${FILESDIR}/extra-src_base_macros.hpp
.endif
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for i in ${DOCS}

View file

@ -1,46 +0,0 @@
Working around c++11 issues with the port compiler used on 9.3.
--- src/base/macros.hpp.orig 2016-01-06 21:33:38.207318000 +0100
+++ src/base/macros.hpp 2016-01-06 21:45:25.932524000 +0100
@@ -29,14 +29,16 @@
#ifndef __BASE_MACROS_
#define __BASE_MACROS_
-#if __cplusplus < 201103L
+//#if __cplusplus < 201103L
#include <tr1/memory>
#include <boost/foreach.hpp>
#include <boost/lexical_cast.hpp>
+/*
#else
#include <memory>
#include <string>
#endif
+*/
#if __GNUC__
#define _PRINTF_FORMAT(f,a) \
@@ -46,7 +48,7 @@
#endif
// define 'final' and 'override' for pre-C++11 compilers
-#if __cplusplus < 201103L
+//#if __cplusplus < 201103L
#define final
#define override
#define FOREACH(var, container) BOOST_FOREACH(var, container)
@@ -58,6 +60,7 @@
using std::tr1::enable_shared_from_this;
using std::tr1::dynamic_pointer_cast;
using std::tr1::static_pointer_cast;
+/*
#else
#define FOREACH(var, container) for(var : container)
#define TO_STRING(x) std::to_string(x)
@@ -69,5 +72,6 @@
using std::dynamic_pointer_cast;
using std::static_pointer_cast;
#endif
+*/
#endif

View file

@ -40,7 +40,7 @@ PLIST_SUB= VERSION=${PORTVERSION}
.include <bsd.port.options.mk>
.if ${OPSYS} != FreeBSD || ${OSVERSION} < 1000015
.if ${OPSYS} != FreeBSD
WITH_OPENSSL_PORT= yes
# CMake 3.3.x will use $PATH when looking for headers and libraries by default,

View file

@ -4201,6 +4201,7 @@
SUBDIR += py-efilter
SUBDIR += py-efl
SUBDIR += py-eggtestinfo
SUBDIR += py-entrypoints
SUBDIR += py-enum34
SUBDIR += py-envisage
SUBDIR += py-epdb
@ -4289,6 +4290,7 @@
SUBDIR += py-ioflo
SUBDIR += py-ipaddr
SUBDIR += py-ipdb
SUBDIR += py-ipykernel
SUBDIR += py-ipython_genutils
SUBDIR += py-iso8601
SUBDIR += py-isodate
@ -4318,6 +4320,8 @@
SUBDIR += py-jsonpointer
SUBDIR += py-jsonrpclib
SUBDIR += py-jsonschema
SUBDIR += py-jupyter_client
SUBDIR += py-jupyter_core
SUBDIR += py-kaptan
SUBDIR += py-kayako
SUBDIR += py-kazoo
@ -4378,6 +4382,8 @@
SUBDIR += py-nagioscheck
SUBDIR += py-natsort
SUBDIR += py-natural
SUBDIR += py-nbconvert
SUBDIR += py-nbformat
SUBDIR += py-ncurses
SUBDIR += py-nose
SUBDIR += py-nose-cov
@ -4664,6 +4670,7 @@
SUBDIR += py-termstyle
SUBDIR += py-testgears
SUBDIR += py-testoob
SUBDIR += py-testpath
SUBDIR += py-testtools
SUBDIR += py-tgMochiKit
SUBDIR += py-thrift
@ -5001,11 +5008,14 @@
SUBDIR += rubygem-abstract
SUBDIR += rubygem-actionpack-action_caching
SUBDIR += rubygem-actionview4
SUBDIR += rubygem-actionview5
SUBDIR += rubygem-active_scaffold
SUBDIR += rubygem-activejob4
SUBDIR += rubygem-activejob5
SUBDIR += rubygem-activemessaging
SUBDIR += rubygem-activerecord-deprecated_finders
SUBDIR += rubygem-activesupport4
SUBDIR += rubygem-activesupport5
SUBDIR += rubygem-akismet
SUBDIR += rubygem-algebrick
SUBDIR += rubygem-algorithms
@ -5502,6 +5512,7 @@
SUBDIR += sdlskk
SUBDIR += sdts++
SUBDIR += sedsed
SUBDIR += serd
SUBDIR += serdisplib
SUBDIR += sfio
SUBDIR += sfml
@ -5536,6 +5547,7 @@
SUBDIR += sonarqube
SUBDIR += sope2
SUBDIR += sope3
SUBDIR += sord
SUBDIR += sourcenav
SUBDIR += sparc64-binutils
SUBDIR += sparc64-gcc

View file

@ -44,12 +44,4 @@ MANPAGE_BUILD_DEPENDS= docbook-xml>=0:textproc/docbook-xml \
docbook-xsl>=0:textproc/docbook-xsl
MANPAGES_USE= GNOME=libxslt:build
.include <bsd.port.options.mk>
.if ${OSVERSION} < 1000000 && ${OPSYS} == FreeBSD
post-patch:
${REINPLACE_CMD} -e 's|-Wtype-limits||g' \
${WRKSRC}/configure
.endif
.include <bsd.port.mk>

View file

@ -82,10 +82,6 @@ PLIST_SUB+= GOLD=""
PLIST_SUB+= GOLD="@comment "
.endif
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
CONFIGURE_ARGS+= --disable-initfini-array
.endif
.if ${ARCH} == "amd64"
CONFIGURE_TARGET= x86_64-portbld-freebsd${OSREL}
.else

View file

@ -51,15 +51,4 @@ LOG_LEVEL_INFO_CMAKE_ON= -DCAF_LOG_LEVEL:STRING=2
LOG_LEVEL_DEBUG_CMAKE_ON= -DCAF_LOG_LEVEL:STRING=3
LOG_LEVEL_TRACE_CMAKE_ON= -DCAF_LOG_LEVEL:STRING=4
.include <bsd.port.options.mk>
regression-test: test
.if ${OSVERSION} < 1001000
# require clang & libc++
BUILD_DEPENDS+= ${LOCALBASE}/bin/clang34:lang/clang34 \
${LOCALBASE}/lib/c++/libstdc++.so:devel/libc++
CXXFLAGS+= -stdlib=libc++ -I${LOCALBASE}/include/c++/v1 -L${LOCALBASE}/lib
.endif
.include <bsd.port.mk>

View file

@ -12,7 +12,8 @@ COMMENT= CVS pserver daemon
LICENSE= GPLv2
EXTRA_PATCHES= ${FILESDIR}/extra-cvsd-buildroot.in
BUILD_DEPENDS= cvs:devel/cvs
RUN_DEPENDS= cvs:devel/cvs
USE_RC_SUBR= cvsd
USES= perl5
@ -25,13 +26,6 @@ OPTIONS_DEFINE= DOCS
PORTDOCS= FAQ NEWS README
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD && ${OSVERSION} > 1000000
BUILD_DEPENDS+= cvs:devel/cvs
RUN_DEPENDS+= cvs:devel/cvs
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/cvsd ${STAGEDIR}${PREFIX}/sbin/cvsd
.for f in cvsd-buginfo cvsd-buildroot cvsd-passwd
@ -46,4 +40,4 @@ do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= dwarfdump
PORTVERSION= 20130207
PORTVERSION= 20161124
CATEGORIES= devel
MASTER_SITES= http://www.prevanders.net/
DISTNAME= libdwarf-${PORTVERSION}
@ -10,6 +10,8 @@ DISTNAME= libdwarf-${PORTVERSION}
MAINTAINER= joerg@FreeBSD.org
COMMENT= Tool to display DWARF debugging information in ELF files
LICENSE= GPLv2
BUILD_DEPENDS= ${LOCALBASE}/lib/libdwarf.a:devel/libdwarf
WRKSRC= ${WRKDIR}/dwarf-${PORTVERSION}/dwarfdump

View file

@ -1,2 +1,3 @@
SHA256 (libdwarf-20130207.tar.gz) = 5cb81459f0a1f6a2a10ef4635faddc2fa5e1a9e36901018c017759e491e708b8
SIZE (libdwarf-20130207.tar.gz) = 1534527
TIMESTAMP = 1481000089
SHA256 (libdwarf-20161124.tar.gz) = bd3d6dc7da0509876fb95b8681f165febd898845dc66714aa58e69b8feca988f
SIZE (libdwarf-20161124.tar.gz) = 1732155

View file

@ -1,24 +0,0 @@
--- Makefile.in~ 2013-02-02 20:13:55.000000000 +0100
+++ Makefile.in 2013-04-10 09:11:17.000000000 +0200
@@ -98,7 +98,7 @@
# gennames should use a static libdwarf.
gennames: $(srcdir)/gennames.c $(DIRINC)/dwarf.h $(HEADERS) common.o
- $(CC) $(CFLAGS) $(srcdir)/gennames.c common.o ../libdwarf/libdwarf.a $(LDFLAGS) -o gennames
+ $(CC) $(CFLAGS) $(srcdir)/gennames.c common.o $(LDFLAGS) -ldwarf -o gennames
naming.o: $(srcdir)/naming.c $(srcdir)/naming.h
$(CC) $(CFLAGS) -c $(srcdir)/naming.c
@@ -109,10 +109,10 @@
# Use static libdwarf.a
tag_tree_build: $(srcdir)/tag_tree.c $(DIRINC)/dwarf.h $(HEADERS) tag_common.o makename.o common.o trivial_naming.o
- $(CC) $(CFLAGS) $(srcdir)/tag_tree.c tag_common.o common.o makename.o trivial_naming.o ../libdwarf/libdwarf.a $(LDFLAGS) -o tag_tree_build
+ $(CC) $(CFLAGS) $(srcdir)/tag_tree.c tag_common.o common.o makename.o trivial_naming.o $(LDFLAGS) -ldwarf -o tag_tree_build
tag_attr_build: $(srcdir)/tag_attr.c $(DIRINC)/dwarf.h $(HEADERS) tag_common.o makename.o common.o trivial_naming.o
- $(CC) $(CFLAGS) $(srcdir)/tag_attr.c tag_common.o common.o makename.o trivial_naming.o ../libdwarf/libdwarf.a $(LDFLAGS) -o tag_attr_build
+ $(CC) $(CFLAGS) $(srcdir)/tag_attr.c tag_common.o common.o makename.o trivial_naming.o $(LDFLAGS) -ldwarf -o tag_attr_build
tmp-tt-table.c tmp-tt-ext-table.c: $(srcdir)/tag_tree_ext.list $(srcdir)/tag_tree.list tag_tree_build
# gcc -E tag_tree.list does not work, so use a .c name

View file

@ -1,11 +1,11 @@
--- configure.orig 2010-02-04 22:00:43.000000000 +0000
+++ configure 2010-02-08 13:36:07.000000000 +0000
@@ -3508,7 +3508,7 @@
--- configure.orig 2016-12-06 05:12:37 UTC
+++ configure
@@ -3585,7 +3585,7 @@ fi
done
-for ac_header in elf.h getopt.h libelf.h libelf/libelf.h sgidefs.h sys/types.h
+for ac_header in getopt.h libelf.h libelf/libelf.h sgidefs.h sys/types.h
-for ac_header in elf.h unistd.h libelf.h libelf/libelf.h sgidefs.h sys/types.h
+for ac_header in unistd.h libelf.h libelf/libelf.h sgidefs.h sys/types.h
do :
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"

View file

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= calendar
PORTVERSION= 0.16.1
PORTVERSION= 0.17.0
DISTVERSIONPREFIX= v
CATEGORIES= devel
PKGNAMEPREFIX= elixir-

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1472123096
SHA256 (lau-calendar-v0.16.1_GH0.tar.gz) = 9314c4c50ae67428ce981a61cbbfba9d79af02bff3041a4ebe32f75aef88526a
SIZE (lau-calendar-v0.16.1_GH0.tar.gz) = 43753
TIMESTAMP = 1483977623
SHA256 (lau-calendar-v0.17.0_GH0.tar.gz) = 1980bb5c9fd274c9757a4324fd07c57bb1b5750c1d3463dbf11b42665952c102
SIZE (lau-calendar-v0.17.0_GH0.tar.gz) = 42833

View file

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= elixir-estree
PORTVERSION= 2.4.1
PORTVERSION= 2.4.2
DISTVERSIONPREFIX= v
CATEGORIES= devel

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1476345508
SHA256 (bryanjos-elixir-estree-v2.4.1_GH0.tar.gz) = 91ee5915dc25bf0fc1d6aa6f157312864394a92610c41a4bed649797eadc5bcf
SIZE (bryanjos-elixir-estree-v2.4.1_GH0.tar.gz) = 19030
TIMESTAMP = 1483977396
SHA256 (bryanjos-elixir-estree-v2.4.2_GH0.tar.gz) = 4a572a48c297a13b385e870ba700eb7898929b30c0b90b4ae98753d0739461f6
SIZE (bryanjos-elixir-estree-v2.4.2_GH0.tar.gz) = 19169

View file

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= excoveralls
PORTVERSION= 0.5.7
PORTVERSION= 0.6.0
DISTVERSIONPREFIX= v
CATEGORIES= devel
PKGNAMEPREFIX= elixir-

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1477062800
SHA256 (parroty-excoveralls-v0.5.7_GH0.tar.gz) = 3e03de276a4955aaecddb0bb9a78389121d4a4fd803c1b3a1966e70ec6d4fc88
SIZE (parroty-excoveralls-v0.5.7_GH0.tar.gz) = 194670
TIMESTAMP = 1483944828
SHA256 (parroty-excoveralls-v0.6.0_GH0.tar.gz) = e5c3bc5bd2a883920ce4b4a58ad58f448474eb241253027ab831d2249d750a7e
SIZE (parroty-excoveralls-v0.6.0_GH0.tar.gz) = 194936

View file

@ -1,9 +1,9 @@
--- mix.exs.orig 2016-06-22 07:43:11 UTC
--- mix.exs.orig 2017-01-06 11:20:27 UTC
+++ mix.exs
@@ -5,7 +5,6 @@ defmodule ExCoveralls.Mixfile do
[ app: :excoveralls,
version: "0.5.5",
elixir: "~> 1.0",
version: "0.6.0",
elixir: "~> 1.2",
- deps: deps(),
description: description(),
package: package(),

View file

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= elixir-paratize
PORTVERSION= 2.1.3
PORTVERSION= 2.1.4
DISTVERSIONPREFIX= v
CATEGORIES= devel

View file

@ -1,2 +1,3 @@
SHA256 (seantanly-elixir-paratize-v2.1.3_GH0.tar.gz) = 2f59f342522a4d88231577f7f196ab4e60bd03de393366e3d468bf0c98e3783d
SIZE (seantanly-elixir-paratize-v2.1.3_GH0.tar.gz) = 78940
TIMESTAMP = 1483977502
SHA256 (seantanly-elixir-paratize-v2.1.4_GH0.tar.gz) = a21533b55bc1c8b73ce56ac5db6f1a1aeee290e5b5e30d3be0bd70cd5ade6d04
SIZE (seantanly-elixir-paratize-v2.1.4_GH0.tar.gz) = 80036

View file

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= timex
PORTVERSION= 3.1.5
PORTVERSION= 3.1.7
CATEGORIES= devel
PKGNAMEPREFIX= elixir-

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1478460592
SHA256 (bitwalker-timex-3.1.5_GH0.tar.gz) = e2b872497f6df5d6ad87346d7b6a032c701a550ceefa20ea6cf0a0de2a451f06
SIZE (bitwalker-timex-3.1.5_GH0.tar.gz) = 141254
TIMESTAMP = 1483976930
SHA256 (bitwalker-timex-3.1.7_GH0.tar.gz) = 6eb70e6452fa24ad363012f1168e2f10c8060725857123dbe7d4a8f88a8ca2b1
SIZE (bitwalker-timex-3.1.7_GH0.tar.gz) = 151691

View file

@ -169,6 +169,20 @@ lib/elixir/lib/timex/priv/translations/ja/LC_MESSAGES/weekdays.po
lib/elixir/lib/timex/priv/translations/months.pot
lib/elixir/lib/timex/priv/translations/months_abbr.pot
lib/elixir/lib/timex/priv/translations/numbers.pot
lib/elixir/lib/timex/priv/translations/pl/LC_MESSAGES/day_periods.po
lib/elixir/lib/timex/priv/translations/pl/LC_MESSAGES/months.mo
lib/elixir/lib/timex/priv/translations/pl/LC_MESSAGES/months.po
lib/elixir/lib/timex/priv/translations/pl/LC_MESSAGES/months_abbr.mo
lib/elixir/lib/timex/priv/translations/pl/LC_MESSAGES/months_abbr.po
lib/elixir/lib/timex/priv/translations/pl/LC_MESSAGES/numbers.po
lib/elixir/lib/timex/priv/translations/pl/LC_MESSAGES/relative_time.mo
lib/elixir/lib/timex/priv/translations/pl/LC_MESSAGES/relative_time.po
lib/elixir/lib/timex/priv/translations/pl/LC_MESSAGES/symbols.mo
lib/elixir/lib/timex/priv/translations/pl/LC_MESSAGES/symbols.po
lib/elixir/lib/timex/priv/translations/pl/LC_MESSAGES/units.mo
lib/elixir/lib/timex/priv/translations/pl/LC_MESSAGES/units.po
lib/elixir/lib/timex/priv/translations/pl/LC_MESSAGES/weekdays.mo
lib/elixir/lib/timex/priv/translations/pl/LC_MESSAGES/weekdays.po
lib/elixir/lib/timex/priv/translations/pt/LC_MESSAGES/day_periods.po
lib/elixir/lib/timex/priv/translations/pt/LC_MESSAGES/months.po
lib/elixir/lib/timex/priv/translations/pt/LC_MESSAGES/months_abbr.po
@ -197,4 +211,12 @@ lib/elixir/lib/timex/priv/translations/ru/LC_MESSAGES/weekdays.po
lib/elixir/lib/timex/priv/translations/symbols.pot
lib/elixir/lib/timex/priv/translations/units.pot
lib/elixir/lib/timex/priv/translations/weekdays.pot
lib/elixir/lib/timex/priv/translations/zh_CN/LC_MESSAGES/day_periods.po
lib/elixir/lib/timex/priv/translations/zh_CN/LC_MESSAGES/months.po
lib/elixir/lib/timex/priv/translations/zh_CN/LC_MESSAGES/months_abbr.po
lib/elixir/lib/timex/priv/translations/zh_CN/LC_MESSAGES/numbers.po
lib/elixir/lib/timex/priv/translations/zh_CN/LC_MESSAGES/relative_time.po
lib/elixir/lib/timex/priv/translations/zh_CN/LC_MESSAGES/symbols.po
lib/elixir/lib/timex/priv/translations/zh_CN/LC_MESSAGES/units.po
lib/elixir/lib/timex/priv/translations/zh_CN/LC_MESSAGES/weekdays.po
%%PORTDOCS%%%%DOCSDIR%%/README.md

View file

@ -69,15 +69,8 @@ TUI_CONFIGURE_ENABLE= tui
.include <bsd.port.options.mk>
.if ${OSVERSION} < 1000010
# FreeBSD 9.x and earlier do not define SIGLIBRT in <sys/signal.h>
CFLAGS+= -DSIGLIBRT=33
.endif
.if ${OSVERSION} > 1000010
# The option -Wno-extended-offsetof is supported by clang only
CFLAGS+= -Wno-extended-offsetof
.endif
.if ! ${PORT_OPTIONS:MBUNDLED_READLINE}
EXCLUDE+= readline

View file

@ -2,49 +2,42 @@
# $FreeBSD$
PORTNAME= ipython
PORTVERSION= 3.2.3
PORTREVISION= 2
PORTVERSION= 5.1.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= ports@FreeBSD.org
MAINTAINER= python@FreeBSD.org
COMMENT= Enhanced Interactive Python shell
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/COPYING.rst
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>=2:databases/py-sqlite3
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pexpect>=2:misc/py-pexpect \
${PYTHON_PKGNAMEPREFIX}sqlite3>=2:databases/py-sqlite3
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pexpect>=0:misc/py-pexpect \
${PYTHON_PKGNAMEPREFIX}sqlite3>=2:databases/py-sqlite3 \
${PYTHON_PKGNAMEPREFIX}decorator>=0:devel/py-decorator \
${PYTHON_PKGNAMEPREFIX}pickleshare>=0:databases/py-pickleshare \
${PYTHON_PKGNAMEPREFIX}prompt_toolkit>=1.0.3:devel/py-prompt_toolkit \
${PYTHON_PKGNAMEPREFIX}pygments>=0:textproc/py-pygments \
${PYTHON_PKGNAMEPREFIX}simplegeneric>0.8:devel/py-simplegeneric \
${PYTHON_PKGNAMEPREFIX}traitlets>=4.2:devel/py-traitlets
USES= python
USE_PYTHON= autoplist distutils
USE_GCC= yes # To be removed - Needed as a work-around for numpy, see PR ports/188114
NO_ARCH= yes
OPTIONS_DEFINE= X11 HTML_NOTEBOOK ZMQ EXAMPLES
OPTIONS_DEFAULT=X11 ZMQ
OPTIONS_DEFINE= EXAMPLES
PORTEXAMPLES= *
.if defined(PACKAGE_BUILDING)
OPTIONS_DEFAULT+= HTML_NOTEBOOK
.include <bsd.port.pre.mk>
.if ${PYTHON_REL} < 3000
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}backports.shutil_get_terminal_size>=0:devel/py-backports.shutil_get_terminal_size
.endif
.if ${PYTHON_REL} < 3400
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pathlib2>=0:devel/py-pathlib2
.endif
HTML_NOTEBOOK_DESC= HTML notebook support
ZMQ_DESC= ZMQ support (parallel computing, qt console, notebook)
X11_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}qt4-gui>=0:x11-toolkits/py-qt4-gui \
${PYTHON_PKGNAMEPREFIX}qt4-svg>=0:graphics/py-qt4-svg \
${PYTHON_PKGNAMEPREFIX}pygments>=0:textproc/py-pygments
HTML_NOTEBOOK_RUN_DEPENDS=\
${PYTHON_PKGNAMEPREFIX}tornado>=2.0:www/py-tornado \
${PYTHON_PKGNAMEPREFIX}Jinja2>=0:devel/py-Jinja2 \
${PYTHON_PKGNAMEPREFIX}jsonschema>=0:devel/py-jsonschema \
${PYTHON_PKGNAMEPREFIX}mistune>=0:textproc/py-mistune \
${PYTHON_PKGNAMEPREFIX}pyzmq>=2.1.4:net/py-pyzmq
ZMQ_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyzmq>=2.1.4:net/py-pyzmq
post-install:
@${ECHO_CMD} "/EASY-INSTALL" > ${WRKDIR}/ex.script
@ -60,4 +53,4 @@ post-install:
post-install-EXAMPLES-on:
cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}
.include <bsd.port.mk>
.include <bsd.port.post.mk>

View file

@ -1,2 +1,3 @@
SHA256 (ipython-3.2.3.tar.gz) = 2e9a467f918c68d2e4d744c7c62407ad2ba2db136c10afcc5bcadc00e983f02b
SIZE (ipython-3.2.3.tar.gz) = 10885849
TIMESTAMP = 1474486598
SHA256 (ipython-5.1.0.tar.gz) = 7ef4694e1345913182126b219aaa4a0047e191af414256da6772cf249571b961
SIZE (ipython-5.1.0.tar.gz) = 4945490

View file

@ -1,6 +1,6 @@
--- setupbase.py.orig
--- setupbase.py.orig 2016-08-13 12:56:43 UTC
+++ setupbase.py
@@ -272,7 +272,7 @@
@@ -203,7 +203,7 @@ def find_data_files():
Just man pages at this point.
"""

View file

@ -1,139 +0,0 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Customization/Index.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Customization/appconfig.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Embedding/Index.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Embedding/embed_class_long.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Embedding/embed_class_short.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Embedding/embed_function.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Embedding/inprocess_qtconsole.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Embedding/inprocess_terminal.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Embedding/internal_ipkernel.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Embedding/ipkernel_qtapp.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Embedding/ipkernel_wxapp.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/Animations Using clear_output.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/Background Jobs.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/Beyond Plain Python.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/Capturing Output.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/Cell Magics.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/Custom Display Logic.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/Index.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/Plotting in the Notebook.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/Raw Input in the Notebook.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/Rich Output.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/Script Magics.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/SymPy.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/Terminal Usage.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/Third Party Rich Output.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/Trapezoid Rule.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/Working With External Code.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/data/flare.json
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/example-demo.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/gui/gui-glut.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/gui/gui-gtk.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/gui/gui-gtk3.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/gui/gui-pyglet.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/gui/gui-qt.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/gui/gui-tk.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/gui/gui-wx.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/ipython-completion.bash
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/ipython-get-history.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/ipython-qtconsole.desktop
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/IPython Kernel/ipython.desktop
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Index.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/Beat Frequencies.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/Custom Widget - Hello World.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/Date Picker Widget.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/Exploring Graphs.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/Export As (nbconvert).html
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/Export As (nbconvert).ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/Factoring.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/File Upload Widget.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/Image Browser.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/Image Processing.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/Index.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/Lorenz Differential Equations.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/Nonblocking Console.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/Using Interact.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/Variable Inspector.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/Widget Basics.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/Widget Events.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/Widget List.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/Widget Styling.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/images/MultilanguageKernels.graffle
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/images/MultilanguageKernels.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/images/ParallelKernels.graffle
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/images/ParallelKernels.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/images/VizInteractCompute.graffle
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/images/VizInteractCompute.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/images/WidgetArch.graffle
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/images/WidgetArch.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/images/WidgetModelView.graffle
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Interactive Widgets/images/WidgetModelView.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/Configuring the Notebook and Server.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/Connecting with the Qt Console.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/Converting Notebooks With nbconvert.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/Custom Keyboard Shortcuts.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/Importing Notebooks.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/Index.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/JavaScript Notebook Extensions.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/Notebook Basics.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/Running Code.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/Typesetting Equations.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/Using nbconvert as a Library.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/What is the IPython Notebook.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/Working With Markdown Cells.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/images/command_mode.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/images/dashboard_files_tab.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/images/dashboard_files_tab_btns.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/images/dashboard_files_tab_new.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/images/dashboard_files_tab_run.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/images/dashboard_running_tab.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/images/edit_mode.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/images/menubar_toolbar.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/images/nbconvert_arch.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/nbpackage/__init__.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/nbpackage/mynotebook.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/nbpackage/nbs/__init__.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Notebook/nbpackage/nbs/other.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/Data Publication API.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/Index.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/Monitoring an MPI Simulation - 1.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/Monitoring an MPI Simulation - 2.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/Monte Carlo Options.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/Parallel Decorator and map.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/Parallel Magics.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/Using Dill.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/Using MPI with IPython Parallel.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/customresults.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/daVinci Word Count/pwordfreq.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/daVinci Word Count/wordfreq.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/dagdeps.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/dependencies.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/fetchparse.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/interengine/bintree.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/interengine/bintree_script.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/interengine/communicator.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/interengine/interengine.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/iopubwatcher.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/itermapresult.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/nwmerge.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/phistogram.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/pi/parallelpi.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/pi/pidigits.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/rmt/rmt.ipy
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/rmt/rmt.ipynb
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/rmt/rmtkernel.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/task_profiler.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/throughput.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/wave2D/RectPartitioner.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/wave2D/communicator.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/wave2D/parallelwave-mpi.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/wave2D/parallelwave.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Parallel Computing/wave2D/wavesolver.py
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/images/FrontendKernel.graffle/data.plist
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/images/FrontendKernel.graffle/image1.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/images/FrontendKernel.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/images/animation.m4v
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/images/ipython_logo.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/images/python_logo.svg
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/utils/list_pyfiles.ipy
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/utils/list_subdirs.ipy

View file

@ -76,19 +76,6 @@ _MAN3= dispatch.3 \
dispatch_walltime.3
PLIST_FILES+= ${_MAN3:S|^|man/man3/|:S|$|.gz|}
.include <bsd.port.pre.mk>
.if (${OSVERSION} < 1000024)
OPTIONS_DEFINE= CLANG
OPTIONS_DEFAULT= CLANG
CLANG_DESC= Build with LLVM/Clang (required for blocks support)
.endif
.if ${PORT_OPTIONS:MCLANG}
CONFIGURE_ARGS+= --with-blocks-runtime=/usr/lib
CONFIGURE_ENV+= CC="/usr/bin/clang"
.endif
#
# Get rid of .la and static library files
#
@ -97,4 +84,4 @@ post-configure:
'/Install the pseudo-library/,/staticlibs=/s,^,#,' ${WRKSRC}/libtool
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View file

@ -2,13 +2,16 @@
# $FreeBSD$
PORTNAME= libdwarf
PORTVERSION= 20130207
PORTVERSION= 20161124
CATEGORIES= devel
MASTER_SITES= http://pkgs.fedoraproject.org/repo/pkgs/libdwarf/libdwarf-20130207.tar.gz/64b42692e947d5180e162e46c689dfbf/
MASTER_SITES= https://www.prevanders.net/ \
http://pkgs.fedoraproject.org/repo/pkgs/libdwarf/
MAINTAINER= joerg@FreeBSD.org
COMMENT= Library to analyze DWARF debugging information in ELF files
LICENSE= LGPL21
CONFLICTS_INSTALL= bsdlibdwarf*
MAKE_JOBS_UNSAFE= yes
@ -22,7 +25,7 @@ CFLAGS+= -I. -I${LOCALBASE}/include
USES= dos2unix
DOS2UNIX_GLOB= *.h
PS_FILES= dwarf.v2.pdf index.v2.pdf libdwarf2.1.pdf libdwarf2p.1.pdf mips_extensions.pdf
PS_FILES= libdwarf2.1.pdf libdwarf2p.1.pdf mips_extensions.pdf
do-install:
${INSTALL_DATA} ${WRKSRC}/libdwarf.a ${STAGEDIR}${PREFIX}/lib

View file

@ -1,2 +1,3 @@
SHA256 (libdwarf-20130207.tar.gz) = 5cb81459f0a1f6a2a10ef4635faddc2fa5e1a9e36901018c017759e491e708b8
SIZE (libdwarf-20130207.tar.gz) = 1534527
TIMESTAMP = 1480998515
SHA256 (libdwarf-20161124.tar.gz) = bd3d6dc7da0509876fb95b8681f165febd898845dc66714aa58e69b8feca988f
SIZE (libdwarf-20161124.tar.gz) = 1732155

View file

@ -1,11 +0,0 @@
--- configure.orig 2010-02-04 22:00:43.000000000 +0000
+++ configure 2010-02-08 13:25:55.000000000 +0000
@@ -3749,7 +3749,7 @@
-for ac_header in alloca.h elf.h elfaccess.h libelf.h libelf/libelf.h sys/types.h sys/ia64/elf.h
+for ac_header in alloca.h elfaccess.h libelf.h libelf/libelf.h sys/types.h sys/ia64/elf.h
do :
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"

View file

@ -2,4 +2,4 @@ The libdwarf library is the base for the dwarfdump utility
by the same author. It implements routines to access the
DWARF debugging information found in ELF object files.
WWW: http://reality.sgiweb.org/davea/dwarf.html
WWW: https://www.prevanders.net/dwarf.html

View file

@ -1,8 +1,6 @@
include/dwarf.h
include/libdwarf.h
lib/libdwarf.a
share/doc/libdwarf/dwarf.v2.pdf
share/doc/libdwarf/index.v2.pdf
share/doc/libdwarf/libdwarf2.1.pdf
share/doc/libdwarf/libdwarf2p.1.pdf
share/doc/libdwarf/mips_extensions.pdf
%%PORTDOCS%%%%DOCSDIR%%/libdwarf2.1.pdf
%%PORTDOCS%%%%DOCSDIR%%/libdwarf2p.1.pdf
%%PORTDOCS%%%%DOCSDIR%%/mips_extensions.pdf

View file

@ -28,11 +28,4 @@ post-patch:
-e '/\*freebsd\*/,/;;/d' \
${WRKSRC}/configure
.include <bsd.port.pre.mk>
# Workaround for libusb not knowing LIBUSB_CLASS_APPLICATION
.if (${OSVERSION} >= 1100000 && ${OSVERSION} < 1100029) || (${OSVERSION} < 1000715)
CFLAGS+= -DLIBUSB_CLASS_APPLICATION=0xfe
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View file

@ -19,11 +19,4 @@ MAKE_JOBS_UNSAFE= yes
USE_LDCONFIG= yes
INSTALL_TARGET= install-strip
.include <bsd.port.pre.mk>
# Workaround for libusb not knowing LIBUSB_CLASS_APPLICATION
.if (${OSVERSION} >= 1100000 && ${OSVERSION} < 1100029) || (${OSVERSION} < 1000715)
CFLAGS+= -DLIBUSB_CLASS_APPLICATION=0xfe
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View file

@ -25,21 +25,14 @@ DOCSDIR= ${PREFIX}/share/doc/pcre-ocaml
OPTIONS_DEFINE= DOCS EXAMPLES
.include <bsd.port.options.mk>
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
# unknown warning flag for old gcc
EXTRA_PATCHES+= ${FILESDIR}/extra-patch--Wno-keyword-macro
.endif
post-patch:
@${REINPLACE_CMD} -e 's|$$prefix"/"share|${STAGEDIR}${PREFIX}/share|' \
-e '/datarootdir/s|$$pkg_name|&-ocaml|' \
${WRKSRC}/setup.ml
@${REINPLACE_CMD} -e 's| safe_string,||' ${WRKSRC}/_tags
post-install:
post-install-EXAMPLES-on:
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
@cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR}
@cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}
.include <bsd.port.mk>

View file

@ -1,35 +0,0 @@
--- _oasis.orig 2016-02-25 15:20:15 UTC
+++ _oasis
@@ -32,7 +32,7 @@ Library pcre
BuildDepends: bytes
CCOpt: -g -O2 -fPIC -DPIC
if flag(strict) && ccomp_type(cc)
- CCOpt+: -Wall -pedantic -Wextra -Wunused -Wno-long-long -Wno-keyword-macro
+ CCOpt+: -Wall -pedantic -Wextra -Wunused -Wno-long-long
# Examples
--- myocamlbuild.ml.orig 2016-02-25 15:20:15 UTC
+++ myocamlbuild.ml
@@ -648,8 +648,6 @@ let package_default =
A "-Wunused";
A "-ccopt";
- A "-Wno-long-long";
- A "-ccopt";
- A "-Wno-keyword-macro"
+ A "-Wno-long-long"
])
])
];
--- setup.ml.orig 2016-02-25 15:20:15 UTC
+++ setup.ml
@@ -6785,8 +6785,7 @@ let setup_t =
"-pedantic";
"-Wextra";
"-Wunused";
- "-Wno-long-long";
- "-Wno-keyword-macro"
+ "-Wno-long-long"
])
];
bs_cclib = [(OASISExpr.EBool true, [])];

View file

@ -3,7 +3,7 @@
PORTNAME= IO-Tty
PORTVERSION= 1.12
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
@ -17,4 +17,7 @@ LICENSE_COMB= dual
USES= perl5
USE_PERL5= configure
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/IO/Tty/Tty.so
.include <bsd.port.mk>

View file

@ -8,7 +8,7 @@ MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:SANKO
PKGNAMEPREFIX= p5-
MAINTAINER= adamw@FreeBSD.org
MAINTAINER= perl@FreeBSD.org
COMMENT= Faster facility for creating read-only scalars, arrays, hashes
LICENSE= ART10 GPLv1

View file

@ -2,10 +2,10 @@
# $FreeBSD$
PORTNAME= pcsc-lite
PORTVERSION= 1.8.19
PORTVERSION= 1.8.20
PORTEPOCH= 2
CATEGORIES= devel security
MASTER_SITES= https://alioth.debian.org/frs/download.php/file/4198/
MASTER_SITES= https://alioth.debian.org/frs/download.php/latestfile/39/
MAINTAINER= mokhi64@gmail.com
COMMENT= Smartcard development library

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1481446804
SHA256 (pcsc-lite-1.8.19.tar.bz2) = b65e25ec6dd1328983b424ce1a649e2993b1c4c59fc87252689b5fa7037c4340
SIZE (pcsc-lite-1.8.19.tar.bz2) = 744283
TIMESTAMP = 1483729174
SHA256 (pcsc-lite-1.8.20.tar.bz2) = ec7d0114016c788c1c09859c84860f6cec6c4595436d23245105154b9c046bb2
SIZE (pcsc-lite-1.8.20.tar.bz2) = 745049

View file

@ -23,17 +23,12 @@ PORTEXAMPLES= *
OPTIONS_DEFINE= DOCS EXAMPLES
.include <bsd.port.pre.mk>
.if ${OSVERSION} <= 1000000
USE_GCC= yes
.endif
post-install:
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
post-install-EXAMPLES-on:
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
@(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= country
PORTVERSION= 17.1.2
PORTVERSION= 17.1.8
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1483785067
SHA256 (pycountry-17.1.2.tar.gz) = 77d340df2508ed2a484c84ef13cb459e60679342f0ab3c09549a6295b37e5340
SIZE (pycountry-17.1.2.tar.gz) = 9021954
TIMESTAMP = 1483951748
SHA256 (pycountry-17.1.8.tar.gz) = c5ccad49e47caee92779bf83da81565159b1fe3d8f48b063068ac118b73dd1f8
SIZE (pycountry-17.1.8.tar.gz) = 9022247

View file

@ -0,0 +1,35 @@
# $FreeBSD$
PORTNAME= entrypoints
PORTVERSION= 0.2.2
CATEGORIES= devel python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= python@FreeBSD.org
COMMENT= Discover and load entry points from installed packages
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest
USE_GITHUB= yes
GH_ACCOUNT= takluyver
USES= python
USE_PYTHON= distutils autoplist
NO_ARCH= yes
.include <bsd.port.pre.mk>
.if ${PYTHON_REL} < 3000
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}configparser>=3.5:devel/py-configparser
.endif
post-extract:
@${CP} ${FILESDIR}/setup.py ${WRKSRC}
do-test:
@(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYTHON_VER})
.include <bsd.port.post.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1483865193
SHA256 (takluyver-entrypoints-0.2.2_GH0.tar.gz) = e54b5df8bb971507278c65df96e6486cf4aea0cdac384d0102ea0339e0a4f82b
SIZE (takluyver-entrypoints-0.2.2_GH0.tar.gz) = 11162

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