Commit graph

302220 commits

Author SHA1 Message Date
Andrej Zverev
b8138b3c53 - Fix build with new site_perl
Submitted by:	ohauer@
2013-06-12 19:20:40 +00:00
Raphael Kubo da Costa
3b1b035610 Improve the English in the recent Perl UPDATING entry 2013-06-12 19:12:52 +00:00
Antoine Brodin
f2a66ab30e Update adapter detection patch to report correct IDs
PR:		ports/179517
Submitted by:	Mickael Maillot
Approved by:	Manuel Creach (maintainer)
2013-06-12 19:05:12 +00:00
Brooks Davis
f8fed570a8 Fix up depends so we depend on llvm33 and look for the llc33 binary to
identify it rather than port versions.

Remove the broken and obviously unused regression-test target along with
the obsolute dependency on dejagnu.

Reported by:	decke
2013-06-12 19:03:41 +00:00
Brooks Davis
509e3cc074 Add a file that was missed when working around svn cp + post commit hook
weirdness.

Submitted by:	bdrewery
2013-06-12 18:38:05 +00:00
Brooks Davis
c7e9bc5e6f Add a file that was missed when working around svn cp + post commit hook
weirdness.

Submitted by:	bdrewery
2013-06-12 18:37:03 +00:00
Antoine Brodin
9f1b0c98ec Add empty directories created by this port to pkg-plist. 2013-06-12 18:04:12 +00:00
Glen Barber
3b20b49c32 Remove empty file.
Approved by:	cy (maintainer, implicit)
2013-06-12 18:01:51 +00:00
Glen Barber
ef33475c14 cfengine/Makefile:
- Add CFENGINE_VERSION 35

cfengine-devel/Makefile:
 - Mark IGNORE since development has not branched yet

Add cfengine 3.5.0:

New features:
  - classes promises now take an optional scope constraint.
  - new built-in functions: every, none, some, nth, sublist, uniq, filter
  - cf-promises flag --parse-tree is replaced by --policy-output-format=,
    requiring the
    user to specify the output format (none, cf, json)
  - cf-promises allows partial check of policy (without body common
    control) without integrity check; --full-check enforces integrity check
  - agent binaries support JSON input format (.json file as generated
    by cf-promises)
  - cf-key: new options --trust-key/-t and --print-digest/-p
  - Class "failsafe_fallback" is defined in failsafe.cf when main
    policy contains errors and
    failsafe is run because of this
  - add scope attribute for body classes (Redmine #2013)
  - Better diagnostics of parsing errors
  - Error messages from parser now show the context of error
  - new cf-agent option: --self-diagnostics
  - new output format, and --legacy-output
  - warnings for cf-promises.
  - Enable zeroconf-discovery of policy hubs for automatic bootstrapping
    if Avahi is present
  - Support for sys.cpus on more platforms than Linux & HPUX

Changes:
  - parser no longer allows ',' after promiser or promisee. must be
    either ';' or lval
  - Make parser output in GCC compatible format the only supported format
    (remove --gcc-brief-format flag)
  - Silence license warnings in Enterprise Free25 installations
  - action_policy => "warn" causes not_kept classes to be set on
    promise needing repair.
  - command line option version (-V) now prints a shorter parsable
    version without graphic
  - implicit execution of server and common bundles taking arguments
    is skipped in cf-serverd.
  - WARNING: option --policy-server removed, require option to --bootstrap
    instead
  - process promises don't log if processes are out of range unless you
    run in verbose mode
  - reports promises are now allowed in any context (Redmine #2005)
  - cf-report has been removed
  - cf-execd: --once implies --no-fork
  - Version info removed from mail subject in the emails sent by cf-execd.
    The subject will only contain "[fqname/ipaddress]" instead of
    "communnity/nova [fqname/ipaddress]".
    Please change your email filters accordingly if necessary.
  - "outputs" promise type is retired. Their semantics was not clear,
    and the functionality
    is better suited for control body setting, not a promise.
  - Tokyo Cabinet databases are now automatically checked for
    correctness during opening. It should prevent a number of issues
    with corrupted TC databases causing binaries to hang.
  - Improved ACL handling on Windows, which led to some syntax changes.
    We now consistently use the term "default" to describe ACLs that
    can be inherited by child objects. These keywords have received new names:
      acl_directory_inherit -> acl_default
      specify_inherit_aces -> specify_default_aces
      The old keywords are deprecated, but still valid. In addition, a new
      keyword "acl_inherit" controls inheritance behavior on Windows. This
      feature does not exist on Unix platforms. (Redmine #1832)
  - Networking code is moved from libpromises to its own library,
    libcfnet. Work has begun on making the API more sane and thread-safe.
    Lots of legacy code was removed.
  - Add getaddrinfo() replacement in libcompat (borrowed from PostgreSQL).
  - Replace old deprecated and non thread-safe resolver calls with
    getaddrinfo() and getnameinfo().
  - Hostname2IPString(), IPString2Hostname() are now thread-safe, and are
    returning error when resolution fails.
  - Running cf-execd --once now implies --no-fork, and also does not wait
    for splaytime to pass.
  - execresult(), returnszero() and commands promises no longer requires
    the first word
    word to be an absolute path when using the shell. (Part of Redmine #2143)
  - commands promises useshell attribute now accepts "noshell" and
    "useshell" values. Boolean values are accepted but deprecated. (Part of
    Redmine #2143)
  - returnszero() now correctly sets the class name in this scenario  (Part of
    Redmine #2143):
      classes:
        "commandfailed" not => returnszero("/bin/nosuchcommand", "noshell");

Bugfixes:
  - bundles are allowed to be empty (Redmine #2411)
  - Fixed '.' and '-' not being accepted by a commands module. (Redmine #2384)
  - Correct parsing of list variables by a command module. (Redmine #2239)
  - Fixed issue with package management and warn. (Redmine #1831)
  - Fixed JSON crash. (Redmine #2151)
  - Improved error checking when using fgets(). (Redmine #2451)
  - Fixed error message when deleting nonexistent files. (Redmine #2448)
  - Honor warn-only when purging from local directory. (Redmine #2162)
  - Make sure "restart" and "reload" are recognized keywords in
    packages. (Redmine #2468)
  - Allocate memory dynamically to avoid out-of-buffer or out-of-hash
    situations
  - fix edit_xml update of existing attributes  (Redmine #2034)
  - use failsafe policy from compile-time specified workdir (Redmine #1991)
  - ifvarclass checked from classes promises in common bundles
  - do not wait for splaytime when executing only once
  - disable xml editing functionality when libxml2 doesn't provide
    necessary APIs (Redmine #1937)
  - Out-of-tree builds should work again, fixed a bunch of related bugs.
  - Fixed race condition in file editing. (Redmine #2545)
  - Fixed memory leak in cf-serverd and others (Redmine #1758)

Approved by:	cy (maintainer, implicit)
2013-06-12 18:00:45 +00:00
Andrej Zverev
124b00a56f - Fix build with new site_perl
Submitted by:	olli hauer <ohauer@gmx.de>
2013-06-12 17:45:02 +00:00
Baptiste Daroussin
6c1c5b05f5 Fix build with clang 2013-06-12 17:34:18 +00:00
Andrej Zverev
73b65aa527 - Fix build with new site_perl
Submitted by:	poyopoyo@puripuri.plala.or.jp
2013-06-12 17:09:49 +00:00
Baptiste Daroussin
9577fdf711 Fix build with clang 2013-06-12 16:56:43 +00:00
Brooks Davis
2291c69426 Set LATEST_LINK to clang33/llvm33 to deconflict.
Reported by:	erwin
2013-06-12 16:32:35 +00:00
Brooks Davis
e9801a1fab Correct some WRKDIR relative paths in the cmake files so they actually
work.  I've verified that libobjc2 builds with them installed.

Remove the conflict with llvm-3.3 and later.  Newer ports will not
conflict.
2013-06-12 16:20:51 +00:00
Baptiste Daroussin
fb7450560b Fix build with clang 2013-06-12 16:08:37 +00:00
Baptiste Daroussin
84dac5e826 Fix build with clang 2013-06-12 16:07:21 +00:00
Martin Wilke
d97bba8cf6 - Don't remove directories not created by this port
Reported by:	pkg (DEVELOPER_MODE)
2013-06-12 15:42:29 +00:00
Pawel Pekala
6429f7368d Update to 3.9.2 bugfix release 2013-06-12 15:32:54 +00:00
William Grzybowski
3f3e1e6595 devel/py-celery: update to 3.0.19
- Update to 3.0.19
- Add LICENSE (BSD)

Changes: http://docs.celeryproject.org/en/latest/whatsnew-3.0.html

PR:		ports/179011
Submitted by:	wg (myself)
Approved by:	culot / jpaetzel (mentors, implicit), maintainer (timeout)
2013-06-12 14:44:15 +00:00
William Grzybowski
02229984f5 www/py-rhodecode: update to 1.7.0
- Update to 1.7.0
- Remove CELERY option
- Add a rc.d startup script
- Use a workaround to save options

Changes: http://pythonhosted.org/RhodeCode/changelog.html

Approved by:	culot / jpaetzel (mentors, implicit)
2013-06-12 14:38:13 +00:00
Martin Wilke
52ffd49ed9 - Add missing fonts.alias
Reported by:	pkg (DEV MOD)
2013-06-12 14:35:50 +00:00
Steven Kreuzer
ae8892726e Update to 3.4.0
Take maintainership

PR: ports/172327
Submitted by:	skreuzer@
Approved by:	brooks@
2013-06-12 13:59:16 +00:00
Martin Wilke
01a19ad45e - Fix build on HEAD 2013-06-12 13:59:13 +00:00
Martin Wilke
4cfd91f162 - Fix i18n manpages
Reported by:	pkg (DEVELOPER_MODE)
2013-06-12 13:45:46 +00:00
Martin Wilke
28a8edad35 - Don't remove directories not created by this port
Reported by:	pkg (DEVELOPER_MODE)
2013-06-12 13:42:57 +00:00
Martin Wilke
1b28b5f4d2 - Fix PORTDOCS* 2013-06-12 13:42:12 +00:00
Martin Wilke
655663cafc - Fix i18 manpages
Reported by:	pkg (DEVELOPER_MODE)
2013-06-12 13:40:53 +00:00
Martin Wilke
c77972ee0b - Fix i18n manpages
Reported by:	pkg (DEVELOPER_MODE)
2013-06-12 13:39:48 +00:00
Martin Wilke
d2e13f8a98 - Do not remove directories not created by this port
Reported by:	pkg (DEVELOPER_MODE)
2013-06-12 13:39:19 +00:00
Martin Wilke
f7598bff05 - Switch to charsetfix to fix the build
Reported by:	pkg (DEVELOPER_MODE)
2013-06-12 13:36:54 +00:00
Martin Wilke
3826711a1d - Fix i18n manpages
Reported by:	pkg (DEVELOPER_MODE)
2013-06-12 13:36:11 +00:00
Martin Wilke
dca17bccdd - Do not remove directories not created by this port
Reported by:	pkg (DEVELOPER_MODE)
2013-06-12 13:34:32 +00:00
Sofian Brabez
da62e949ed - Replace Whom by Created by 2013-06-12 13:29:37 +00:00
Andrej Zverev
814e5e602c - Fix typo in r320679 2013-06-12 13:26:53 +00:00
Sofian Brabez
ec4cffae18 - Bump PORTREVISION after cracklib update
- Don't specify ABI number in LIB_DEPENDS
- Make portlint happy
2013-06-12 13:25:26 +00:00
Sofian Brabez
fa2c30b2c1 - Bump PORTREVISION after cracklib update
- Don't specify ABI version number in LIB_DEPENDS
2013-06-12 13:05:07 +00:00
Kubilay Kocak
94be97aef3 net/py-twitter-tools: Python API and CLI toolset for Twitter [NEW PORT]
The Minimalist Twitter API for Python is a Python API for Twitter, everyone's
favorite Web 2.0 Facebook-style status updater for people on the go.

Also included is a twitter command-line tool for getting your friends' tweets
and setting your own tweet from the safety and security of your favorite shell
and an IRC bot that can announce Twitter updates to an IRC channel.

WWW: https://github.com/sixohsix/twitter
2013-06-12 13:05:01 +00:00
Diane Bruce
474cd8614b - Update to gnuradio 3.6.5
Important new features (3.6.5):
New OFDM PHY layer (Martin Braun, Ben Reynwar)
This release includes new OFDM PHY layer blocks in gr-digital.

New runtime logging capability (Tom Rondeau)
GNU Radio has a logging interface to enable various levels of logging
information to be printed to the console or a file.

And Numerous bug fixes

Reviewed by:	martymac
2013-06-12 13:04:28 +00:00
Andrej Zverev
8c7d7ff2bd - lang/perl5.12 upgrade to 5.12.5
- lang/perl5.14 upgrade to 5.14.4
- lang/perl5.16 upgrade to 5.16.3
- Global modify SITE_PERL[1][2]

[1] - See more info:
http://docs.freebsd.org/cgi/getmsg.cgi?fetch=26605+0+archive/2013/freebsd-perl/20130609.freebsd-perl
[2] - Fix for mail/cyrus-imapd* - Approved by portmrg(bapt@)

Please, see ports/UPDATING for upgrade procedure.

Reviewed by:	bapt@ (exp-run), culot@
2013-06-12 13:00:55 +00:00
William Grzybowski
f84c960066 - Update to 1.2
- Sort pkg-plist

Changes: https://github.com/ansible/ansible/blob/v1.2/CHANGELOG.md

PR:		ports/179490
Submitted by:	Nikolai Lifanov <lifanov@mail.lifanov.com> (maintainer)
Approved by:	culot / jpaetzel (mentors, implicit)
2013-06-12 12:26:21 +00:00
Kubilay Kocak
a6f49bb8e7 net/py-twitter: Update to 1.0, Use CHEESESHOP (pypi)
- Update to 1.0
- Use CHEESESHOP for MASTER_SITES, remove PROJECTHOST accordingly
- BUILD_DEPENDS are actually RUN_DEPENDS, remove the former
- Whitespace alignment

Changes:

https://github.com/bear/python-twitter/blob/v1.0/CHANGES

Reported by:	Jethro Carr (via Twitter)
2013-06-12 12:18:40 +00:00
Baptiste Daroussin
58dd53e9d2 Fix build with clang 2013-06-12 11:57:13 +00:00
William Grzybowski
d404e31ed5 - Update to 1.0
- Pass maintainership to submitter

PR:		ports/179461
Submitted by:	Danilo Egêa Gondolfo <danilogondolfo@gmail.com>
Approved by:	culot / jpaetzel (mentors, implicit)
2013-06-12 11:53:21 +00:00
Martin Wilke
4408574d8b - Trim header 2013-06-12 10:31:12 +00:00
Pawel Pekala
a9fe3ad073 - Update to version 3.16
- Cleanup dependencies
= Switch to USES=pathfix
2013-06-12 09:16:56 +00:00
Frederic Culot
99e791c2d2 - Update to 3.0.1
PR:		ports/179493
Submitted by: 	Mamoru Sakaue <sakaue.mamoru@samurai.mwghennn.net> (maintainer)
2013-06-12 09:01:38 +00:00
Alex Dupre
424d74766c Update to 5.5.32 release. 2013-06-12 07:56:24 +00:00
Martin Wilke
eebd94075b - Fix build 2013-06-12 07:53:32 +00:00
Martin Wilke
639da3c2b6 - don't remove directory not created by the port.
 
Reported by:	pkg (DEVELOPER_MODE)
2013-06-12 07:51:52 +00:00