aboutsummaryrefslogtreecommitdiff
path: root/sysutils
Commit message (Collapse)AuthorAgeFilesLines
* . remove shlib ABI versions from LIB_DEPENDS;Boris Samorodov2013-06-141-8/+6
| | | | | | | | | . add LICENSE=GPLv2; . bump PORTREVISION; . trim Makefile headers. Notes: svn path=/head/; revision=320938
* Use new helpersBaptiste Daroussin2013-06-141-14/+4
| | | | Notes: svn path=/head/; revision=320927
* - Fix build with clangGuido Falsi2013-06-132-5/+19
| | | | | | | - Trim Makefile headers Notes: svn path=/head/; revision=320845
* - Update to 3.8.5Frederic Culot2013-06-132-3/+3
| | | | | | | | PR: ports/179524 Submitted by: Balazs Nagy <js@iksz.hu> (maintainer) Notes: svn path=/head/; revision=320818
* - Add rubygem-parallel 0.6.5Sunpoet Po-Chuan Hsieh2013-06-134-0/+25
| | | | | | | | | | parallel runs any kind of code in parallel processes. WWW: https://github.com/grosser/parallel RG: https://rubygems.org/gems/parallel Notes: svn path=/head/; revision=320787
* - Update to 0.2.8Sunpoet Po-Chuan Hsieh2013-06-133-24/+9
| | | | | | | | | | - Cleanup Makefile header - Remove outdated PERL_LEVEL check Changes: http://search.cpan.org/dist/Monitor-Simple/ChangeLog Notes: svn path=/head/; revision=320778
* - Update to 3.0.2Sunpoet Po-Chuan Hsieh2013-06-132-3/+3
| | | | | | | Changes: https://github.com/guard/guard-rspec/commits/master Notes: svn path=/head/; revision=320761
* Fix duplicate index entry.Glen Barber2013-06-121-0/+4
| | | | | | | | Pointyhat: gjb (myself) Approved by: cy (maintainer, implicit) Notes: svn path=/head/; revision=320726
* Remove empty file.Glen Barber2013-06-121-0/+0
| | | | | | | Approved by: cy (maintainer, implicit) Notes: svn path=/head/; revision=320711
* cfengine/Makefile:Glen Barber2013-06-1210-2/+460
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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) Notes: svn path=/head/; revision=320710
* Update to 3.4.0Steven Kreuzer2013-06-1213-124/+42
| | | | | | | | | | | Take maintainership PR: ports/172327 Submitted by: skreuzer@ Approved by: brooks@ Notes: svn path=/head/; revision=320696
* - Update to 1.2William Grzybowski2013-06-123-243/+295
| | | | | | | | | | | | | - 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) Notes: svn path=/head/; revision=320678
* - Unbreak build on HEADMartin Wilke2013-06-121-4/+0
| | | | Notes: svn path=/head/; revision=320661
* Update 3.4.1 --> 3.4.2Cy Schubert2013-06-123-4/+6
| | | | | | | Submitted by: Peter Czanik <czanik@balabit.hu> (our syslog-ng upline) Notes: svn path=/head/; revision=320657
* Unmark as BROKEN after r320633.Raphael Kubo da Costa2013-06-111-2/+0
| | | | | | | | | | | The checksum mismatch was caused by a mirror returning a file it should not. Kudos to John Marino <draco@marino.st> for bringing this up. PR: ports/179432 Notes: svn path=/head/; revision=320634
* Steven has graciously agreed to take over the Ganglia ports.Brooks Davis2013-06-112-7/+2
| | | | Notes: svn path=/head/; revision=320630
* - Update to 1.9.0. [1]Raphael Kubo da Costa2013-06-113-4/+5
| | | | | | | | | | | - Properly replace %%DSV_TOOLS%% when the SSL option is not selected. So was not being replaced at all. PR: ports/177739 [1] Submitted by: klm <klm@uidzero.org> (maintainer) Notes: svn path=/head/; revision=320629
* - Fix plistMartin Wilke2013-06-111-1/+0
| | | | | | | Reported by: pkg (DEVELOPER_MODE) Notes: svn path=/head/; revision=320610
* - Fix buildMartin Wilke2013-06-112-6/+1
| | | | | | | | | - Trim header Reported by: pkg (DEVELOPER_MODE) Notes: svn path=/head/; revision=320598
* - Fix buildMartin Wilke2013-06-112-6/+1
| | | | | | | | | - Trim header Reported by: pkg (DEVELOPER_MODE) Notes: svn path=/head/; revision=320586
* - Remove uneeded plistMartin Wilke2013-06-111-1/+0
| | | | | | | Reported by: pkg (DEVELOPER_MODE) Notes: svn path=/head/; revision=320578
* - Update to 0.15Philippe Audeoud2013-06-102-4/+3
| | | | | | | - Changelog: http://cpansearch.perl.org/src/DPAVLIN/Fuse-0.15/Changes Notes: svn path=/head/; revision=320487
* - Sanitize port option name and descriptionAlexey Dokuchaev2013-06-101-8/+8
| | | | | | | | | | - Trim the article from COMMENT, sort the knobs Discussed with: wen (on May 12th) Approved by: timeout from everyone involved Notes: svn path=/head/; revision=320422
* Update to 1.08.Xin LI2013-06-092-10/+8
| | | | Notes: svn path=/head/; revision=320408
* * Major update to FLAC 1.3.0, including shared library bumps.Christian Weisgerber2013-06-093-2/+3
| | | | | | | | | * Chase the update in dependent ports. PR: 179072 Notes: svn path=/head/; revision=320405
* - Remove php4 referenceMartin Wilke2013-06-092-2/+0
| | | | Notes: svn path=/head/; revision=320370
* - Remove php4 referenceMartin Wilke2013-06-092-3/+0
| | | | Notes: svn path=/head/; revision=320369
* - Update to 5.5.1Martin Wilke2013-06-092-3/+3
| | | | | | | | PR: 179315 Submitted by: Martin Pala <martinp@tildeslash.com> (maintainer) Notes: svn path=/head/; revision=320353
* - Fix buildMartin Wilke2013-06-091-0/+1
| | | | Notes: svn path=/head/; revision=320336
* - Fix typo in OptionsNG conversionWilliam Grzybowski2013-06-091-1/+1
| | | | | | | | | PR: ports/178525 Submitted by: Norihiko Murase <mur1080224@inter7.jp> Approved by: culot / jpaetzel (mentors, implicit), maintainer (timeout) Notes: svn path=/head/; revision=320332
* - Update to 3.0.1Sunpoet Po-Chuan Hsieh2013-06-082-5/+7
| | | | | | | | | - Add LICENSE Changes: https://github.com/guard/guard-rspec/commits/master Notes: svn path=/head/; revision=320303
* - Update to 1.4.0Sunpoet Po-Chuan Hsieh2013-06-082-6/+8
| | | | | | | | | - Add LICENSE Changes: https://github.com/guard/guard-livereload/commits/master Notes: svn path=/head/; revision=320302
* - Add LICENSESunpoet Po-Chuan Hsieh2013-06-081-0/+2
| | | | Notes: svn path=/head/; revision=320301
* ConfigExpanderInput and ConfigExpanderOutput plugins provide simpleJun Kuriyama2013-06-074-0/+27
| | | | | | | | | | | configuration template to write items repeatedly. In section, you can write actual configuration for actual input/output plugin, with special directives for loop controls. WWW: https://github.com/tagomoris/fluent-plugin-config-expander Notes: svn path=/head/; revision=320207
* - Remove the WITH_LINUXTHREADS knob from the Makefile.Philippe Audeoud2013-06-071-15/+4
| | | | | | | | PR: ports/179354 Submitted by: rene@ Notes: svn path=/head/; revision=320203
* sysutils/userspace-rcu: Rename to sysutils/liburcu, update to 0.7.6Kubilay Kocak2013-06-076-9/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Rename to sysutils/liburcu (according to upstream) - Update MOVED - Remove userspace-rcu from sysutils/Makefile - Add liburcu to sysutils/Makefile - Update dns/knot LIB_DEPENDS dependency While I'm here: - Update to 0.7.6 - Add CONFIGURE_ARGS for correct --docdir - Add regression-test: target - Update COMMENT - Re-order USE_* section - pkg-descr: Tab->space in WWW: - Update WWW: URL Changes: 2013-01-09 Userspace RCU 0.7.6 * Discourage use of pthread_atfork() for call_rcu handlers * Fix call_rcu fork handling * test: fork handling * Fix TLS detection: test with linker, add --disable-compiler-tls * Cleanup: cast pthread_self() return value to unsigned long * Fallback mechanism not working on platform where TLS is unsupported PR: ports/179358 Approved by: Leo Vandewoestijne <freebsd@dns-lab.com> (maintainer) Notes: svn path=/head/; revision=320197
* TailInput exteded plugin for fluentd. It assumes that this plug-in isJun Kuriyama2013-06-074-0/+25
| | | | | | | | | used with "fluent-plugin-tail-alternative". WWW: https://github.com/yteraoka/fluent-plugin-tail-asis Notes: svn path=/head/; revision=320143
* Convert to new options frameworkBaptiste Daroussin2013-06-061-10/+7
| | | | Notes: svn path=/head/; revision=320136
* Convert to new options frameworkBaptiste Daroussin2013-06-061-13/+8
| | | | Notes: svn path=/head/; revision=320135
* Update to version 0.23Pawel Pekala2013-06-062-3/+3
| | | | | | | | PR: ports/179144 Submitted by: James Hunt <james.hunt@ubuntu.com> (maintainer) Notes: svn path=/head/; revision=320103
* File output plugin alternative implementation, is 100% compatible withJun Kuriyama2013-06-064-0/+27
| | | | | | | | | | fluentd built-in 'out_file', and added many options to format output as you want. WWW: http://rubygems.org/gems/fluent-plugin-file-alternative Notes: svn path=/head/; revision=320046
* - Upgrade to 0.10.34 and unbreak.Jun Kuriyama2013-06-062-4/+4
| | | | | | | Related to: ports/179183 Notes: svn path=/head/; revision=320044
* Fluent::Mixin::PlainTextFormatter is a mix-in module, that providesJun Kuriyama2013-06-064-0/+28
| | | | | | | | | | | '#format' instance method and its configurations to Fluentd BufferedOutput Plugin and TimeSlicedOutput Plugin, to output plain text data (to file, REST storages, KVSs ...). WWW: https://rubygems.org/gems/fluent-mixin-plaintextformatter Notes: svn path=/head/; revision=320042
* Remove expired port:Rene Ladan2013-06-0528-1990/+0
| | | | | | | 2013-03-01 sysutils/sge62: Ancient and unsupported release Notes: svn path=/head/; revision=320021
* - Update to 2013-04-13Pav Lucistnik2013-06-052-3/+3
| | | | | | | Submitted by: gleb (maintainer) Notes: svn path=/head/; revision=320002
* - Update to 0.15.3Frederic Culot2013-06-055-15/+15
| | | | | | | | PR: ports/179265 Submitted by: Christer Edwards <christer.edwards@gmail.com> (maintainer) Notes: svn path=/head/; revision=319966
* The ddpt utility is a variant of the standard Unix command dd whichXin LI2013-06-045-0/+33
| | | | | | | | | | | | copies files. The ddpt utility specializes in files that are block devices. For block devices that understand the SCSI command set, finer grain control over the copy may be available via a SCSI pass-through interface. Website: http://sg.danny.cz/sg/ddpt.html Notes: svn path=/head/; revision=319927
* Update to 2.0.16Florian Smeets2013-06-042-3/+3
| | | | Notes: svn path=/head/; revision=319924
* Update to 1.36.Xin LI2013-06-043-3/+11
| | | | Notes: svn path=/head/; revision=319923
* Move the old rrd files over if present on package installChris Rees2013-06-041-1/+1
| | | | Notes: svn path=/head/; revision=319895