Commit graph

12905 commits

Author SHA1 Message Date
Gerald Pfeifer
3ede6d9498 Update to the 20140706 snapshot of GCC 4.10.
Also clean *.la files in LIBEXEC, and recursively so here and for
TARGLIB.

Sort USES.
2014-07-08 21:53:52 +00:00
John Marino
26b53b5bc4 lang/ocaml: Add ARMv6 support
Redports confirms that changes do not break i386 and amd64 builds (8x).

PR:		189063
Submitted by:	maintainer (Michael Gruenewald)
Patch by:	Andy Ray
2014-07-08 13:11:04 +00:00
Vanilla I. Shu
decdb6679d Stagify. 2014-07-08 09:17:24 +00:00
Pietro Cerutti
6b5bcc894a - Update to 05_20140706
Changes:
  * The interpreter has been improved to recognize integer overflow.
    Now the exception NUMERIC_ERROR is raised, when a program triggers
    an integer overflow. The checks for overflow are done in software,
    but the overhead is small. With overflow checks the interpreter
    needs 0.5% (zero point five percent) more run-time to execute the
    program chkint.sd7 (verified with gcc and valgrind).
  * A chapter about the Seed7 Structured Syntax Description (S7SSD)
    has been added to the manual.
  * The for-until-loops in bitset.s7i and bitsetof.s7i have been
    improved such that the for-variable has the correct value, when it
    is used in the until-condition.
  * The function replaceN has been added to string.s7i. This function
    does replacements until no occurance of the target string is left.
    This function is used by toStdPath to replace multiple occurances
    of a character by one occurance (replace("/a///b////c", "//", "/")
    returns "/a/b/c").
  * The program calc.sd7 has been renamed to calc7.sd7.
  * The program calc7.sd7 has been changed to accept the commands
    'quit' and 'exit'. This commands can be used to exit the program.
    The possibility to leave the program with an empty input line has
    been removed.
  * The program calc7.sd7 has been improved to write the name of the
    exception, when it has been raised.
  * The compiler has been improved to allow the generation of overflow
    checking code. Overflow checking code can be generated for the
    operators +, -, **, +:= and -:= and the functions abs, succ, pred,
    incr and decr. Until the rest of the functions is implemented and
    enough tests have been added to chkint.sd7 the functionality is
    switched off.
  * The template FOR_UNTIL_DECLS has been added to forloop.s7i. This
    template defines for-loops with a condition.
  * The function abs has been moved from the library math.s7i to the
    library float.s7i.
  * Checks for addition, subtraction, multiplication, power and abs
    have been added to chkint.sd7.
  * In the compiler the statements to write the C prototypes have been
    moved from s7c.sd7 to functions in the files comp/xxx_act.s7i
    (xxx is the abbreviation for the corresponding primitive type).
  * The functions getReference getParameterAsReference have been added
    to comp/expr_util.s7i.
  * The function isit_bool from objutl.c has been replaced by the macro
    isit_bool (defined in objutl.h). This improves the speed of the
    interpreter.
  * The function set_card has been improved to call setCard, which
    computes the cardinality of a set much quicker.
2014-07-08 07:29:30 +00:00
Alex Dupre
2052a24c5f - Update to 5.5.14 release
- Add extra patch to enable ipv6 support in fpm [1]

PR:		190190 [1]
Submitted by:	melvyn@magemana.nl
2014-07-07 09:50:00 +00:00
Baptiste Daroussin
e55014ab42 Update to 3.1
Support stage
Convert to USES=libtool
Remove the -devel version which is outdated an no more needed

PR:		187954
Submitted by:	numisemis@yahoo.com (maintainer)
2014-07-07 09:41:23 +00:00
Alex Dupre
bd9297188f - Update to 5.4.30 release
- Add extra patch to enable ipv6 support in fpm [1]

PR:		190190 [1]
Submitted by:	melvyn@magemana.nl
2014-07-07 09:23:06 +00:00
Florian Smeets
041923401e Merge a patch from php 5.4/5.5 to fix a security vulnerability. No CVE has
been assigned (yet?).

More info on https://www.sektioneins.de/en/blog/14-07-04-phpinfo-infoleak.html

PR:		191638
Submitted by:	logan@elandsys.com
2014-07-06 14:42:15 +00:00
Johan van Selst
a7a264aa4d - Modernise options
- Tindy STAGEDIR
- Bump PORTREVISON for plist changes
2014-07-06 13:09:19 +00:00
Johan van Selst
dda6eed9b5 Modernise options (libtool, bz2) 2014-07-06 10:54:45 +00:00
Ashish SHUKLA
4806c9231a - Add new port for Sagittarius Scheme
R6RS/R7RS Scheme system.

Features:

 -  Builtin CLOS.
 -  Common Lisp like reader macro.
 -  Cryptographic libraries.
 -  Customisable cipher and hash algorithm.
 -  Custom codec mechanism.
 -  CL like keyword lambda syntax (taken from Gauche).
 -  Constant definition form. (define-constant form).
 -  Builtin regular expression
      -  mostly works O(n)
 -   Replaceable reader

WWW: https://code.google.com/p/sagittarius-scheme/
2014-07-06 01:47:27 +00:00
John Marino
6daee3984c lang/rexx-regina: Add DragonFly support (dports) 2014-07-05 22:10:42 +00:00
Ashish SHUKLA
d617a61e84 - Update to 2.2.10 2014-07-05 21:49:51 +00:00
John Marino
5fc7774f6d lang/mdk: Fix support for ports readline (dports) 2014-07-05 21:49:04 +00:00
Jimmy Olgeni
021be14f65 Remove indefinite articles and trailing periods from COMMENT, plus minor
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not
included as they contain Latin-1 characters that break the Phabricator
workflow. Categories J-L.

CR:		D305
Approved by:	portmgr (swills)
2014-07-05 19:27:03 +00:00
Tijl Coosemans
ec94e4d5eb Bump more ports that depend on libsqlite3.so:
- ports that set USE_SQLITE with the *_USE option helper
- ports that depend on libsqlite3 indirectly as reported by pkg rquery

Approved by:	portmgr (implicit)
2014-07-05 12:19:32 +00:00
Gerald Pfeifer
49d55cf9ef Update to the 20140702 snapshot of GCC 4.9.1. 2014-07-04 20:41:21 +00:00
Tijl Coosemans
3127da9b78 Convert textproc/aspell to "USES=libtool tar:bzip2" and bump dependent ports
Approved by:	portmgr (implicit, PORTREVISION bump on unstaged port)
2014-07-04 20:28:31 +00:00
Tijl Coosemans
a5185846f0 Bump PORTREVISION on all ports with USE_SQLITE=yes or USE_SQLITE=3 that
have not been bumped yet after the latest libsqlite3.so library version
change.

Approved by:	portmgr (implicit)
2014-07-04 09:40:59 +00:00
Adam Weinberger
7603768a87 s/.post// 2014-07-04 00:26:43 +00:00
Adam Weinberger
fb92175970 Remove NOPORTDOCS and NOPORTEXAMPLES. 2014-07-04 00:24:35 +00:00
Dmitry Marakasov
d8a93a2dd6 - Switch to USES=libtool, drop .la files
Approved by:	portmgr blanket
2014-07-02 22:19:34 +00:00
Dmitry Marakasov
a13ddd03b7 - Use new LIB_DEPENDS syntax
- Switch to USES=libtool, drop .la files
- Convert USE_BZIP2 to USES
2014-07-02 22:18:20 +00:00
Dmitry Marakasov
cf64c63afe - Switch to USES=libtool, drop .la files
- Convert USE_BZIP2 to USES

Approved by:	portmgr blanket
2014-07-02 21:56:06 +00:00
Danilo Egea Gondolfo
6407875bee - Fix pthread error when compiling files at runtime
PR:		ports/191472
Submitted by:	beyert@cs.ucr.edu (maintainer)
2014-07-02 16:21:52 +00:00
Dag-Erling Smørgrav
499a727913 Add CPE information. 2014-07-02 12:49:59 +00:00
Veniamin Gvozdikov
447be5f813 - Upgrade to 2.29.0.
- Support staging.
- Removed shared library build.
2014-07-01 15:23:56 +00:00
Dmitry Marakasov
f057cd8a72 - Stagify
- Clarify LICENSE
- Add LICENSE_FILE
- Switch to USES=libtool, drop .la files

Approved by:	portmgr blanket
2014-07-01 15:02:12 +00:00
Steve Wills
c13bfe349b - Force use of libreadline from ports rather than base, in order to avoid
unexpectedly getting readline from ports if it's already installed.
- Add patch to work with newer libreadline.
- Provide an option to use libedit from ports, avoiding the libedit in base.
- Note: libreadline is not BSD licensed and while libedit would be preferable,
  it seems to have issues with UTF8 still, see ruby bug 9204. Once that's
  resolved, we can make libedit the default. Similar changes were done to Ruby
  2.0 and 2.1 in r355890. Also convert to USES=tar:bzip2 while here and cleanup
  a plist issue.
2014-07-01 14:30:59 +00:00
Gabor Pali
844d0d2237 - Update to 1.22
- Stagify
- Introduce explicit dependency on GCC to make it build on 10.x and later
- Remove indefinite article from COMMENT
- Mark jobs unsafe as it does not build reliably on multi-core systems
- Remove hmake from conflicting packages, it is long gone
- Rework handling of documentation
- Update master site

Obtained from:	FreeBSD Haskell
2014-07-01 14:14:03 +00:00
Baptiste Daroussin
31c0cafa36 Fix build with readline from ports
While here use options helpers
Remove useless inclusion of pre.mk/post.mk
2014-07-01 12:39:10 +00:00
Rene Ladan
011f192383 Remove outdated ports:
2014-07-01 security/sudosh3: Funcition replaced by sudo -s
2014-07-01 security/sudosh: Funcition replaced by sudo -s
2014-07-01 security/sudosh2: Funcition replaced by sudo -s
2014-07-01 lang/pike76: Outdated: Users should switch to lang/pike78
2014-07-01 editors/gummi: Builds fine but the program itself is unusable
2014-07-01 06:33:38 +00:00
Dmitry Marakasov
98b697b9c5 - Switch to USES=libtool, drop .la files
Approved by:	portmgr blanket
2014-07-01 04:55:34 +00:00
Gabor Pali
35432ff4e7 - Fix BROKEN
Obtained from:	FreeBSD Haskell
2014-07-01 03:04:00 +00:00
Gabor Pali
0d0c204ac7 - Stagify
- Add USE_GCC to make it build on 10.x and later
- Remove indefinite article from COMMENT
- Remove options
- Add dependency on ALUT to make the respective package build
- Bump PORTREVISION

Obtained from:	FreeBSD Haskell
2014-07-01 02:56:33 +00:00
Baptiste Daroussin
b36d8ba919 Fix building with readline from ports 2014-06-30 22:49:52 +00:00
Baptiste Daroussin
5fb5a61084 Fix building with readline from ports 2014-06-30 22:49:27 +00:00
Sunpoet Po-Chuan Hsieh
99b61650d6 - Take maintainership 2014-06-30 16:42:17 +00:00
Gerald Pfeifer
253b88d8be Update to the 20140629 snapshot of GCC 4.10. 2014-06-30 08:37:29 +00:00
Eitan Adler
e6ab3ba661 multiple: reset gslin's maintainer
By request of Gea-Suan Lin <gslin@gslin.org> - reset ports to ports@FreeBSD.

	Gea-Suan Lin's work is much appreciated.

Approved by:	portmgr (implicit) (not really, skipping NO_STAGE check)
2014-06-30 05:51:02 +00:00
Gerald Pfeifer
2156535024 Update to the 20140625 snapshot of GCC 4.9.1. 2014-06-27 23:27:57 +00:00
Gerald Pfeifer
9c8f3d316a Update to the 20140626 snapshot of GCC 4.8.4. 2014-06-27 22:01:28 +00:00
Martin Wilke
bd48d39657 - Chase database/sqlite3 slib bump
Approved by:	portmgr (myself)
2014-06-27 17:21:06 +00:00
Ashish SHUKLA
fba661e8a6 - Remove editors/emacs21, and editors/emacs22 as they're no longer maintained
upstream
- Also remove dependent ports
- Add UPDATING entry informing users of the same
- Add MOVED entries

Approved by:	portmgr (bapt)
2014-06-27 12:34:52 +00:00
Pietro Cerutti
61335d5533 - Update to 2013.12.04
- Specify which BSD license it is
2014-06-27 09:26:26 +00:00
Brooks Davis
f679ebf6a0 Deprecate dragonegg ports. Development has ended, they are impractical to
build on FreeBSD 10+ due to requiring LLVM ports built against libstdc++,
and they are based on increasingly dated versions of LLVM and GCC.
2014-06-26 16:30:39 +00:00
Brooks Davis
4559551f55 Enable staging. 2014-06-26 16:11:57 +00:00
Antoine Brodin
af7cc6136e Allow to build with texinfo from ports
With hat:	portmgr
2014-06-26 13:51:14 +00:00
Antoine Brodin
b9afc6377f Allow to build with texinfo from ports
With hat:	portmgr
2014-06-26 09:41:38 +00:00
Antoine Brodin
c0ef6553ab Allow to build with texinfo from ports
With hat:	portmgr
2014-06-26 08:41:34 +00:00