*/*: sync with upstream
Taken from: HardenedBSD
This commit is contained in:
parent
f8f16d274b
commit
08da72e89d
241 changed files with 1852 additions and 1286 deletions
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= stk
|
||||
PORTVERSION= 4.5.1
|
||||
PORTVERSION= 4.6.0
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://ccrma.stanford.edu/software/stk/release/
|
||||
|
||||
|
|
@ -17,10 +17,13 @@ LIB_DEPENDS= libjack.so:audio/jack
|
|||
USES= autoreconf dos2unix gmake pkgconfig localbase
|
||||
USE_LDCONFIG= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --with-jack
|
||||
DOS2UNIX_GLOB= *.cpp *.h
|
||||
CONFIGURE_ARGS= --with-jack --with-oss
|
||||
DOS2UNIX_GLOB= *.cpp *.h
|
||||
MAKE_ARGS= RAWWAVES=${DATADIR}/rawwaves/
|
||||
|
||||
post-install:
|
||||
@cd ${WRKSRC} && ${COPYTREE_SHARE} rawwaves ${STAGEDIR}${DATADIR}
|
||||
@${RM} ${STAGEDIR}${DATADIR}/rawwaves/._* ${STAGEDIR}${DATADIR}/rawwaves/*.c
|
||||
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libstk-${PORTVERSION}.so
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1502358993
|
||||
SHA256 (stk-4.5.1.tar.gz) = 3466860901a181120d3bd0407e4aeb5ab24127a4350c314af106778c1db88594
|
||||
SIZE (stk-4.5.1.tar.gz) = 2413113
|
||||
TIMESTAMP = 1504376994
|
||||
SHA256 (stk-4.6.0.tar.gz) = 648fcb9a0a4243d2d93fc72b29955953f4e794edf04c31f2ed0ed720d05287d2
|
||||
SIZE (stk-4.6.0.tar.gz) = 2403223
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
--- configure.ac.orig 2016-02-23 01:51:06 UTC
|
||||
--- configure.ac.orig 2017-09-01 00:28:55 UTC
|
||||
+++ configure.ac
|
||||
@@ -85,7 +85,6 @@ if test "$debug" = "yes"; then
|
||||
else
|
||||
|
|
@ -17,50 +17,44 @@
|
|||
|
||||
# Check compiler and use -Wall if gnu.
|
||||
if [test $GXX = "yes" ;] then
|
||||
@@ -127,31 +126,31 @@ if test $realtime = yes; then
|
||||
# Checks for package options and external software
|
||||
AC_MSG_CHECKING(for audio API)
|
||||
@@ -134,27 +133,27 @@ api="$api -D__UNIX_JACK__"
|
||||
AC_CHECK_LIB(jack, jack_client_open, , AC_MSG_ERROR(JACK support requires the jack library!))])
|
||||
|
||||
case $host in
|
||||
- *-*-linux*)
|
||||
+ *-*-freebsd*)
|
||||
AC_ARG_WITH(jack, [ --with-jack = choose JACK server support (mac and linux only)], [
|
||||
api="$api -D__UNIX_JACK__"
|
||||
AC_MSG_RESULT(using JACK)
|
||||
AC_CHECK_LIB(jack, jack_client_open, , AC_MSG_ERROR(JACK support requires the jack library!))
|
||||
- AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(Jack support also requires the asound library!))], )
|
||||
+ #AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(Jack support also requires the asound library!))], )
|
||||
|
||||
+ *-*-linux*|*-*-freebsd*)
|
||||
# Look for ALSA flag
|
||||
- AC_ARG_WITH(alsa, [ --with-alsa = choose native ALSA API support (linux only)], [
|
||||
- AC_ARG_WITH(alsa, [ --with-alsa = choose native ALSA API support (linux only)])
|
||||
- AS_IF([test "x$with_alsa" == "xyes"], [
|
||||
- api="$api -D__LINUX_ALSA__"
|
||||
- AC_MSG_RESULT(using ALSA)
|
||||
- AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(ALSA support requires the asound library!))], )
|
||||
+ #AC_ARG_WITH(alsa, [ --with-alsa = choose native ALSA API support (linux only)], [
|
||||
- AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(ALSA support requires the asound library!))])
|
||||
+ #AC_ARG_WITH(alsa, [ --with-alsa = choose native ALSA API support (linux only)])
|
||||
+ #AS_IF([test "x$with_alsa" == "xyes"], [
|
||||
+ #api="$api -D__LINUX_ALSA__"
|
||||
+ #AC_MSG_RESULT(using ALSA)
|
||||
+ #AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(ALSA support requires the asound library!))], )
|
||||
+ #AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(ALSA support requires the asound library!))])
|
||||
|
||||
# Look for OSS flag
|
||||
- AC_ARG_WITH(oss, [ --with-oss = choose OSS API support (linux only)], [
|
||||
AC_ARG_WITH(oss, [ --with-oss = choose OSS API support (unixes only)])
|
||||
AS_IF([test "x$with_oss" == "xyes"], [
|
||||
- api="$api -D__LINUX_OSS__ -D__LINUX_ALSA__"
|
||||
- AC_MSG_RESULT(using OSS)
|
||||
- AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(OSS support requires ALSA for RtMidi!))], )
|
||||
+ #AC_ARG_WITH(oss, [ --with-oss = choose OSS API support (linux only)], [
|
||||
+ #api="$api -D__LINUX_OSS__"
|
||||
+ #AC_MSG_RESULT(using OSS)
|
||||
+ #AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(OSS support requires ALSA for RtMidi!))], )
|
||||
+ api="$api -D__LINUX_OSS__"
|
||||
AC_MSG_RESULT(using OSS)
|
||||
- AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(OSS support requires ALSA for RtMidi!))])
|
||||
+ #AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(OSS support requires ALSA for RtMidi!))])
|
||||
|
||||
# If no audio api flags specified, use ALSA
|
||||
- if [test "$api" == "";] then
|
||||
- AS_IF([test "$api" == ""], [
|
||||
- AC_MSG_RESULT(using ALSA)
|
||||
- AC_SUBST( api, [-D__LINUX_ALSA__] )
|
||||
- AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(ALSA support requires the asound library!))
|
||||
- fi
|
||||
+ #if [test "$api" == "";] then
|
||||
- ])
|
||||
+ #AS_IF([test "$api" == ""], [
|
||||
+ # AC_MSG_RESULT(using ALSA)
|
||||
+ # AC_SUBST( api, [-D__LINUX_ALSA__] )
|
||||
+ # AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(ALSA support requires the asound library!))
|
||||
+ #fi
|
||||
+ #])
|
||||
|
||||
AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR(RtAudio requires the pthread library!))
|
||||
;;
|
||||
|
|
|
|||
|
|
@ -1,23 +0,0 @@
|
|||
--- src/RtAudio.cpp.orig 2016-02-23 01:51:06 UTC
|
||||
+++ src/RtAudio.cpp
|
||||
@@ -47,6 +47,11 @@
|
||||
#include <climits>
|
||||
#include <algorithm>
|
||||
|
||||
+#if defined(__FreeBSD__)
|
||||
+#include <sys/soundcard.h>
|
||||
+#define AFMT_FLOAT 0x00004000
|
||||
+#endif
|
||||
+
|
||||
// Static variable definitions.
|
||||
const unsigned int RtApi::MAX_SAMPLE_RATES = 14;
|
||||
const unsigned int RtApi::SAMPLE_RATES[] = {
|
||||
@@ -9023,7 +9028,7 @@ bool RtApiOss :: probeDeviceOpen( unsign
|
||||
}
|
||||
|
||||
// Verify the sample rate setup worked.
|
||||
- if ( abs( srate - sampleRate ) > 100 ) {
|
||||
+ if ( abs( (int)(srate - sampleRate) ) > 100 ) {
|
||||
close( fd );
|
||||
errorStream_ << "RtApiOss::probeDeviceOpen: device (" << ainfo.name << ") does not support sample rate (" << sampleRate << ").";
|
||||
errorText_ = errorStream_.str();
|
||||
|
|
@ -101,5 +101,46 @@ include/stk/Whistle.h
|
|||
include/stk/Wurley.h
|
||||
include/stk/WvIn.h
|
||||
include/stk/WvOut.h
|
||||
lib/libstk-4.5.1.so
|
||||
lib/libstk-4.6.0.so
|
||||
lib/libstk.so
|
||||
%%DATADIR%%/rawwaves/ahh.raw
|
||||
%%DATADIR%%/rawwaves/bassdrum.raw
|
||||
%%DATADIR%%/rawwaves/britestk.raw
|
||||
%%DATADIR%%/rawwaves/cowbell1.raw
|
||||
%%DATADIR%%/rawwaves/crashcym.raw
|
||||
%%DATADIR%%/rawwaves/dope.raw
|
||||
%%DATADIR%%/rawwaves/eee.raw
|
||||
%%DATADIR%%/rawwaves/fwavblnk.raw
|
||||
%%DATADIR%%/rawwaves/halfwave.raw
|
||||
%%DATADIR%%/rawwaves/hihatcym.raw
|
||||
%%DATADIR%%/rawwaves/impuls10.raw
|
||||
%%DATADIR%%/rawwaves/impuls20.raw
|
||||
%%DATADIR%%/rawwaves/impuls40.raw
|
||||
%%DATADIR%%/rawwaves/mand1.raw
|
||||
%%DATADIR%%/rawwaves/mand10.raw
|
||||
%%DATADIR%%/rawwaves/mand11.raw
|
||||
%%DATADIR%%/rawwaves/mand12.raw
|
||||
%%DATADIR%%/rawwaves/mand2.raw
|
||||
%%DATADIR%%/rawwaves/mand3.raw
|
||||
%%DATADIR%%/rawwaves/mand4.raw
|
||||
%%DATADIR%%/rawwaves/mand5.raw
|
||||
%%DATADIR%%/rawwaves/mand6.raw
|
||||
%%DATADIR%%/rawwaves/mand7.raw
|
||||
%%DATADIR%%/rawwaves/mand8.raw
|
||||
%%DATADIR%%/rawwaves/mand9.raw
|
||||
%%DATADIR%%/rawwaves/mandpluk.raw
|
||||
%%DATADIR%%/rawwaves/marmstk1.raw
|
||||
%%DATADIR%%/rawwaves/ooo.raw
|
||||
%%DATADIR%%/rawwaves/peksblnk.raw
|
||||
%%DATADIR%%/rawwaves/ppksblnk.raw
|
||||
%%DATADIR%%/rawwaves/ridecymb.raw
|
||||
%%DATADIR%%/rawwaves/silence.raw
|
||||
%%DATADIR%%/rawwaves/sineblnk.raw
|
||||
%%DATADIR%%/rawwaves/sinewave.raw
|
||||
%%DATADIR%%/rawwaves/snardrum.raw
|
||||
%%DATADIR%%/rawwaves/snglpeak.raw
|
||||
%%DATADIR%%/rawwaves/tambourn.raw
|
||||
%%DATADIR%%/rawwaves/tomhidrm.raw
|
||||
%%DATADIR%%/rawwaves/tomlowdr.raw
|
||||
%%DATADIR%%/rawwaves/tommiddr.raw
|
||||
%%DATADIR%%/rawwaves/twopeaks.raw
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= cego
|
||||
PORTVERSION= 2.35.4
|
||||
PORTVERSION= 2.35.8
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= http://www.lemke-it.com/
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1504431444
|
||||
SHA256 (cego-2.35.4.tar.gz) = 09c365b29d7acc113e7f9d0b68eadfd4f8e10a271e46665e68536ab8ae3c865f
|
||||
SIZE (cego-2.35.4.tar.gz) = 1415732
|
||||
TIMESTAMP = 1504989098
|
||||
SHA256 (cego-2.35.8.tar.gz) = 46356414492f8e114d301043e607c3b6821d4ceac24eb49746947fbf7a705307
|
||||
SIZE (cego-2.35.8.tar.gz) = 1415296
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ DISTVERSIONPREFIX= v
|
|||
PORTREVISION= 1
|
||||
CATEGORIES= databases
|
||||
|
||||
MAINTAINER= nbari@dalmp.com
|
||||
MAINTAINER= nbari@tequila.io
|
||||
COMMENT= Database Abstraction Layer for MySQL using PHP
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= ecto
|
||||
PORTVERSION= 2.2.1
|
||||
PORTVERSION= 2.2.2
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= databases
|
||||
PKGNAMEPREFIX= elixir-
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1504379308
|
||||
SHA256 (elixir-ecto-ecto-v2.2.1_GH0.tar.gz) = b7072e48d9f9ca0b4a5527d3c68d3ee385e5bbba2ddc60570bc73790f384fd68
|
||||
SIZE (elixir-ecto-ecto-v2.2.1_GH0.tar.gz) = 354032
|
||||
TIMESTAMP = 1505049179
|
||||
SHA256 (elixir-ecto-ecto-v2.2.2_GH0.tar.gz) = 0898f534210c40ff34cdad0fc9f9faaa0aa14301fe1b2950dcdaa30e13064a5c
|
||||
SIZE (elixir-ecto-ecto-v2.2.2_GH0.tar.gz) = 356170
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= mydumper
|
||||
PORTVERSION= 0.9.1
|
||||
PORTVERSION= 0.9.3
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= databases
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1481642232
|
||||
SHA256 (maxbube-mydumper-v0.9.1_GH0.tar.gz) = 662ae410dbc5072136a9db3476514dc243c2f64189e1074a811ff03af1c05d79
|
||||
SIZE (maxbube-mydumper-v0.9.1_GH0.tar.gz) = 44692
|
||||
TIMESTAMP = 1505043409
|
||||
SHA256 (maxbube-mydumper-v0.9.3_GH0.tar.gz) = 2cd6a074bac7072905bd044ec20955c53c81b10e877ac9c644509940a8d201fb
|
||||
SIZE (maxbube-mydumper-v0.9.3_GH0.tar.gz) = 45320
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= activemodel
|
||||
PORTVERSION= 5.1.3
|
||||
PORTVERSION= 5.1.4
|
||||
CATEGORIES= databases rubygems
|
||||
MASTER_SITES= RG
|
||||
PKGNAMESUFFIX= 5
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1501862665
|
||||
SHA256 (rubygem/activemodel-5.1.3.gem) = ad3aa2e0dd9a003ea530e0806dd685e9c5574bfa36bb28aa3d182577c121babb
|
||||
SIZE (rubygem/activemodel-5.1.3.gem) = 51200
|
||||
TIMESTAMP = 1504891636
|
||||
SHA256 (rubygem/activemodel-5.1.4.gem) = 4008ad8f54e149ddf3a7173aba743bf8b39e4eba517e91ba8704aea739129a63
|
||||
SIZE (rubygem/activemodel-5.1.4.gem) = 51200
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= activemodel
|
||||
PORTVERSION= 5.0.5
|
||||
PORTVERSION= 5.0.6
|
||||
CATEGORIES= databases rubygems
|
||||
MASTER_SITES= RG
|
||||
PKGNAMESUFFIX= 50
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1501604005
|
||||
SHA256 (rubygem/activemodel-5.0.5.gem) = e6b8fc4ffb6ab748b28e5a234d1d2f3e49689b0655166e188014a582b50cdee2
|
||||
SIZE (rubygem/activemodel-5.0.5.gem) = 53760
|
||||
TIMESTAMP = 1504891726
|
||||
SHA256 (rubygem/activemodel-5.0.6.gem) = f8f7d7e18df7fef01c1c299619c60e9b2becafc141450c3482b95ea85b6eebd6
|
||||
SIZE (rubygem/activemodel-5.0.6.gem) = 53760
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= activerecord
|
||||
PORTVERSION= 5.1.3
|
||||
PORTVERSION= 5.1.4
|
||||
CATEGORIES= databases rubygems
|
||||
MASTER_SITES= RG
|
||||
PKGNAMESUFFIX= 5
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1501862673
|
||||
SHA256 (rubygem/activerecord-5.1.3.gem) = e83b04f42519e94a0aa51af06e61ea8aaacfa5cb8d67a1aebaf6f11d96ba7725
|
||||
SIZE (rubygem/activerecord-5.1.3.gem) = 352768
|
||||
TIMESTAMP = 1504891643
|
||||
SHA256 (rubygem/activerecord-5.1.4.gem) = 89be7874c962070c47ce52ea1182b9920c40f74f27da6d43670ed976aeb2413e
|
||||
SIZE (rubygem/activerecord-5.1.4.gem) = 353280
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= activerecord
|
||||
PORTVERSION= 5.0.5
|
||||
PORTVERSION= 5.0.6
|
||||
CATEGORIES= databases rubygems
|
||||
MASTER_SITES= RG
|
||||
PKGNAMESUFFIX= 50
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1501604013
|
||||
SHA256 (rubygem/activerecord-5.0.5.gem) = 89651a138aaf0755d2a9db7cda3e914e93f86b4504bcb31b41fb379e2dde28de
|
||||
SIZE (rubygem/activerecord-5.0.5.gem) = 361984
|
||||
TIMESTAMP = 1504891734
|
||||
SHA256 (rubygem/activerecord-5.0.6.gem) = f0065962596bb8d483e0e308bca2611357e4844e86a9d53a99bbee826aa85a19
|
||||
SIZE (rubygem/activerecord-5.0.6.gem) = 361984
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
PORTNAME= tarantool
|
||||
PORTVERSION= 1.7.4.260
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= http://download.tarantool.org/tarantool/1.7/src/
|
||||
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ start_cmd="${name}_start"
|
|||
stop_cmd="${name}_stop"
|
||||
restart_cmd="${name}_restart"
|
||||
|
||||
INSTANCES=$(find ${tarantool_instances} -type l -name '*.lua')
|
||||
INSTANCES=$(find ${tarantool_instances} -type l -name '*.lua' 2>/dev/null)
|
||||
TDAEMON=%%PREFIX%%/bin/tarantool
|
||||
TCTL=%%PREFIX%%/bin/tarantoolctl
|
||||
|
||||
|
|
|
|||
|
|
@ -2,18 +2,27 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= vobject
|
||||
PORTVERSION= 0.8.1c
|
||||
PORTREVISION= 2
|
||||
PORTVERSION= 0.9.5
|
||||
CATEGORIES= deskutils python
|
||||
MASTER_SITES= http://vobject.skyhouseconsulting.com/
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= jun-g@daemonfreaks.com
|
||||
COMMENT= ICalendar library
|
||||
|
||||
RUN_DEPENDS= py*-dateutil>=1.1:devel/py-dateutil
|
||||
LICENSE= APACHE20
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE-2.0.txt
|
||||
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>=2.4.0:devel/py-dateutil \
|
||||
${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six
|
||||
|
||||
NO_ARCH= yes
|
||||
USES= python
|
||||
USE_PYTHON= distutils autoplist
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= eventable
|
||||
|
||||
do-test:
|
||||
@cd ${WRKSRC} && ${PYTHON_CMD} tests.py
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (vobject-0.8.1c.tar.gz) = 594113117f2017ed837c8f3ce727616f9053baa5a5463a7420c8249b8fc556f5
|
||||
SIZE (vobject-0.8.1c.tar.gz) = 59925
|
||||
TIMESTAMP = 1502588702
|
||||
SHA256 (eventable-vobject-0.9.5_GH0.tar.gz) = 344bd0e2b95c507a1b99fee44f4f2bf3e12991f14b6f181bf98eed42162db764
|
||||
SIZE (eventable-vobject-0.9.5_GH0.tar.gz) = 215577
|
||||
|
|
|
|||
|
|
@ -2,4 +2,4 @@ Vobject parses iCalendar and vCard files into Python data structures,
|
|||
decoding the relevant encodings. Also serializes vobject data structures
|
||||
to iCalendar, vCard, or (expirementally) hCalendar unicode strings.
|
||||
|
||||
WWW: http://vobject.skyhouseconsulting.com/
|
||||
WWW: http://eventable.github.io/vobject/
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@
|
|||
SUBDIR += R-cran-hms
|
||||
SUBDIR += R-cran-iterators
|
||||
SUBDIR += R-cran-itertools
|
||||
SUBDIR += R-cran-lubridate
|
||||
SUBDIR += R-cran-magrittr
|
||||
SUBDIR += R-cran-memoise
|
||||
SUBDIR += R-cran-microbenchmark
|
||||
|
|
@ -5205,6 +5206,7 @@
|
|||
SUBDIR += qtscriptgenerator
|
||||
SUBDIR += quickcheck++
|
||||
SUBDIR += quilt
|
||||
SUBDIR += R-cran-withr
|
||||
SUBDIR += racer
|
||||
SUBDIR += radare2
|
||||
SUBDIR += ragel
|
||||
|
|
|
|||
20
devel/R-cran-lubridate/Makefile
Normal file
20
devel/R-cran-lubridate/Makefile
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# Created by: TAKATSU Tomonari <tota@FreeBSD.org>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= lubridate
|
||||
PORTVERSION= 1.6.0
|
||||
CATEGORIES= devel
|
||||
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
||||
|
||||
MAINTAINER= tota@FreeBSD.org
|
||||
COMMENT= Make Dealing with Dates a Little Easier
|
||||
|
||||
LICENSE= GPLv2
|
||||
|
||||
CRAN_DEPENDS= R-cran-stringr>0:textproc/R-cran-stringr
|
||||
BUILD_DEPENDS= ${CRAN_DEPENDS}
|
||||
RUN_DEPENDS= ${CRAN_DEPENDS}
|
||||
|
||||
USES= cran:auto-plist,compiles
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
devel/R-cran-lubridate/distinfo
Normal file
3
devel/R-cran-lubridate/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1505036380
|
||||
SHA256 (lubridate_1.6.0.tar.gz) = 1a87edfc2c57b22b6d9b49354545dd063e6c03a415544090b531c42423cf2632
|
||||
SIZE (lubridate_1.6.0.tar.gz) = 317672
|
||||
8
devel/R-cran-lubridate/pkg-descr
Normal file
8
devel/R-cran-lubridate/pkg-descr
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
Functions to work with date-times and time-spans: fast and user
|
||||
friendly parsing of date-time data, extraction and updating of
|
||||
components of a date-time (years, months, days, hours, minutes, and
|
||||
seconds), algebraic manipulation on date-time and time-span objects.
|
||||
The 'lubridate' package has a consistent and memorable syntax that
|
||||
makes working with dates easy and fun.
|
||||
|
||||
WWW: https://cran.r-project.org/web/packages/lubridate/
|
||||
16
devel/R-cran-withr/Makefile
Normal file
16
devel/R-cran-withr/Makefile
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# Created by: TAKATSU Tomonari <tota@FreeBSD.org>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= withr
|
||||
PORTVERSION= 2.0.0
|
||||
CATEGORIES= devel
|
||||
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
||||
|
||||
MAINTAINER= tota@FreeBSD.org
|
||||
COMMENT= Run Code 'With' Temporarily Modified Global State
|
||||
|
||||
LICENSE= GPLv2+
|
||||
|
||||
USES= cran:auto-plist
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
devel/R-cran-withr/distinfo
Normal file
3
devel/R-cran-withr/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1505053715
|
||||
SHA256 (withr_2.0.0.tar.gz) = 36be55ca44cdf30517677f2e6e32d8bde4b581027714fb953a3d8fd19f4f9859
|
||||
SIZE (withr_2.0.0.tar.gz) = 16956
|
||||
6
devel/R-cran-withr/pkg-descr
Normal file
6
devel/R-cran-withr/pkg-descr
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
A set of functions to run code 'with' safely and temporarily modified
|
||||
global state. Many of these functions were originally a part of the
|
||||
'devtools' package, this provides a simple package with limited
|
||||
dependencies to provide access to these functions.
|
||||
|
||||
WWW: https://cran.r-project.org/web/packages/withr/
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= elixir-paratize
|
||||
PORTVERSION= 2.1.4
|
||||
PORTVERSION= 2.1.5
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= devel
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1483977502
|
||||
SHA256 (seantanly-elixir-paratize-v2.1.4_GH0.tar.gz) = a21533b55bc1c8b73ce56ac5db6f1a1aeee290e5b5e30d3be0bd70cd5ade6d04
|
||||
SIZE (seantanly-elixir-paratize-v2.1.4_GH0.tar.gz) = 80036
|
||||
TIMESTAMP = 1505049278
|
||||
SHA256 (seantanly-elixir-paratize-v2.1.5_GH0.tar.gz) = c74552987c7522b1745f560bfe0ea2913a3a86d4db1c29dc2f88b2968ab95a87
|
||||
SIZE (seantanly-elixir-paratize-v2.1.5_GH0.tar.gz) = 7523
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= smppex
|
||||
PORTVERSION= 2.0.1
|
||||
PORTVERSION= 2.1.0
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= devel
|
||||
PKGNAMEPREFIX= elixir-
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1504372112
|
||||
SHA256 (savonarola-smppex-v2.0.1_GH0.tar.gz) = 902d8fca8cecb2f5ad7abadbbf0f2e2f9a80fc5a183936f2b5399864a44c4a4f
|
||||
SIZE (savonarola-smppex-v2.0.1_GH0.tar.gz) = 47209
|
||||
TIMESTAMP = 1505048803
|
||||
SHA256 (savonarola-smppex-v2.1.0_GH0.tar.gz) = c5e5f71f27820606dcf81e0aa7b5a8ca5336d2afe58121cf50604106fe4ba194
|
||||
SIZE (savonarola-smppex-v2.1.0_GH0.tar.gz) = 48371
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@ lib/elixir/lib/smppex/ebin/Elixir.SMPPEX.Protocol.Unpack.beam
|
|||
lib/elixir/lib/smppex/ebin/Elixir.SMPPEX.Protocol.beam
|
||||
lib/elixir/lib/smppex/ebin/Elixir.SMPPEX.RawPdu.beam
|
||||
lib/elixir/lib/smppex/ebin/Elixir.SMPPEX.SMPPTimers.beam
|
||||
lib/elixir/lib/smppex/ebin/Elixir.SMPPEX.Session.AutoPduHandler.beam
|
||||
lib/elixir/lib/smppex/ebin/Elixir.SMPPEX.Session.Defaults.beam
|
||||
lib/elixir/lib/smppex/ebin/Elixir.SMPPEX.Session.beam
|
||||
lib/elixir/lib/smppex/ebin/Elixir.SMPPEX.TransportSession.beam
|
||||
|
|
@ -56,6 +57,7 @@ lib/elixir/lib/smppex/lib/smppex/protocol/unpack.ex
|
|||
lib/elixir/lib/smppex/lib/smppex/protocol/unpack/helpers.ex
|
||||
lib/elixir/lib/smppex/lib/smppex/raw_pdu.ex
|
||||
lib/elixir/lib/smppex/lib/smppex/session.ex
|
||||
lib/elixir/lib/smppex/lib/smppex/session/auto_pdu_handler.ex
|
||||
lib/elixir/lib/smppex/lib/smppex/session/defaults.ex
|
||||
lib/elixir/lib/smppex/lib/smppex/smpp_timers.ex
|
||||
lib/elixir/lib/smppex/lib/smppex/transport_session.ex
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= git-modes
|
||||
PORTVERSION= 1.2.4
|
||||
PORTVERSION= 1.2.6
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= devel elisp
|
||||
PKGNAMESUFFIX= -${EMACS_PORT_NAME}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1497344364
|
||||
SHA256 (magit-git-modes-1.2.4_GH0.tar.gz) = 149d91b52ca222e360a9d22bdb6898243e8a3650580846e9ee927a2b81abb977
|
||||
SIZE (magit-git-modes-1.2.4_GH0.tar.gz) = 18087
|
||||
TIMESTAMP = 1504978180
|
||||
SHA256 (magit-git-modes-1.2.6_GH0.tar.gz) = fc02cbf6a152ba51a7c2492e31d038b27d3fc13ea91b6b20a0a9e5582c27e0a3
|
||||
SIZE (magit-git-modes-1.2.6_GH0.tar.gz) = 18086
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ PORTNAME= gitflow
|
|||
PORTVERSION= 1.8.0
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= nbari@dalmp.com
|
||||
MAINTAINER= nbari@tequila.io
|
||||
COMMENT= Git extensions to provide high-level repository operations
|
||||
|
||||
LICENSE= BSD2CLAUSE
|
||||
|
|
|
|||
|
|
@ -9,12 +9,11 @@ MASTER_SITES= http://downloads.dragonlace.net/src/
|
|||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Python package used in Ada testsuites
|
||||
|
||||
LICENSE= GPLv3
|
||||
LICENSE= GPLv3+
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING3
|
||||
|
||||
SNAPSHOT= 20140224
|
||||
USES= python tar:bzip2
|
||||
USE_PYTHON= distutils autoplist
|
||||
|
||||
NO_LICENSES_INSTALL= yes
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
--- setup_helpers.py.orig 2014-02-14 10:41:26.000000000 +0000
|
||||
--- setup_helpers.py.orig 2015-06-21 09:00:45 UTC
|
||||
+++ setup_helpers.py
|
||||
@@ -28,7 +28,7 @@ def build_scripts_gnatpython(root_dir=''
|
||||
os.system('gcc -o %sscripts/rlimit %ssrc/rlimit/rlimit-NT.c' %
|
||||
|
|
|
|||
|
|
@ -2,4 +2,4 @@ GNATPython is a python package to ease development of testsuites and/or
|
|||
build scripts in a portable way. It is an extension to Ada which exports
|
||||
GNAT.Expect.TTY and requires the GNAT AUX compiler.
|
||||
|
||||
WWW: http://forge.open-do.org/projects/gnatpython
|
||||
WWW: https://forge.open-do.org/projects/gnatpython
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= libvirt
|
||||
PORTVERSION= 3.6.0
|
||||
PORTVERSION= 3.7.0
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://libvirt.org/sources/ \
|
||||
ftp://libvirt.org/libvirt/
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1501681119
|
||||
SHA256 (libvirt-3.6.0.tar.xz) = 3a2c97f6950796f300f6a2e0404f4de8e51c3b9430cdb82738439adb0ac59e3d
|
||||
SIZE (libvirt-3.6.0.tar.xz) = 14797704
|
||||
TIMESTAMP = 1504619135
|
||||
SHA256 (libvirt-3.7.0.tar.xz) = 4e7bcb209eeef99f026484293abc733e30ed06dabcdde62c4c3e95f71b2b67ba
|
||||
SIZE (libvirt-3.7.0.tar.xz) = 14803752
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@ man/man8/virtlogd.8.gz
|
|||
%%XEN%%@sample %%ETCDIR%%/libxl.conf.sample
|
||||
%%QEMU%%%%ETCDIR%%/qemu-lockd.conf
|
||||
%%XEN%%%%ETCDIR%%/libxl-lockd.conf
|
||||
%%SASL%%etc/sasl2/libvirt.conf
|
||||
etc/logrotate.d/libvirtd
|
||||
etc/logrotate.d/libvirtd.lxc
|
||||
etc/logrotate.d/libvirtd.qemu
|
||||
|
|
@ -220,6 +221,7 @@ share/augeas/lenses/tests/test_virtlogd.aug
|
|||
%%DOCSDIR%%%%PORTVERSION%%/html/migration-tunnel.png
|
||||
%%DOCSDIR%%%%PORTVERSION%%/html/migration-unmanaged-direct.png
|
||||
%%DOCSDIR%%%%PORTVERSION%%/html/migration.html
|
||||
%%DOCSDIR%%%%PORTVERSION%%/html/mobile.css
|
||||
%%DOCSDIR%%%%PORTVERSION%%/html/news-2005.html
|
||||
%%DOCSDIR%%%%PORTVERSION%%/html/news-2006.html
|
||||
%%DOCSDIR%%%%PORTVERSION%%/html/news-2007.html
|
||||
|
|
@ -235,6 +237,7 @@ share/augeas/lenses/tests/test_virtlogd.aug
|
|||
%%DOCSDIR%%%%PORTVERSION%%/html/news.html
|
||||
%%DOCSDIR%%%%PORTVERSION%%/html/node.gif
|
||||
%%DOCSDIR%%%%PORTVERSION%%/html/nss.html
|
||||
%%DOCSDIR%%%%PORTVERSION%%/html/pci-hotplug.html
|
||||
%%DOCSDIR%%%%PORTVERSION%%/html/php.html
|
||||
%%DOCSDIR%%%%PORTVERSION%%/html/python.html
|
||||
%%DOCSDIR%%%%PORTVERSION%%/html/remote.html
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= libvirt
|
||||
PORTVERSION= 3.6.0
|
||||
PORTVERSION= 3.7.0
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://libvirt.org/sources/python/ \
|
||||
ftp://libvirt.org/libvirt/python/
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1501681470
|
||||
SHA256 (libvirt-python-3.6.0.tar.gz) = ecb9cbc8b1f33b245b04e3a937d8483584ab7a18258b217be96661343a4b1ad0
|
||||
SIZE (libvirt-python-3.6.0.tar.gz) = 181778
|
||||
TIMESTAMP = 1504927640
|
||||
SHA256 (libvirt-python-3.7.0.tar.gz) = 1e4a8a8b08ef8f2502088f26ce3aced415d55ef808d8301dfed023f45154c06f
|
||||
SIZE (libvirt-python-3.7.0.tar.gz) = 182372
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= pefile
|
||||
PORTVERSION= 2017.8.1
|
||||
PORTVERSION= 2017.9.3
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= https://github.com/erocarrera/pefile/releases/download/v${PORTVERSION}/
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1502010353
|
||||
SHA256 (pefile-2017.8.1.tar.gz) = 363f7d1f4d58b7bf8a46dd8b1d48805d270d1ea4dab2526ce183d71ed89075b1
|
||||
SIZE (pefile-2017.8.1.tar.gz) = 60809
|
||||
TIMESTAMP = 1504533185
|
||||
SHA256 (pefile-2017.9.3.tar.gz) = 99d45ef48c290fb74e30507e259b77e2a3ce3a4f4eea35e8089cb24e2c514e4d
|
||||
SIZE (pefile-2017.9.3.tar.gz) = 61722
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= robotframework-pabot
|
||||
PORTVERSION= 0.37
|
||||
PORTVERSION= 0.38
|
||||
CATEGORIES= devel www python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1502406789
|
||||
SHA256 (robotframework-pabot-0.37.tar.gz) = 3665055fc59a4df64d7044ebb390191269117033b19133ee0ba36527c1aa4034
|
||||
SIZE (robotframework-pabot-0.37.tar.gz) = 11282
|
||||
TIMESTAMP = 1504958830
|
||||
SHA256 (robotframework-pabot-0.38.tar.gz) = 77bdb7f9794513b50728069f149e1b70697f69fc3836d6ac93af812a7110ca32
|
||||
SIZE (robotframework-pabot-0.38.tar.gz) = 11560
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= twilio
|
||||
PORTVERSION= 6.6.1
|
||||
PORTVERSION= 6.6.2
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1504343233
|
||||
SHA256 (twilio-6.6.1.tar.gz) = 78e54ed9736a1a1c5b72018246cafd70d6d08aea6727f904404bec080c981e03
|
||||
SIZE (twilio-6.6.1.tar.gz) = 223886
|
||||
TIMESTAMP = 1504942535
|
||||
SHA256 (twilio-6.6.2.tar.gz) = f5bf2a2dbed16cfc3a67567d4cf28d74a7b3634789c1e5f13fcdb1d18f5eea34
|
||||
SIZE (twilio-6.6.2.tar.gz) = 225614
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= actionview
|
||||
PORTVERSION= 5.1.3
|
||||
PORTVERSION= 5.1.4
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
PKGNAMESUFFIX= 5
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1501862680
|
||||
SHA256 (rubygem/actionview-5.1.3.gem) = b744e9cbb2760754fa4c3c2b57c68916756a5f032fa6307ca362379e02a48857
|
||||
SIZE (rubygem/actionview-5.1.3.gem) = 161280
|
||||
TIMESTAMP = 1504891652
|
||||
SHA256 (rubygem/actionview-5.1.4.gem) = 302f398a86337818e6f4225934b136436cab5fdfe2fcd6dd7509b1f595a417c2
|
||||
SIZE (rubygem/actionview-5.1.4.gem) = 161792
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= actionview
|
||||
PORTVERSION= 5.0.5
|
||||
PORTVERSION= 5.0.6
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
PKGNAMESUFFIX= 50
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1501604022
|
||||
SHA256 (rubygem/actionview-5.0.5.gem) = cb4d2928b63f29931a6d05adde78bcf7dac83bf79a05911547068af2da765a6b
|
||||
SIZE (rubygem/actionview-5.0.5.gem) = 152576
|
||||
TIMESTAMP = 1504891742
|
||||
SHA256 (rubygem/actionview-5.0.6.gem) = 6d256fba84733b0dc8a22de7264ceb77ef2ddeae2913632300c76182ecd6d36d
|
||||
SIZE (rubygem/actionview-5.0.6.gem) = 152576
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= activejob
|
||||
PORTVERSION= 5.1.3
|
||||
PORTVERSION= 5.1.4
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
PKGNAMESUFFIX= 5
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1501862687
|
||||
SHA256 (rubygem/activejob-5.1.3.gem) = 15e98c4bf71941ae81f7e4e7c5d9627c09cd9b4d0c1a36bf94b42910eb8874a3
|
||||
SIZE (rubygem/activejob-5.1.3.gem) = 25600
|
||||
TIMESTAMP = 1504891658
|
||||
SHA256 (rubygem/activejob-5.1.4.gem) = f7814fdf4a7592f7f6774f68c5adec53cbcbf825a61bae91219c730ba1cb6bca
|
||||
SIZE (rubygem/activejob-5.1.4.gem) = 25600
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= activejob
|
||||
PORTVERSION= 5.0.5
|
||||
PORTVERSION= 5.0.6
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
PKGNAMESUFFIX= 50
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1501604028
|
||||
SHA256 (rubygem/activejob-5.0.5.gem) = af79fc954e9ddece35ef4975b9a244b2bb48a76e17a19c0dff7233fc75852877
|
||||
SIZE (rubygem/activejob-5.0.5.gem) = 25088
|
||||
TIMESTAMP = 1504891748
|
||||
SHA256 (rubygem/activejob-5.0.6.gem) = 78190e9f3ab0185734a123907cfa1b847e96d4b1303dcb8304e8bb0d26e64bcd
|
||||
SIZE (rubygem/activejob-5.0.6.gem) = 25088
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= activesupport
|
||||
PORTVERSION= 5.1.3
|
||||
PORTVERSION= 5.1.4
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
PKGNAMESUFFIX= 5
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1501862659
|
||||
SHA256 (rubygem/activesupport-5.1.3.gem) = b01fa04345c87526fd22affc4e46dd22bf125c608853d13bf093dab08c45219b
|
||||
SIZE (rubygem/activesupport-5.1.3.gem) = 369664
|
||||
TIMESTAMP = 1504891630
|
||||
SHA256 (rubygem/activesupport-5.1.4.gem) = 9969d4fdc7e1fad82f02f457b03995baa74928e99f73d035564c9eec7426ee69
|
||||
SIZE (rubygem/activesupport-5.1.4.gem) = 370176
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= activesupport
|
||||
PORTVERSION= 5.0.5
|
||||
PORTVERSION= 5.0.6
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
PKGNAMESUFFIX= 50
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1501603999
|
||||
SHA256 (rubygem/activesupport-5.0.5.gem) = 00c714979fffa05846a2d044f24f9569a5ae471b2e20c73fdf3172f1d81edfb1
|
||||
SIZE (rubygem/activesupport-5.0.5.gem) = 363520
|
||||
TIMESTAMP = 1504891720
|
||||
SHA256 (rubygem/activesupport-5.0.6.gem) = e6f98107623edb19cc25ca2aab134b857f291529ab37a1d00b47560d30a6053d
|
||||
SIZE (rubygem/activesupport-5.0.6.gem) = 363520
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= net2ftp
|
||||
PORTVERSION= 1.0
|
||||
PORTVERSION= 1.1
|
||||
CATEGORIES= ftp
|
||||
MASTER_SITES= http://www.net2ftp.com/download/
|
||||
DISTNAME= ${PORTNAME}_v${PORTVERSION}
|
||||
|
|
@ -12,11 +12,10 @@ COMMENT= Web-based FTP client written in PHP
|
|||
|
||||
LICENSE= GPLv2
|
||||
|
||||
USES= zip
|
||||
IGNORE_WITH_PHP= 70
|
||||
USES= php zip
|
||||
NO_BUILD= YES
|
||||
.if !defined(WITHOUT_PHP_DEPENDS)
|
||||
USE_PHP= ftp mysql pcre session zlib
|
||||
USE_PHP= ftp mysqli pcre session zlib
|
||||
.endif
|
||||
|
||||
SUB_FILES+= pkg-message
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (net2ftp_v1.0.zip) = c0071ccec8fd0f1309904f5cacc7d5173b5a3b57bede70ea078d892c676c9c31
|
||||
SIZE (net2ftp_v1.0.zip) = 4460502
|
||||
TIMESTAMP = 1504983980
|
||||
SHA256 (net2ftp_v1.1.zip) = 25b5655dc3df7fa86b5973f88d0e9b14996d0c239ab9d689bd9612997a87c770
|
||||
SIZE (net2ftp_v1.1.zip) = 6302110
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -3,4 +3,4 @@ game Cube. Set in a realistic looking environment, as far as that's possible
|
|||
with this engine, while gameplay stays fast and arcade. This game is all about
|
||||
team oriented multiplayer fun.
|
||||
|
||||
WWW: http://assault.cubers.net/
|
||||
WWW: https://assault.cubers.net/
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
PORTNAME= appleseed
|
||||
DISTVERSION= 1.5.2-beta
|
||||
PORTREVISION= 5
|
||||
PORTREVISION= 7
|
||||
CATEGORIES= graphics
|
||||
|
||||
MAINTAINER= danfe@FreeBSD.org
|
||||
|
|
@ -45,7 +45,7 @@ SUB_FILES= pkg-message
|
|||
SUB_LIST:= ${PLIST_SUB}
|
||||
|
||||
OPTIONS_DEFINE= EXAMPLES OSL DISNEY
|
||||
OPTIONS_DEFAULT= OSL DISNEY
|
||||
OPTIONS_DEFAULT= DISNEY
|
||||
OPTIONS_SUB= yes
|
||||
|
||||
OSL_DESC= Open Shading Language support
|
||||
|
|
@ -55,6 +55,8 @@ EXAMPLES_CMAKE_OFF= -DWITH_SAMPLES:BOOL=OFF
|
|||
|
||||
OSL_CMAKE_ON= -DWITH_OSL:BOOL=ON
|
||||
OSL_LIB_DEPENDS= liboslexec.so:graphics/openshadinglanguage
|
||||
# src/appleseed/libappleseed.so: undefined reference to `typeinfo for OSL::RendererServices'
|
||||
OSL_BROKEN= fails to build against openshadinglanguage-1.8.10
|
||||
|
||||
DISNEY_CMAKE_ON= -DWITH_DISNEY_MATERIAL:BOOL=ON
|
||||
DISNEY_LIB_DEPENDS= libOpenImageIO.so:graphics/openimageio \
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
PORTNAME= blender
|
||||
PORTVERSION= 2.78c
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= graphics games
|
||||
MASTER_SITES= http://download.blender.org/source/ \
|
||||
http://mirror.cs.umn.edu/blender.org/source/ \
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
PORTNAME= luxrender
|
||||
DISTVERSION?= 1.6
|
||||
PORTREVISION= 4
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= https://bitbucket.org/luxrender/lux/get/ \
|
||||
https://bitbucket.org/luxrender/luxrays/get/:lr
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
PORTNAME= opencolorio
|
||||
PORTVERSION= 1.0.9
|
||||
PORTREVISION?= 1
|
||||
PORTREVISION?= 2
|
||||
CATEGORIES= graphics multimedia
|
||||
|
||||
MAINTAINER?= FreeBSD@Shaneware.biz
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= openimageio
|
||||
PORTVERSION= 1.7.10
|
||||
PORTVERSION= 1.7.17
|
||||
DISTVERSIONPREFIX= Release-
|
||||
CATEGORIES?= graphics multimedia
|
||||
|
||||
|
|
@ -107,9 +107,9 @@ post-patch:
|
|||
|
||||
post-install:
|
||||
.if ${SLAVE_PORT} == no
|
||||
${LN} -sf libOpenImageIO.so.1.6 \
|
||||
${LN} -sf libOpenImageIO.so.1.7 \
|
||||
${STAGEDIR}${PREFIX}/lib/libOpenImageIO.so.1
|
||||
${LN} -sf libOpenImageIO_Util.so.1.6 \
|
||||
${LN} -sf libOpenImageIO_Util.so.1.7 \
|
||||
${STAGEDIR}${PREFIX}/lib/libOpenImageIO_Util.so.1
|
||||
.endif
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1484843803
|
||||
SHA256 (OpenImageIO-oiio-Release-1.7.10_GH0.tar.gz) = ec5c567b6b4078d17df22262b764ebb7c09ce5b69f0bc2095b51e56c7070f5b7
|
||||
SIZE (OpenImageIO-oiio-Release-1.7.10_GH0.tar.gz) = 26188475
|
||||
TIMESTAMP = 1504403179
|
||||
SHA256 (OpenImageIO-oiio-Release-1.7.17_GH0.tar.gz) = 669c59d06399dd882c3e2469bb3a4b33d537db150f6fe056495c3429b5c3838f
|
||||
SIZE (OpenImageIO-oiio-Release-1.7.17_GH0.tar.gz) = 27164765
|
||||
|
|
|
|||
|
|
@ -2,9 +2,8 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= openshadinglanguage
|
||||
PORTVERSION= 1.7.5
|
||||
PORTVERSION= 1.8.10
|
||||
DISTVERSIONPREFIX= Release-
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= graphics devel
|
||||
|
||||
MAINTAINER= FreeBSD@Shaneware.biz
|
||||
|
|
@ -12,21 +11,20 @@ COMMENT= Advanced shading language for production GI renderers
|
|||
|
||||
LICENSE= BSD3CLAUSE
|
||||
|
||||
BUILD_DEPENDS= llvm-config34:devel/llvm34 \
|
||||
clang34>=3.4_1:lang/clang34
|
||||
BUILD_DEPENDS= llvm-config40:devel/llvm40
|
||||
LIB_DEPENDS= libboost_thread.so:devel/boost-libs \
|
||||
libIlmImf.so:graphics/OpenEXR \
|
||||
libImath.so:graphics/ilmbase \
|
||||
libOpenImageIO.so:graphics/openimageio
|
||||
RUN_DEPENDS= llvm-config34:devel/llvm34
|
||||
RUN_DEPENDS= llvm-config40:devel/llvm40
|
||||
|
||||
USES= bison cmake:outsource compiler:c++11-lib ncurses
|
||||
USES= bison cmake:outsource compiler:c++11-lang ncurses
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= imageworks
|
||||
GH_PROJECT= OpenShadingLanguage
|
||||
|
||||
CMAKE_ARGS= -DLLVM_CONFIG:STRING="${LOCALBASE}/bin/llvm-config34" \
|
||||
-DENABLERTTI:BOOL=ON
|
||||
CMAKE_ARGS= -DLLVM_CONFIG:STRING="${LOCALBASE}/bin/llvm-config40" \
|
||||
-DENABLERTTI:BOOL=OFF -DUSE_BOOST_WAVE:BOOL=OFF
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
post-patch:
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1478806482
|
||||
SHA256 (imageworks-OpenShadingLanguage-Release-1.7.5_GH0.tar.gz) = 46226af0592297172e856635eac50327255f1a307244162c1feb47581e72a109
|
||||
SIZE (imageworks-OpenShadingLanguage-Release-1.7.5_GH0.tar.gz) = 13739852
|
||||
TIMESTAMP = 1503300284
|
||||
SHA256 (imageworks-OpenShadingLanguage-Release-1.8.10_GH0.tar.gz) = 5b9ad6814fd55e68f4ac50e4214120629ab9175142dc93aac350d0f54bea745a
|
||||
SIZE (imageworks-OpenShadingLanguage-Release-1.8.10_GH0.tar.gz) = 14572479
|
||||
|
|
|
|||
|
|
@ -1,16 +1,21 @@
|
|||
--- src/doc/CMakeLists.txt.orig 2015-03-10 21:57:05 UTC
|
||||
--- src/doc/CMakeLists.txt.orig 2017-07-01 03:52:54 UTC
|
||||
+++ src/doc/CMakeLists.txt
|
||||
@@ -1,11 +1,11 @@
|
||||
set (public_docs osl-languagespec.pdf)
|
||||
# Some day: CLA-INDIVIDUAL CLA-CORPORATE
|
||||
@@ -3,15 +3,15 @@ set (public_docs osl-languagespec.pdf
|
||||
markdeep.min.js
|
||||
)
|
||||
|
||||
-install (FILES ${public_docs} DESTINATION doc COMPONENT documentation)
|
||||
+install (FILES ${public_docs} DESTINATION ${CMAKE_INSTALL_PREFIX}/share/openshadinglanguage COMPONENT documentation)
|
||||
|
||||
install ( FILES "${PROJECT_SOURCE_DIR}/LICENSE"
|
||||
"${PROJECT_SOURCE_DIR}/INSTALL"
|
||||
"${PROJECT_SOURCE_DIR}/CHANGES"
|
||||
"${PROJECT_SOURCE_DIR}/INSTALL.md"
|
||||
"${PROJECT_SOURCE_DIR}/CHANGES.md"
|
||||
"${PROJECT_SOURCE_DIR}/README.md"
|
||||
- DESTINATION . )
|
||||
- DESTINATION doc )
|
||||
+ DESTINATION ${CMAKE_INSTALL_PREFIX}/share/openshadinglanguage )
|
||||
|
||||
|
||||
file (GLOB testshade_figures "Figures/testshade/*.jpg")
|
||||
install (FILES ${testshade_figures}
|
||||
- DESTINATION doc/Figures/testshade )
|
||||
+ DESTINATION ${CMAKE_INSTALL_PREFIX}/share/openshadinglanguage/Figures/testshade )
|
||||
|
|
|
|||
|
|
@ -16,20 +16,31 @@ include/OSL/oslclosure.h
|
|||
include/OSL/oslcomp.h
|
||||
include/OSL/oslconfig.h
|
||||
include/OSL/oslexec.h
|
||||
include/OSL/oslnoise.h
|
||||
include/OSL/oslquery.h
|
||||
include/OSL/oslversion.h
|
||||
include/OSL/rendererservices.h
|
||||
include/OSL/shaderglobals.h
|
||||
lib/liboslcomp.so
|
||||
lib/liboslexec.so
|
||||
lib/liboslnoise.so
|
||||
lib/liboslquery.so
|
||||
lib/libtestshade.so
|
||||
lib/osl.imageio.so
|
||||
%%DATADIR%%/CHANGES
|
||||
%%DATADIR%%/INSTALL
|
||||
%%DATADIR%%/CHANGES.md
|
||||
%%DATADIR%%/Figures/testshade/fBm_default.jpg
|
||||
%%DATADIR%%/Figures/testshade/fBm_freq.jpg
|
||||
%%DATADIR%%/Figures/testshade/fBm_gain.jpg
|
||||
%%DATADIR%%/Figures/testshade/fBm_lac.jpg
|
||||
%%DATADIR%%/Figures/testshade/fBm_octaves.jpg
|
||||
%%DATADIR%%/Figures/testshade/makenoise.jpg
|
||||
%%DATADIR%%/Figures/testshade/noisetex.jpg
|
||||
%%DATADIR%%/Figures/testshade/show_uv.jpg
|
||||
%%DATADIR%%/INSTALL.md
|
||||
%%DATADIR%%/LICENSE
|
||||
%%DATADIR%%/README.md
|
||||
%%DATADIR%%/markdeep.min.js
|
||||
%%DATADIR%%/osl-languagespec.pdf
|
||||
%%DATADIR%%/README.md
|
||||
%%DATADIR%%/shaders/emitter.osl
|
||||
%%DATADIR%%/shaders/emitter.oso
|
||||
%%DATADIR%%/shaders/glass.osl
|
||||
|
|
@ -44,3 +55,4 @@ lib/osl.imageio.so
|
|||
%%DATADIR%%/shaders/stdosl.h
|
||||
%%DATADIR%%/shaders/ubersurface.osl
|
||||
%%DATADIR%%/shaders/ubersurface.oso
|
||||
%%DATADIR%%/testshade.md.html
|
||||
|
|
|
|||
|
|
@ -1,23 +1,21 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= wayland-protocols
|
||||
PORTVERSION= 1.7
|
||||
PORTVERSION= 1.10
|
||||
CATEGORIES= graphics wayland
|
||||
MASTER_SITES= https://wayland.freedesktop.org/releases/
|
||||
|
||||
MAINTAINER= kwm@FreeBSD.org
|
||||
COMMENT= Wayland protocols
|
||||
|
||||
BUILD_DEPENDS= wayland-scanner:graphics/wayland
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
USES= tar:xz pathfix
|
||||
GNU_CONFIGURE= yes
|
||||
BUILD_DEPENDS= wayland-scanner:graphics/wayland
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|$${datadir}/pkgconfig|$${prefix}/libdata/pkgconfig|g' \
|
||||
${WRKSRC}/configure
|
||||
USES= tar:xz
|
||||
NO_ARCH= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --with-noarch-pkgconfigdir='$${prefix}/libdata/pkgconfig'
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1486828668
|
||||
SHA256 (wayland-protocols-1.7.tar.xz) = 635f2a937d318f1fecb97b54074ca211486e38af943868dd0fa82ea38d091c1f
|
||||
SIZE (wayland-protocols-1.7.tar.xz) = 113220
|
||||
TIMESTAMP = 1499756006
|
||||
SHA256 (wayland-protocols-1.10.tar.xz) = 5719c51d7354864983171c5083e93a72ac99229e2b460c4bb10513de08839c0a
|
||||
SIZE (wayland-protocols-1.10.tar.xz) = 117652
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ libdata/pkgconfig/wayland-protocols.pc
|
|||
%%DATADIR%%/unstable/fullscreen-shell/fullscreen-shell-unstable-v1.xml
|
||||
%%DATADIR%%/unstable/idle-inhibit/idle-inhibit-unstable-v1.xml
|
||||
%%DATADIR%%/unstable/input-method/input-method-unstable-v1.xml
|
||||
%%DATADIR%%/unstable/keyboard-shortcuts-inhibit/keyboard-shortcuts-inhibit-unstable-v1.xml
|
||||
%%DATADIR%%/unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml
|
||||
%%DATADIR%%/unstable/pointer-constraints/pointer-constraints-unstable-v1.xml
|
||||
%%DATADIR%%/unstable/pointer-gestures/pointer-gestures-unstable-v1.xml
|
||||
|
|
@ -12,5 +13,7 @@ libdata/pkgconfig/wayland-protocols.pc
|
|||
%%DATADIR%%/unstable/tablet/tablet-unstable-v2.xml
|
||||
%%DATADIR%%/unstable/text-input/text-input-unstable-v1.xml
|
||||
%%DATADIR%%/unstable/xdg-foreign/xdg-foreign-unstable-v1.xml
|
||||
%%DATADIR%%/unstable/xdg-output/xdg-output-unstable-v1.xml
|
||||
%%DATADIR%%/unstable/xdg-shell/xdg-shell-unstable-v5.xml
|
||||
%%DATADIR%%/unstable/xdg-shell/xdg-shell-unstable-v6.xml
|
||||
%%DATADIR%%/unstable/xwayland-keyboard-grab/xwayland-keyboard-grab-unstable-v1.xml
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= ajaxzip2
|
||||
PORTVERSION= 20170630
|
||||
PORTVERSION= 20170831
|
||||
CATEGORIES= japanese
|
||||
MASTER_SITES= LOCAL/kuriyama
|
||||
PKGNAMESUFFIX= -data
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
TIMESTAMP = 1499468838
|
||||
SHA256 (ken_all-20170630.zip) = 4f011125c3858be43984339507c387fb3128ca82eca88b6b4298050603c81513
|
||||
SIZE (ken_all-20170630.zip) = 1685486
|
||||
SHA256 (jigyosyo-20170630.zip) = c97770f181344cd07acec7c3d91ef2c62e6ce29c75fda01beedd6d436fc851cd
|
||||
SIZE (jigyosyo-20170630.zip) = 757266
|
||||
TIMESTAMP = 1505048912
|
||||
SHA256 (ken_all-20170831.zip) = 872cbaf8294d0260ed0f093ff041d4489c55869669e3964d0c89d291d066329e
|
||||
SIZE (ken_all-20170831.zip) = 1685767
|
||||
SHA256 (jigyosyo-20170831.zip) = 30a8b941aa67b3dff99e9ae210dd31f0a9c9db542f83075dc2759f55e70d5966
|
||||
SIZE (jigyosyo-20170831.zip) = 758015
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= zipcodes
|
||||
PORTVERSION= 20170630
|
||||
PORTVERSION= 20170831
|
||||
CATEGORIES= japanese
|
||||
MASTER_SITES= LOCAL/kuriyama
|
||||
DISTFILES= ken_all-${PORTVERSION_K}.zip jigyosyo-${PORTVERSION_J}.zip
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
TIMESTAMP = 1499468775
|
||||
SHA256 (ken_all-20170630.zip) = 4f011125c3858be43984339507c387fb3128ca82eca88b6b4298050603c81513
|
||||
SIZE (ken_all-20170630.zip) = 1685486
|
||||
SHA256 (jigyosyo-20170630.zip) = c97770f181344cd07acec7c3d91ef2c62e6ce29c75fda01beedd6d436fc851cd
|
||||
SIZE (jigyosyo-20170630.zip) = 757266
|
||||
TIMESTAMP = 1505048918
|
||||
SHA256 (ken_all-20170831.zip) = 872cbaf8294d0260ed0f093ff041d4489c55869669e3964d0c89d291d066329e
|
||||
SIZE (ken_all-20170831.zip) = 1685767
|
||||
SHA256 (jigyosyo-20170831.zip) = 30a8b941aa67b3dff99e9ae210dd31f0a9c9db542f83075dc2759f55e70d5966
|
||||
SIZE (jigyosyo-20170831.zip) = 758015
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= gcc
|
||||
PORTVERSION= 5.4.1.s20170829
|
||||
PORTVERSION= 5.4.1.s20170905
|
||||
CATEGORIES= lang java
|
||||
MASTER_SITES= GCC/snapshots/${DIST_VERSION}
|
||||
PKGNAMESUFFIX= ${SUFFIX}-devel
|
||||
|
|
@ -15,6 +15,7 @@ LICENSE= GPLv3 GPLv3RLE
|
|||
LICENSE_COMB= multi
|
||||
|
||||
ONLY_FOR_ARCHS= aarch64 amd64 arm armv6 i386 powerpc powerpc64 sparc64
|
||||
|
||||
LIB_DEPENDS= libgmp.so:math/gmp \
|
||||
libmpfr.so:math/mpfr \
|
||||
libmpc.so:math/mpc
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1504125205
|
||||
SHA256 (gcc-5-20170829.tar.xz) = db247faf2738f85a002ee9e7b5941bf1f8a4b45d81703535188918ca9b48fcd4
|
||||
SIZE (gcc-5-20170829.tar.xz) = 69373312
|
||||
TIMESTAMP = 1504873792
|
||||
SHA256 (gcc-5-20170905.tar.xz) = ae7aa2d791329599bdebaf6f3a1aa4ec56194e8b0a6f5bcb5bca2154a6a17bec
|
||||
SIZE (gcc-5-20170905.tar.xz) = 69376996
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= gcc
|
||||
PORTVERSION= 6.4.1.s20170830
|
||||
PORTVERSION= 6.4.1.s20170906
|
||||
CATEGORIES= lang java
|
||||
MASTER_SITES= GCC/snapshots/${DIST_VERSION}
|
||||
PKGNAMESUFFIX= ${SUFFIX}-devel
|
||||
|
|
@ -15,6 +15,7 @@ LICENSE= GPLv3 GPLv3RLE
|
|||
LICENSE_COMB= multi
|
||||
|
||||
ONLY_FOR_ARCHS= aarch64 amd64 arm armv6 i386 powerpc powerpc64 sparc64
|
||||
|
||||
LIB_DEPENDS= libgmp.so:math/gmp \
|
||||
libmpfr.so:math/mpfr \
|
||||
libmpc.so:math/mpc
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1504350601
|
||||
SHA256 (gcc-6-20170830.tar.xz) = 169a3bd16c43ed55b820fe50ee603671b4003956abc1cbed7ca4df51f23f404a
|
||||
SIZE (gcc-6-20170830.tar.xz) = 72586392
|
||||
TIMESTAMP = 1504873750
|
||||
SHA256 (gcc-6-20170906.tar.xz) = dd3f78d357a3dd88b6a6cd338fd03b844ada4e8e732257ad4135d153cac37585
|
||||
SIZE (gcc-6-20170906.tar.xz) = 72592608
|
||||
|
|
|
|||
|
|
@ -13,6 +13,8 @@ COMMENT= GNU Compiler Collection 7
|
|||
LICENSE= GPLv3 GPLv3RLE
|
||||
LICENSE_COMB= multi
|
||||
|
||||
ONLY_FOR_ARCHS= aarch64 amd64 arm armv6 i386 powerpc powerpc64 sparc64
|
||||
|
||||
LIB_DEPENDS= libgmp.so:math/gmp \
|
||||
libmpfr.so:math/mpfr \
|
||||
libmpc.so:math/mpc
|
||||
|
|
@ -27,7 +29,6 @@ CPE_VENDOR= gnu
|
|||
|
||||
GCC_VERSION= ${PORTVERSION}
|
||||
SUFFIX= ${PORTVERSION:C/([0-9]+).*/\1/}
|
||||
ONLY_FOR_ARCHS= aarch64 amd64 arm armv6 i386 powerpc powerpc64 sparc64
|
||||
USES= compiler cpe gmake iconv libtool makeinfo perl5 tar:xz
|
||||
USE_BINUTILS= yes
|
||||
USE_PERL5= build
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= tcbasic
|
||||
PORTVERSION= 2.1.0
|
||||
PORTVERSION= 2.2.0
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= https://github.com/tcort/${PORTNAME}/releases/download/v${PORTVERSION}/
|
||||
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (tcbasic-2.1.0.tar.gz) = 00b1535237cb7fdea30acbed063cca3b82df221ce5d1b69104ae4dbc7d7ea194
|
||||
SIZE (tcbasic-2.1.0.tar.gz) = 119570
|
||||
TIMESTAMP = 1505046706
|
||||
SHA256 (tcbasic-2.2.0.tar.gz) = 0fd87000f5c192ead1d02a2169e46eb6316660e89113ab3e901426e585a0054b
|
||||
SIZE (tcbasic-2.2.0.tar.gz) = 135017
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
tcbasic implements a small subset of BASIC known as Tiny BASIC.
|
||||
It provides the following statements and commands: INPUT, PRINT,
|
||||
LET, GOTO, GOSUB, RETURN, IF, END, CLEAR, LIST, RUN, and STOP.
|
||||
Integer and floating point arithmetic is supported, and strings
|
||||
may be PRINTed. The following built-in functions are provided:
|
||||
SIN, COS, TAN, COT, ATN, EXP, LOG, ABS, SQR, RND.
|
||||
tcbasic implements a small subset of BASIC known as Tiny BASIC
|
||||
with added support for floating point numbers and many of the
|
||||
built-in mathematical functions in Dartmouth BASIC. It supports
|
||||
basic I/O, flow control, subroutines, and debug tracing.
|
||||
|
||||
The small size of the language make it easy to learn and master
|
||||
while providing all of the building blocks needed to develop many
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= mutt
|
||||
PORTVERSION= 1.8.3
|
||||
PORTVERSION= 1.9.0
|
||||
PORTREVISION?= 0
|
||||
CATEGORIES+= mail ipv6
|
||||
MASTER_SITES= ftp://ftp.mutt.org/pub/mutt/ \
|
||||
|
|
@ -40,7 +40,7 @@ CONFIGURE_ARGS= --disable-fcntl --with-ssl=${OPENSSLBASE} \
|
|||
--enable-external-dotlock --enable-pop --enable-imap \
|
||||
--enable-compressed
|
||||
|
||||
USES+= cpe shebangfix ssl
|
||||
USES+= cpe ncurses shebangfix ssl
|
||||
SHEBANG_FILES= doc/gen-map-doc smime_keys.pl contrib/smime_keys_test.pl
|
||||
|
||||
.if defined(MUTT_CONFIGURE_ARGS)
|
||||
|
|
@ -59,9 +59,8 @@ OPTIONS_EXCLUDE= NLS DOCS EXAMPLES
|
|||
OPTIONS_DEFINE= SASL DEBUG DOCS EXAMPLES FLOCK \
|
||||
FORCEBASE64 GPGME GREETING_PATCH HTML ICONV IDN IFDEF_PATCH \
|
||||
LOCALES_FIX MAILBOX_MANPAGES MAILDIR_MTIME_PATCH \
|
||||
NLS NNTP PARENT_CHILD_MATCH_PATCH QUOTE_PATCH \
|
||||
REVERSE_REPLY_PATCH SIDEBAR SMART_DATE SMIME_OUTLOOK_COMPAT \
|
||||
SMTP URLVIEW XML
|
||||
NLS NNTP QUOTE_PATCH REVERSE_REPLY_PATCH SIDEBAR SMART_DATE \
|
||||
SMIME_OUTLOOK_COMPAT SMTP URLVIEW XML
|
||||
|
||||
OPTIONS_SINGLE= GSSAPI HCACHE SCREEN
|
||||
OPTIONS_RADIO= SPELL
|
||||
|
|
@ -84,7 +83,6 @@ MAILBOX_MANPAGES_DESC= Install mbox.5/mmdf.5 manpages
|
|||
MAILDIR_MTIME_PATCH_DESC= Maildir mtime patch
|
||||
NCURSES_DESC= Ncurses support
|
||||
NLS_DESC= Native language support (implies ICONV)
|
||||
PARENT_CHILD_MATCH_PATCH_DESC= Parent/child match
|
||||
QUOTE_PATCH_DESC= Extended quoting
|
||||
REVERSE_REPLY_PATCH_DESC= Reverse_reply
|
||||
SIDEBAR_DESC= Sidebar support
|
||||
|
|
@ -102,9 +100,8 @@ XML_DESC= Use XML tools for rebuilding documentation
|
|||
|
||||
OPTIONS_DEFAULT= GPGME HTML HCACHE_BDB ICONV IDN \
|
||||
IFDEF_PATCH LOCALES_FIX MAILBOX_MANPAGES MAILDIR_MTIME_PATCH \
|
||||
NLS NCURSES PARENT_CHILD_MATCH_PATCH QUOTE_PATCH \
|
||||
REVERSE_REPLY_PATCH SMART_DATE SMIME_OUTLOOK_COMPAT SASL SMTP \
|
||||
URLVIEW XML GSSAPI_NONE
|
||||
NLS NCURSES QUOTE_PATCH REVERSE_REPLY_PATCH SMART_DATE \
|
||||
SMIME_OUTLOOK_COMPAT SASL SMTP URLVIEW XML GSSAPI_NONE
|
||||
.endif
|
||||
|
||||
RUN_DEPENDS+= ${LOCALBASE}/etc/mime.types:misc/mime-support
|
||||
|
|
@ -172,7 +169,6 @@ ICONV_CONFIGURE_ON= ${ICONV_CONFIGURE_ARG}
|
|||
ICONV_CONFIGURE_OFF= --disable-iconv
|
||||
|
||||
ASPELL_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-aspell
|
||||
PARENT_CHILD_MATCH_PATCH_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-parent-child-match
|
||||
REVERSE_REPLY_PATCH_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-reverse_reply
|
||||
|
||||
SASL_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2
|
||||
|
|
@ -203,11 +199,11 @@ GREETING_PATCH_PATCHFILES= mutt-${GREETING_PATCH_VERSION}.vc.greeting:vc
|
|||
QUOTE_PATCH_PATCHFILES= patch-${VVV_PATCH_VERSION}.vvv.initials.gz:vvv \
|
||||
patch-${VVV_PATCH_VERSION}.vvv.quote.gz:vvv
|
||||
|
||||
NNTP_DISTFILES= patch-${VVV_PATCH_VERSION}.vvv.nntp.gz:vvv \
|
||||
patch-${VVV_PATCH_VERSION}.vvv.nntp_ru.gz:vvv
|
||||
NNTP_PATCHFILES= patch-${VVV_PATCH_VERSION}.vvv.nntp.gz:-p1:vvv
|
||||
NNTP_CONFIGURE_ON= --enable-nntp
|
||||
NNTP_VARS= XML_NEEDED=yes
|
||||
NNTP_CATEGORIES= news
|
||||
NNTP_BROKEN= NNTP fails to apply to 1.9.0
|
||||
|
||||
SIDEBAR_CONFIGURE_ENABLE= sidebar
|
||||
|
||||
|
|
@ -216,7 +212,7 @@ DOCS_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-doc-ref
|
|||
.include <bsd.port.options.mk>
|
||||
|
||||
# un/comment as each VERSION is created for PORTVERSION
|
||||
VVV_PATCH_VERSION= 1.8.2
|
||||
VVV_PATCH_VERSION= 1.8.3
|
||||
#GREETING_PATCH_VERSION= 1.8.3
|
||||
|
||||
.if !defined(VVV_PATCH_VERSION)
|
||||
|
|
@ -240,12 +236,6 @@ LDFLAGS+= -L${LOCALBASE}/lib -Wl,-rpath=${LOCALBASE}/lib:/usr/lib -ltinfow
|
|||
CFLAGS+= ${CFLAGS_ADD}
|
||||
LDFLAGS+= ${LDFLAGS_ADD}
|
||||
|
||||
pre-patch-NNTP-on:
|
||||
@${GUNZIP_CMD} -c ${DISTDIR}/${DIST_SUBDIR}/patch-${VVV_PATCH_VERSION}.vvv.nntp.gz > ${WRKDIR}/patch-nntp
|
||||
@${REINPLACE_CMD} -E '/^diff.*\/doc\/manual.txt$$/,/^diff/d' \
|
||||
${WRKDIR}/patch-nntp
|
||||
@${PATCH} -d ${PATCH_WRKSRC} ${PATCH_ARGS} -p1 < ${WRKDIR}/patch-nntp
|
||||
|
||||
post-patch-NNTP-on:
|
||||
.if ${PORT_OPTIONS:MMAILDIR_MTIME_PATCH}
|
||||
@${PATCH} -d ${PATCH_WRKSRC} ${PATCH_ARGS} -p1 < ${PATCHDIR}/extra-patch-maildir-mtime-nntp
|
||||
|
|
|
|||
|
|
@ -1,15 +1,13 @@
|
|||
TIMESTAMP = 1496461712
|
||||
SHA256 (mutt/mutt-1.8.3.tar.gz) = 9b81746d67ffeca5ea44f60893b70dc93c86d4bc10187d4dd360185e4d42ed42
|
||||
SIZE (mutt/mutt-1.8.3.tar.gz) = 4122012
|
||||
SHA256 (mutt/patch-1.8.2.vvv.nntp.gz) = 940cf7fd4fbea39f48bd5594180a7be5c3cc6714d62eeb3f2e5fbc0ab4b3545b
|
||||
SIZE (mutt/patch-1.8.2.vvv.nntp.gz) = 60675
|
||||
SHA256 (mutt/patch-1.8.2.vvv.nntp_ru.gz) = c85a288ed6864c311cbc70b31bab9f0d0d1051846becb5e8fe737609fd939a9c
|
||||
SIZE (mutt/patch-1.8.2.vvv.nntp_ru.gz) = 3465
|
||||
TIMESTAMP = 1504471107
|
||||
SHA256 (mutt/mutt-1.9.0.tar.gz) = ec6d7595d3a1f26ae9f565b5ba5ffee94f9b2dc0683b0014684f2dc874f9e2d4
|
||||
SIZE (mutt/mutt-1.9.0.tar.gz) = 4191932
|
||||
SHA256 (mutt/date-conditional.diff) = 8936c5fe7a2a62a68f2a8d001c7a6dddf138c48186a338482b6639507ba9133e
|
||||
SIZE (mutt/date-conditional.diff) = 2023
|
||||
SHA256 (mutt/mutt-1.8.3.vc.greeting) = 73113eb0a3eb761755315ab03c0b6bcb316c09603461a1f8a3f54bd870a576cc
|
||||
SIZE (mutt/mutt-1.8.3.vc.greeting) = 4499
|
||||
SHA256 (mutt/patch-1.8.2.vvv.initials.gz) = e929c863dd012624b2ac724cd296f346374cd2522f256020fa458e94890ca750
|
||||
SIZE (mutt/patch-1.8.2.vvv.initials.gz) = 686
|
||||
SHA256 (mutt/patch-1.8.2.vvv.quote.gz) = 03b1aa4aa9152b968fc1709e68207073df62b9b1a5da43ff1d680d6dfe17fe35
|
||||
SIZE (mutt/patch-1.8.2.vvv.quote.gz) = 1282
|
||||
SHA256 (mutt/mutt-1.9.0.vc.greeting) = b4ac804c24a07c7eb8330ebfdc94cdbf6fd7a4671badfb32fb611df09c008317
|
||||
SIZE (mutt/mutt-1.9.0.vc.greeting) = 4534
|
||||
SHA256 (mutt/patch-1.8.3.vvv.nntp.gz) = 940cf7fd4fbea39f48bd5594180a7be5c3cc6714d62eeb3f2e5fbc0ab4b3545b
|
||||
SIZE (mutt/patch-1.8.3.vvv.nntp.gz) = 60675
|
||||
SHA256 (mutt/patch-1.8.3.vvv.initials.gz) = e929c863dd012624b2ac724cd296f346374cd2522f256020fa458e94890ca750
|
||||
SIZE (mutt/patch-1.8.3.vvv.initials.gz) = 686
|
||||
SHA256 (mutt/patch-1.8.3.vvv.quote.gz) = 03b1aa4aa9152b968fc1709e68207073df62b9b1a5da43ff1d680d6dfe17fe35
|
||||
SIZE (mutt/patch-1.8.3.vvv.quote.gz) = 1282
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
--- PATCHES.orig 2017-06-03 23:06:11 UTC
|
||||
--- PATCHES.orig 2017-09-04 23:34:26 UTC
|
||||
+++ PATCHES
|
||||
@@ -0,0 +1 @@
|
||||
+patch-1.5.4.cd.ifdef.1
|
||||
--- init.c.orig 2017-05-30 19:27:52 UTC
|
||||
--- init.c.orig 2017-09-04 23:34:22 UTC
|
||||
+++ init.c
|
||||
@@ -656,6 +656,52 @@ static mbchar_table *parse_mbchar_table
|
||||
return t;
|
||||
|
|
@ -57,9 +57,9 @@
|
|||
static int parse_unignore (BUFFER *buf, BUFFER *s, unsigned long data, BUFFER *err)
|
||||
{
|
||||
do
|
||||
--- init.h.orig 2017-06-03 23:06:11 UTC
|
||||
--- init.h.orig 2017-09-04 23:34:22 UTC
|
||||
+++ init.h
|
||||
@@ -3904,6 +3904,7 @@ static int parse_lists (BUFFER *, BUFFER
|
||||
@@ -4037,6 +4037,7 @@ static int parse_lists (BUFFER *, BUFFER
|
||||
static int parse_unlists (BUFFER *, BUFFER *, unsigned long, BUFFER *);
|
||||
static int parse_alias (BUFFER *, BUFFER *, unsigned long, BUFFER *);
|
||||
static int parse_unalias (BUFFER *, BUFFER *, unsigned long, BUFFER *);
|
||||
|
|
@ -67,7 +67,7 @@
|
|||
static int parse_ignore (BUFFER *, BUFFER *, unsigned long, BUFFER *);
|
||||
static int parse_unignore (BUFFER *, BUFFER *, unsigned long, BUFFER *);
|
||||
static int parse_source (BUFFER *, BUFFER *, unsigned long, BUFFER *);
|
||||
@@ -3966,6 +3967,7 @@ const struct command_t Commands[] = {
|
||||
@@ -4099,6 +4100,7 @@ const struct command_t Commands[] = {
|
||||
{ "hdr_order", parse_list, UL &HeaderOrderList },
|
||||
#ifdef HAVE_ICONV
|
||||
{ "iconv-hook", mutt_parse_hook, MUTT_ICONVHOOK },
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
--- PATCHES.orig 2017-06-03 22:37:15 UTC
|
||||
+++ PATCHES
|
||||
--- PATCHES.orig 2017-09-04 15:19:31.167205000 -0400
|
||||
+++ PATCHES 2017-09-04 15:19:31.168636000 -0400
|
||||
@@ -0,0 +1 @@
|
||||
+patch-1.5.7.ust.maildir-mtime.2
|
||||
--- browser.c.orig 2017-06-03 22:37:03 UTC
|
||||
+++ browser.c
|
||||
--- browser.c.orig 2017-09-04 15:19:27.714342000 -0400
|
||||
+++ browser.c 2017-09-04 15:19:31.178678000 -0400
|
||||
@@ -32,6 +32,7 @@
|
||||
#ifdef USE_IMAP
|
||||
#include "imap.h"
|
||||
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <dirent.h>
|
||||
@@ -413,6 +414,21 @@ static void init_state (struct browser_s
|
||||
@@ -413,6 +414,21 @@
|
||||
menu->data = state->entry;
|
||||
}
|
||||
|
||||
|
|
@ -34,7 +34,7 @@
|
|||
static int examine_directory (MUTTMENU *menu, struct browser_state *state,
|
||||
char *d, const char *prefix)
|
||||
{
|
||||
@@ -476,6 +492,7 @@ static int examine_directory (MUTTMENU *
|
||||
@@ -476,6 +492,7 @@
|
||||
tmp = Incoming;
|
||||
while (tmp && mutt_strcmp (buffer, tmp->path))
|
||||
tmp = tmp->next;
|
||||
|
|
@ -42,9 +42,9 @@
|
|||
if (tmp && Context &&
|
||||
!mutt_strcmp (tmp->realpath, Context->realpath))
|
||||
{
|
||||
@@ -549,6 +566,7 @@ static int examine_mailboxes (MUTTMENU *
|
||||
strfcpy (buffer, NONULL(tmp->path), sizeof (buffer));
|
||||
mutt_pretty_mailbox (buffer, sizeof (buffer));
|
||||
@@ -549,6 +566,7 @@
|
||||
s.st_mtime = st2.st_mtime;
|
||||
}
|
||||
|
||||
+ check_maildir_times (tmp, &s);
|
||||
add_folder (menu, state, buffer, &s, tmp);
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
--- PATCHES.orig 2017-06-03 23:21:18 UTC
|
||||
--- PATCHES.orig 2017-09-04 23:35:30 UTC
|
||||
+++ PATCHES
|
||||
@@ -0,0 +1 @@
|
||||
+patch-1.5.6.cb.reverse_reply.2
|
||||
--- init.h.orig 2017-06-03 23:21:18 UTC
|
||||
--- init.h.orig 2017-09-04 23:35:27 UTC
|
||||
+++ init.h
|
||||
@@ -2588,6 +2588,13 @@ struct option_t MuttVars[] = {
|
||||
@@ -2687,6 +2687,13 @@ struct option_t MuttVars[] = {
|
||||
** possibly including eventual real names. When it is \fIunset\fP, mutt will
|
||||
** override any such real names with the setting of the $$realname variable.
|
||||
*/
|
||||
|
|
@ -18,9 +18,9 @@
|
|||
{ "rfc2047_parameters", DT_BOOL, R_NONE, OPTRFC2047PARAMS, 0 },
|
||||
/*
|
||||
** .pp
|
||||
--- mutt.h.orig 2017-06-03 23:21:23 UTC
|
||||
--- mutt.h.orig 2017-09-04 23:35:27 UTC
|
||||
+++ mutt.h
|
||||
@@ -440,6 +440,7 @@ enum
|
||||
@@ -448,6 +448,7 @@ enum
|
||||
OPTREVALIAS,
|
||||
OPTREVNAME,
|
||||
OPTREVREAL,
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
OPTRFC2047PARAMS,
|
||||
OPTSAVEADDRESS,
|
||||
OPTSAVEEMPTY,
|
||||
--- protos.h.orig 2017-05-30 19:27:53 UTC
|
||||
--- protos.h.orig 2017-09-04 23:35:27 UTC
|
||||
+++ protos.h
|
||||
@@ -93,6 +93,7 @@ ADDRESS *mutt_get_address (ENVELOPE *, c
|
||||
ADDRESS *mutt_lookup_alias (const char *s);
|
||||
|
|
@ -38,9 +38,9 @@
|
|||
ADDRESS *mutt_expand_aliases (ADDRESS *);
|
||||
ADDRESS *mutt_parse_adrlist (ADDRESS *, const char *);
|
||||
|
||||
--- send.c.orig 2017-05-30 19:27:53 UTC
|
||||
--- send.c.orig 2017-09-04 23:35:27 UTC
|
||||
+++ send.c
|
||||
@@ -585,6 +585,10 @@ void mutt_fix_reply_recipients (ENVELOPE
|
||||
@@ -598,6 +598,10 @@ void mutt_fix_reply_recipients (ENVELOPE
|
||||
/* the CC field can get cluttered, especially with lists */
|
||||
env->to = mutt_remove_duplicates (env->to);
|
||||
env->cc = mutt_remove_duplicates (env->cc);
|
||||
|
|
@ -51,9 +51,9 @@
|
|||
env->cc = mutt_remove_xrefs (env->to, env->cc);
|
||||
|
||||
if (env->cc && !env->to)
|
||||
--- sendlib.c.orig 2017-05-30 19:27:53 UTC
|
||||
--- sendlib.c.orig 2017-09-04 23:35:27 UTC
|
||||
+++ sendlib.c
|
||||
@@ -2714,6 +2714,35 @@ static void set_noconv_flags (BODY *b, s
|
||||
@@ -2753,6 +2753,35 @@ static void set_noconv_flags (BODY *b, s
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue