aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-model.h
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/table/e-table-model.h')
-rw-r--r--widgets/table/e-table-model.h32
1 files changed, 19 insertions, 13 deletions
diff --git a/widgets/table/e-table-model.h b/widgets/table/e-table-model.h
index 21febaf992..8cce0054d3 100644
--- a/widgets/table/e-table-model.h
+++ b/widgets/table/e-table-model.h
@@ -26,14 +26,14 @@ typedef struct {
*/
int (*column_count) (ETableModel *etm);
int (*row_count) (ETableModel *etm);
+ void (*append_row) (ETableModel *etm, ETableModel *source, int row);
+
void *(*value_at) (ETableModel *etm, int col, int row);
void (*set_value_at) (ETableModel *etm, int col, int row, const void *value);
gboolean (*is_cell_editable) (ETableModel *etm, int col, int row);
- void (*append_row) (ETableModel *etm, ETableModel *source, int row);
- /* the sort group id for this row */
- const char *(*row_sort_group) (ETableModel *etm, int row);
- gboolean (*has_sort_group) (ETableModel *etm);
+ char *(*get_save_id) (ETableModel *etm, int row);
+ gboolean (*has_save_id) (ETableModel *etm);
/* Allocate a copy of the given value. */
void *(*duplicate_value) (ETableModel *etm, int col, const void *value);
@@ -45,6 +45,7 @@ typedef struct {
gboolean (*value_is_empty) (ETableModel *etm, int col, const void *value);
/* Return an allocated string. */
char *(*value_to_string) (ETableModel *etm, int col, const void *value);
+
/*
* Signals
@@ -58,13 +59,13 @@ typedef struct {
* A row inserted: row_inserted
* A row deleted: row_deleted
*/
- void (*model_pre_change) (ETableModel *etm);
+ void (*model_pre_change) (ETableModel *etm);
- void (*model_changed) (ETableModel *etm);
- void (*model_row_changed) (ETableModel *etm, int row);
- void (*model_cell_changed) (ETableModel *etm, int col, int row);
- void (*model_row_inserted) (ETableModel *etm, int row);
- void (*model_row_deleted) (ETableModel *etm, int row);
+ void (*model_changed) (ETableModel *etm);
+ void (*model_row_changed) (ETableModel *etm, int row);
+ void (*model_cell_changed) (ETableModel *etm, int col, int row);
+ void (*model_rows_inserted) (ETableModel *etm, int row, int count);
+ void (*model_rows_deleted) (ETableModel *etm, int row, int count);
} ETableModelClass;
GtkType e_table_model_get_type (void);
@@ -72,13 +73,15 @@ GtkType e_table_model_get_type (void);
int e_table_model_column_count (ETableModel *e_table_model);
const char *e_table_model_column_name (ETableModel *e_table_model, int col);
int e_table_model_row_count (ETableModel *e_table_model);
+void e_table_model_append_row (ETableModel *e_table_model, ETableModel *source, int row);
+
void *e_table_model_value_at (ETableModel *e_table_model, int col, int row);
void e_table_model_set_value_at (ETableModel *e_table_model, int col, int row, const void *value);
gboolean e_table_model_is_cell_editable (ETableModel *e_table_model, int col, int row);
-void e_table_model_append_row (ETableModel *e_table_model, ETableModel *source, int row);
-const char *e_table_model_row_sort_group (ETableModel *e_table_model, int row);
-gboolean e_table_model_has_sort_group (ETableModel *e_table_model);
+char *e_table_model_get_save_id (ETableModel *etm, int row);
+gboolean e_table_model_has_save_id (ETableModel *etm);
+
void *e_table_model_duplicate_value (ETableModel *e_table_model, int col, const void *value);
void e_table_model_free_value (ETableModel *e_table_model, int col, void *value);
@@ -93,6 +96,9 @@ void e_table_model_pre_change (ETableModel *e_table_model);
void e_table_model_changed (ETableModel *e_table_model);
void e_table_model_row_changed (ETableModel *e_table_model, int row);
void e_table_model_cell_changed (ETableModel *e_table_model, int col, int row);
+void e_table_model_rows_inserted (ETableModel *e_table_model, int row, int count);
+void e_table_model_rows_deleted (ETableModel *e_table_model, int row, int count);
+
void e_table_model_row_inserted (ETableModel *e_table_model, int row);
void e_table_model_row_deleted (ETableModel *e_table_model, int row);
ss='column1'>| Changes: http://search.cpan.org/dist/Lingua-EN-MatchNames/Changes * - Update to 1.35sunpoet2015-02-232-3/+3 | | | | Changes: http://search.cpan.org/dist/Lingua-EN-Nickname/Changes * - Add p5-Text-Soundex 3.04sunpoet2015-02-235-0/+38 | | | | | | | | | | | | | | | | | | | Soundex is a phonetic algorithm for indexing names by sound, as pronounced in English. The goal is for names with the same pronunciation to be encoded to the same representation so that they can be matched despite minor differences in spelling. Soundex is the most widely known of all phonetic algorithms and is often used (incorrectly) as a synonym for "phonetic algorithm". Improvements to Soundex are the basis for many modern phonetic algorithms. (Wikipedia, 2007) Text::Soundex implements the original soundex algorithm developed by Robert Russell and Margaret Odell, patented in 1918 and 1922, as well as a variation called "American Soundex" used for US census data, and current maintained by the National Archives and Records Administration (NARA). The soundex algorithm may be recognized from Donald Knuth's The Art of Computer Programming. The algorithm described by Knuth is the NARA algorithm. WWW: http://search.cpan.org/dist/Text-Soundex/ * - Add p5-Task-Tiny 0.002sunpoet2015-02-235-0/+27 | | | | | | Task::Tiny may be used to install a selection of tiny Perl extensions from CPAN. WWW: http://search.cpan.org/dist/Task-Tiny/ * - Add LICENSEsunpoet2015-02-231-5/+5 | | | | | - Remove regression-test: - Take maintainership * - Update to 1.66sunpoet2015-02-232-3/+3 | | | | Changes: http://search.cpan.org/dist/Pod-Usage/CHANGES * www/seahub: Relocate python filesmarino2015-02-234-6358/+6392 | | | | | | | Also use Djblets Pillow instead of Djblets PIL. PR: 196920 Submitted by: maintainer (Jingfeng Yan) * - Fix positioning of _Noreturn attribute for libevvsevolod2015-02-231-1/+12 | | | | | | | - Do not bump portrevision, since a package has not been changed PR: 197864 Submitted by: dim * www/py-seafdav: Fix webdav functionalitymarino2015-02-232-22/+160 | | | | | PR: 196869 Submitted by: maintainer (Jingfeng Yan) * www/py-seafobj: Relocate python filesmarino2015-02-232-44/+64 | | | | | PR: 196919 Submitted by: maintainer (Jingfeng Yan) * net-mgmt/seafile: relocate python filesmarino2015-02-232-91/+99 | | | | | PR: 196922 Submitted by: maintainer (JingFeng Yan) * textproc/libucl: Update to 0.7.2koobs2015-02-233-6/+6 | | | | | | | | - Update to 0.7.2 - Update pkg-plist PR: 197777 (lucky 7's) Submitted by: Neel Chauhan <neel neelc org> * net-mgmt/ccnet: Add support for LDAPmarino2015-02-232-65/+81 | | | | | PR: 196866 Submitted by: maintainer (JingFeng Yan) * Update to 0.14.0.20150223 (snapshot)jbeich2015-02-235-94/+6 | | | | | | | | ChangeLog: - Remove optional decoders (png, jpg, mp3) - Change "override" to "final" in some places - Upstream some changes from FreeBSD port, see https://github.com/eglaysher/rlvm/pull/64 * - License clarified by author (thinker at branda com to)amdmi32015-02-231-1/+1 | * Update to 1.5.3olivierd2015-02-232-4/+4 | * - Update to 0.10.1olivierd2015-02-232-3/+7 | | | | | | | | | | - Add test in post-install target, otherwise example files are always installed ChangeLog: http://werkzeug.pocoo.org/docs/0.10/changes/#version-0-10 PR: 197686 Submitted by: myself Approved by: moggie (maintainer) * - Strip libraryamdmi32015-02-231-0/+1 | * - Simplify MASTER_SITESamdmi32015-02-231-1/+7 | | | | | - Add LICENSE - Strip libraries * - Add LICENSEamdmi32015-02-231-1/+4 | | | | - Fix library installation * - Add LICENSEamdmi32015-02-231-0/+6 | | | | - Strip libraries * - Drop @dirrm* from plistamdmi32015-02-232-1/+1 | | | | - Strip library * - Clarify LICENSEamdmi32015-02-231-1/+3 | | | | | - Add LICENSE_FILE - Strip library * - Add LICENSE_FILEamdmi32015-02-231-0/+4 | | | | - Strip library * games/wxlauncher: update to 0.9.5rm2015-02-232-11/+26 | | | | | PR: 197383 Submitted by: lightside@gmx.com (maintainer) * Replace using _GCC_VER which is essentially internal to Mk/bsd.gcc.mkgerald2015-02-232-10/+9 | | | | | | | | (and replaced usage of _GCC_RUNTIME) by LDFLAGS which is a cleaner and more robust approach. PR: 197385 Submitted by: phd_kimberlite@yahoo.co.jp (maintainer) * x11/deforaos-panel: update to 0.3.1rm2015-02-234-32/+28 | | | | | | PR: 197322 Submitted by: olivier@cochard.me (maintainer) Reviewed by: marino * devel/py-grab: remove erroneously added dependency on py-sixrm2015-02-231-2/+2 | * lang/urweb: update to 20150214rm2015-02-232-3/+3 | | | | | PR: 197660 Submitted by: Timothy Beyer <beyert@cs.ucr.edu> (maintainer) * devel/py-grab: update to 0.5.2rm2015-02-232-7/+7 | * Remove the bitrotted remains of the RusXMMS patches, commented outnaddy2015-02-232-44/+2 | | | | | | | | | for nine months and broken for longer. The RusXMMS modifications have turned into a partial rewrite of XMMS. They are too intrusive and outside the scope of an optional patch to XMMS. I urge anybody interested in this to revive the russian/xmms port as a full-fledged fork. * Update CONFLICTS.kwm2015-02-233-5/+1 | | | | | | | | | | | xfce4-notifyd was updated to no longer conflict with notification-daemon. There is no conflict anymore between notification-daemon and xfce4-notification-daemon Only notify-osd and xfce4-notification-daemon conflict with each other. PR: 197851 (based on) Submitted by: Ben Woods <woodsb02@gmail.com> Reviewed by: maintainer (ehaupt@) * Update to Wine 1.7.37. This includes the following changes:gerald2015-02-233-5/+22 | | | | | | | | | | | | - Interface change notifications. - Support for the UTF-7 encoding. - A number of graphical fixes for themed controls. - Wininet now implemented on top of Win32 sockets. - Various bug fixes. Plus the following changes from Wine 1.7.36 which was not properly announced: - Support for configuring speakers in Winecfg. - Support for typographic features in DirectWrite. * Update waffle to 1.5.1.kwm2015-02-2311-54/+72 | | | | | | | | Use USES=compiler:c11 to allow it to build on older FreeBSD versions. Enable GLX support. Fix plist when cmake is in debug build mode. Submitted by: dumbbell@ * Upgrade to version 0.13:truckman2015-02-232-4/+3 | | | | | | | | | | | 0.13 Fri Feb 20 16:11:02 EST 2015 - fully integrated Math::Int64 and hex parsing - added some exceptions for certain failure modes - enabled environment variable control of debug (NET_NMSG_DEBUG) Differential Revision: https://reviews.freebsd.org/D1933 Approved by: mat (mentor) Sponsored by: Farsight Security Inc. * Fix packagingantoine2015-02-231-1/+2 | * Upgrade smokeping to 2.6.11rodrigo2015-02-237-54/+124 | | | | | PR: 197579 Submitted by: pi * Fix distinfoantoine2015-02-231-2/+2 | * Unbreakantoine2015-02-231-1/+1 | * . Fix permissions on DATADIRglewis2015-02-231-0/+1 | | | | PR: 192743 * misc/fortune-mod-epictetus: update 0.1 -> 0.2robak2015-02-232-6/+12 | | | | | | | | - Add LICENSE and LICENSE_FILE - Convert to USE_GITHUB PR: 197602 Submitted by: Andy Kosela <akosela@andykosela.com> * mail/libcmime: update 0.1.11 -> 0.1.15robak2015-02-234-6/+202 | | | | | | | | - Add DOXYGEN option - Bump mail/spmfilter PORTREVISION PR: 195995 Submitted by: Axel Steiner <ast@treibsand.com> * - Unbreakamdmi32015-02-232-2/+12 | | | | | | - Add LICENSE_FILE Approved by: portmgr blanket * - Update to 2.3.10. [1]rakuco2015-02-233-10/+8 | | | | | | | | | - Add some missing dependencies: * USES=pkgconfig for libyaz to be detected correctly. * USE_KDE4=libkcompactdisc for kdemultimedia to be correctly found. PR: 197918 [1] Submitted by: djdomics@gmail.com [1] * New port: sysutils/vmtouchtrociny2015-02-234-0/+34 | | | | | | | | vmtouch is a tool for learning about and controlling the file system cache of unix and unix-like systems. Author: Doug Hoyte <doug@hcsw.org> WWW: http://hoytech.com/vmtouch/ * Update to 3.0.5518.7.adamw2015-02-223-21/+21 | | | | | | | | | | | | | Changes in this release: - Server dashboard look & feel refresh - Support Sync for Windows 8.1 - Support downloading - Revamped web client search - Support SSL - Support requests without /mediabrowser suffix PR: 197900 Submitted by: Ben Woods (maintainer) * A number of the discount manpages are broken due to FreeBSD's lack of support ofadamw2015-02-222-0/+20 | | | | | | | | the .so macro. I know that work has been done on this in base, but for now fix discount's manpages by installing them as symlinks instead. PR: 196842 Approved by: maintainer timeout (> 1 month) * - Fix whitespaceamdmi32015-02-221-30/+4 | | | | | | - Add NO_ARCH - Simplify installation and make it 2x faster - Drop @dirrm* from plist * Update to 2.11.08.adamw2015-02-222-5/+5 | | | | Changes: http://www.nasm.us/doc/nasmdocc.html * www/squid33: Fix [-Werror=logical-not-parentheses] (gcc5)marino2015-02-222-1/+12 | | | | Fix logical evaluation of condition (caught by gcc5) * net/widentd: Update MASTER_SITES, WWW, Add LICENSEpi2015-02-223-15/+15 | | | | | | PR: 196628 Submitted by: Chris Hutchinson <portmaster@bsdforge.com> Approved by: dirkx@webweaving.org (maintainer timeout) * - Strip libraryamdmi32015-02-221-0/+5 | * x11/slim: fix to honour login.conf, WWWpi2015-02-226-19/+132 | | | | | | PR: 195759 Requested by: Jonathan Chen <jonc@chen.org.nz> Approved by: Henry Hu <henry.hu.sh@gmail.com> (maintainer) * - Strip libraryamdmi32015-02-221-0/+1 | * - Fix path to Gnome Pie iconnivit2015-02-221-1/+1 | * security/p5-Crypt-OpenSSL-X509: Fix [-Werror=logical-not-parentheses]marino2015-02-222-1/+21 | | | | | | | | | | | | | This bug was first discovered by Fedora 22 team building with gcc5 and they reported it upstream: https://github.com/dsully/perl-crypt-openssl-x509/issues/39 I believe this patch is equivalent but a bit nicer than the fix suggested there. The problem is "not (c < 0)" is desired but "(not c) < 0)" is what the condition evaluates to. The joy of C. Approved by: Just fix it * security/honggfuzz: Remove -Werror because it fails -pedantic checkmarino2015-02-221-1/+2 | | | | | | | Honggfuzz fails -pedantic checks on gcc-5. This wouldn't be a problem except for the fact -Werror was also set, so Werror is getting removed. Approved by: blanket * (Readdition of x11/gnome-pie which was removed on 372767)nivit2015-02-2214-1/+340 | | | | | | | | | Gnome-Pie is a circular application launcher. It is made of several pies, each consisting of multiple slices. The user presses a key stroke which opens the desired pie. By activating one of its slices, applications may be launched, key presses may be simulated or files can be opened. WWW: http://simmesimme.github.io/gnome-pie.html * - Update to 2.01sunpoet2015-02-223-5/+4 | | | | | | - Sort PLIST Changes: http://search.cpan.org/dist/Lingua-EN-Numbers/Changes * - Update to 0.55sunpoet2015-02-223-5/+4 | | | | | | - Sort PLIST Changes: http://search.cpan.org/dist/BerkeleyDB/Changes * - Update to 2.200002sunpoet2015-02-223-3/+5 | | | | Changes: http://search.cpan.org/dist/Net-CLI-Interact/Changes * - Update to 2.133sunpoet2015-02-222-3/+3 | | | | Changes: http://search.cpan.org/dist/CPAN-Meta-Requirements/Changes * Update to 1.0.16gblach2015-02-222-4/+3 | * - Update to 0.304sunpoet2015-02-223-10/+10 | | | | | | | | - While I'm here, fix and sort PLIST Changes: http://search.cpan.org/dist/Dancer2-Plugin-Auth-Extensible/Changes PR: 197914 Submitted by: Henk van Oers <hvo.pm@xs4all.nl> (maintainer) * - Update to 1.34sunpoet2015-02-222-3/+3 | | | | Changes: http://search.cpan.org/dist/Lingua-EN-MatchNames/Changes * - Update to 1.34sunpoet2015-02-222-3/+3 | | | | Changes: http://search.cpan.org/dist/Lingua-EN-Nickname/Changes * - Update to 2.07sunpoet2015-02-223-17/+18 | | | | | | | | - Add LICENSE - Remove post-patch: which is fixed by upstream - Sort PLIST Changes: http://search.cpan.org/dist/Graph-ReadWrite/Changes * - Update to 1.14sunpoet2015-02-223-5/+4 | | | | | | - Sort PLIST Changes: http://search.cpan.org/dist/B-Keywords/Changes * Update to 1.5.0. This update:cperciva2015-02-222-3/+3 | | | | | | | 1. Fixes a crash on platforms with AESNI support and a malloc which does not align large allocations to 16-byte boundaries. (AFAIK this does not affect FreeBSD.) 2. Turns on TCP_NODELAY in order to avoid Nagling latency problems. * Update to 1.10. This fixes a bug in ec2_fetchkey which made it fail tocperciva2015-02-222-3/+3 | | | | | | recognize when it was trying to create an account which already existed. Submitted by: Bradley T. Hughes * Upgrade to version 15.2.21 and unbreak.olgeni2015-02-223-270/+215 | * x11-toolkits/p5-Tk: 804.032 -> 804.033pi2015-02-224-18/+5 | | | | | Changes: http://cpansearch.perl.org/src/SREZIC/Tk-804.033/Changes * devel/py-pyro: update to 4.34rm2015-02-222-3/+3 | * devel/py-boto: update to 2.36.0rm2015-02-222-3/+3 | * net/py-smb: update to 1.1.15rm2015-02-222-3/+3 | * x11/sessreg: Use tradcpp to fix build on gcc-5marino2015-02-221-0/+3 | | | | | | | The building of the man page relies on cpp behavior that has changed in the latest version of cpp, so used tradcpp unconditionally. Approved by: blanket * - This port are no longer used or cared for.nemysis2015-02-221-1/+1 | * - This port are no longer used or cared for.nemysis2015-02-221-1/+1 | | | | | PR: 197891 Submitted by: gerald * Unbreak on i386 (and maybe other archs)antoine2015-02-221-8/+2 | * - Fix build whe NLS option is offsunpoet2015-02-221-0/+4 | * - Remove USE_RAKEsunpoet2015-02-221-1/+0 | * - Add PORTSCOUTsunpoet2015-02-221-0/+2 | * - Update to 2.10sunpoet2015-02-222-3/+3 | | | | Changes: http://search.cpan.org/dist/CPAN-Perl-Releases/Changes * - Strip libraryamdmi32015-02-221-0/+3 | * - Add LICENSEamdmi32015-02-221-0/+6 | | | | - Strip libraries * - Strip libraryamdmi32015-02-221-1/+2 | * - Add LICENSEamdmi32015-02-221-0/+6 | | | | - Strip libraries * - Add LICENSEamdmi32015-02-221-0/+4 | | | | - Strip libraries * - Simplify MASTER_SITESamdmi32015-02-221-2/+2 | | | | - Strip library * - Strip libraryamdmi32015-02-222-1/+1 | | | | - Drop @dirrm* from plist * Update to 1.0.6bapt2015-02-222-3/+3 | * Update to 5.9-20150214bapt2015-02-222-3/+3 | * Update to 1.1.1bapt2015-02-222-3/+3 | * www/py-django-appconf: update to 1.0.1rm2015-02-222-4/+6 | * devel/antlr: Remove faulty gcc 2.95 patchesmarino2015-02-222-32/+0 | | | | | | | | | | | | | | | | | According to the commit log, these patches were supposed to use <istream.h> for gcc version less than 3.2 (namely GCC 2.95). The logic is flawed. It doesn't work for gcc 3.2 or greater. There must have been a compatibility header in gcc 4 that masked the error. GCC5 doesn't have one so it broke. The logic is __GNU__ < 3 || __GNUC_MINOR__ < 2 it was intended to be __GNU__ < 3 || (__GNU__ == 3 && __GNU_MINOR__ < 2) However, there is no point in fixing these patches. These ancient GCCs aren't available on currently supported FreeBSD releases. Approved by: Just fix it * - Add LICENSEamdmi32015-02-221-0/+4 | | | | - Strip libraries * - Clarify LICENSEamdmi32015-02-221-1/+3 | | | | | - Add LICENSE_FILE - Strip library * Update KDevelop to 4.7.1.rakuco2015-02-229-33/+72 | | | | Release notes: https://www.kdevelop.org/47/kdevelop-471-released * math/ruby-numru_units: remove portrm2015-02-226-60/+1 | | | | | | | | Please use math/rubygem-numru-units instead. Since it's broken for a long time and there is no consumers in the ports tree, remove that w/o deprecation period. PR: 197020 Submitted by: murashin@gfd-dennou.org (maintainer) * audio/py-mutagen: version updaterm2015-02-222-4/+4 | | | | | | | | - update to 1.27 PR: 196823 Submitted by: olivierd Approved by: maintainer timeout (1 month) * databases/sqldeveloper: version updaterm2015-02-223-29/+26 | | | | | | | | | - update to 4.0.3.16.84 - pass maintainership to submitter - unmute installation commands PR: 196352 Submitted by: mizhka@gmail.com * devel/libssh: Remove -pedantic-error flags and reset portmarino2015-02-221-1/+3 | | | | | | | | | | | | | | | | This port breaks if it violates standards according to the -pedantic flag. Accord to gcc-5, it indeed does with dozens of warnings like this: /wrkdirs/security/libssh/work/libssh-0.6.3/include/libssh/priv.h:200:33: error: ISO C does not support '__FUNCTION__' predefined identifier [-Wpedantic] _ssh_set_error(error, code, __FUNCTION__, __VA_ARGS__) The maintainer has been MIA for over a year with PRs on 8 ports. I'm not waiting for this one to time out too. While here, reset MAINTAINER. PR: 197785 Submitted by: marino Approved by: maintainer reset * Unbreak INDEXantoine2015-02-221-0/+1 | * Hook the new u-boot ports to the buildbapt2015-02-221-0/+3 | * Update the Wandboard U-Boot port to account for the difference betweenian2015-02-223-22/+19 | | | | | | | | the actual SoC on the board (solo/dual/quad) and the soc name as needed for generating the fdt_file variable. The Solo and Dual-lite SoCs are considered to be the same part by the fdt data. Approved by: bapt * Add a U-Boot port for the Duovero system.ian2015-02-229-0/+375 | | | | | | PR: 196488 Submitted by: Scott Ellis Approved by: bapt * Add a U-Boot port for Pandaboard.ian2015-02-229-0/+375 | | | | | | PR: 196486 Submitted by: Scott Ellis Approved by: bapt * Add a U-Boot port for SolidRun Cubox-i and Hummingboard systems.ian2015-02-2212-0/+483 | | | | Approved by: bapt * Update libbluray 0.5.0 -> 0.7.0kami2015-02-225-25/+54 | | | | | | | | | | | - Add fontconfig dependency - Add libbdplus dependency - Add plist target, because mkplist does not handle options PR: 190958 Differential Revision: https://reviews.freebsd.org/D1754 Reviewed by: Carlo Strub <cs@freebsd.org> Approved by: Carlo Strub <cs@freebsd.org> * net/krdc:makc2015-02-222-0/+318 | | | | | | | - Add patch from upstream for FreeRDP 1.1+ support PR: 197374 Reported by: amvandemore@gmail.com * Update libaacs 0.7.0 -> 0.8.0kami2015-02-224-8/+28 | | | | | | | | | - Use Makefile.include from libbluray PR: 190958 Differential Revision: https://reviews.freebsd.org/D1754 Reviewed by: Carlo Strub <cs@freebsd.org> Approved by: Carlo Strub <cs@freebsd.org> * New port multimedia/libbdplus, part of the libbluray group.kami2015-02-225-0/+51 | | | | | | | PR: 190958 Differential Revision: https://reviews.freebsd.org/D1754 Reviewed by: Carlo Strub <cs@freebsd.org> Approved by: Carlo Strub <cs@freebsd.org> * databases/riak: update 1.4.10 -> 1.4.12robak2015-02-223-12/+14 | | | | | | - Fix issue with starting Riak due to incorrect dirs ownership PR: 195220 * Fix `make patch' after r379541.rakuco2015-02-221-7/+7 | | | | | | | The new patch just didn't apply, and apparently nobody tested it before committing... PR: 197483 * New port: devel/phpunit 4.5.0pi2015-02-224-0/+39 | | | | | | | | | | | | | PHPUnit is a regression testing framework used by the developer who implements unit tests in PHP. It is the most recent version of PHPUnit, but no longer distributed over PEAR. WWW: http://www.phpunit.de Note: This will probably replace devel/pear-PHPUnit3 soon. PR: 195464 Submitted by: Torsten Zühlsdorff <ports@toco-domains.de>, fullermd@over-yonder.net * This is a slave port of emulators/qemu-sbruno now. (not qemu-devel)nox2015-02-221-1/+1 | | | | Confusion reported by: linimon * Update to 4.3.10matthew2015-02-222-9/+7 | | | | | | | | This is a routine bugfix update - Drop @dirrm, @dirrmtry from plist Change Log: http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.3.10/phpMyAdmin-4.3.10-notes.html/view * mail/roundcube-contextmenu: 2.0 -> 2.1pi2015-02-224-13/+7 | | | | | | | | | - Update homepage URI - Update to work with roundcube 1.1 https://lists.freebsd.org/pipermail/freebsd-ports/2015-February/098132.html PR: 197843 Submitted by: Alexander Moisseev <moiseev@mezonplus.ru> (maintainer) * sysutils/puppet: Update to 3.7.4swills2015-02-224-7/+14 | | | | | | | | While here, mark it broken with Ruby 2.2. PR: 197194 Submitted by: Rick <vmiller@hostileadmin.com> Submitted by: Michael Moll <kvedulv@kvedulv.de> * Add support for armv6 by adding __clear_cache support to ASM in the javascriptsbruno2015-02-221-0/+11 | | | | | | | | assembler. This mirrors similar patches to other webkit ports. PR: 197483 Submitted by: mikael.urankar@gmail.com Reviewed by: rakuco@FreeBSD.org (for kde@) * Use metacpan as the WWW instead of Mojolicious's POD interface.adamw2015-02-221-1/+1 | | | | Suggested by: az * Allow the CC expansion to deal with a full path to a compiler. Thissbruno2015-02-221-1/+1 | | | | | | | | fixes building with an external toolchain where CC=/nxb-bin/usr/bin/cc when used via poudriere + qemu-bsd-user. PR: 196986 Approved by: maintainer timeout (2 weeks) * Fix typo: intalled -> installed.gerald2015-02-221-1/+1 | * Remove unneeded patches, so now the port patches again..kwm2015-02-222-42/+0 | | | | Pointyhat awarded to: kwm@ * Update to 1.51.adamw2015-02-222-3/+3 | * Execute the xymonlaunch process directly. The supplied runclient.shfeld2015-02-222-5/+43 | | | | | | | | | | | script duplicates much of the rc script and adds unnecessary complexity. While here ensure that leftover processes are cleaned up. This also fixes a recent regression which prevented xymon-client from reliably starting on boot. PR: 197827 * Add databases/p5-Mojo-Pg, a PostgreSQL integration for Mojolicious.adamw2015-02-225-0/+46 | * Properly sort two COMPHOLIO-specific items in pkg-plist.gerald2015-02-221-2/+2 | | | | PR: 197798 * Kerberos Version 5, Release 1.12.3 is released. This fixes multiplecy2015-02-225-200/+3 | | | | | | | | | | | | | | | | | vulnerabilities, some previously committed by point patches and others newly fixed in this release. * Fix multiple vulnerabilities in the LDAP KDC back end. [CVE-2014-5354] [CVE-2014-5353] * Fix multiple kadmind vulnerabilities, some of which are based in the gssrpc library. [CVE-2014-5352 CVE-2014-5352 CVE-2014-9421 CVE-2014-9422 CVE-2014-9423] Security: VuXML: 63527d0d-b9de-11e4-8a48-206a8a720317 Security: CVE-2014-5354, CVE-2014-5353 Security: CVE-2014-5352, CVE-2014-5352, CVE-2014-9421 Security: CVE-2014-9422, CVE-2014-9423 * Kerberos Version 5, Release 1.12.3 is released affectingcy2015-02-221-0/+29 | | | | | | | | | | | | | | | | security/krb5-112. This fixes multiple vulnerabilities, some previously committed by point patches and others newly fixed in this release. * Fix multiple vulnerabilities in the LDAP KDC back end. [CVE-2014-5354] [CVE-2014-5353] * Fix multiple kadmind vulnerabilities, some of which are based in the gssrpc library. [CVE-2014-5352 CVE-2014-5352 CVE-2014-9421 CVE-2014-9422 CVE-2014-9423] Security: CVE-2014-5354, CVE-2014-5353 Security: CVE-2014-5352, CVE-2014-5352, CVE-2014-9421 Security: CVE-2014-9422, CVE-2014-9423 * Bump PORTEPOCH on lang/ruby22 to avoid false positive vulnerability reportswills2015-02-221-1/+1 | | | | | PR: 197875 Submitted by: Yasuhiro KIMURA <freebsd.org@pob01.utahime.jp> * Update to 0.310. Remove ExtUtils-CBuilder dependency. This module canadamw2015-02-222-5/+4 | | | | | | | make use of it, but doesn't require it. It could also make use of File::Slurp::Tiny. Changes: https://metacpan.org/changes/distribution/Config-AutoConf * Update to 0.28.adamw2015-02-212-4/+3 | | | | | | | Changes: https://metacpan.org/changes/distribution/Capture-Tiny PR: 197723 Approved by: maintainer * Update to 5.20150220.adamw2015-02-212