Commit graph

205072 commits

Author SHA1 Message Date
wen
8419474f3c Update to 2.14
Upstream changes:
2.14 23 Jul 2013
	- quick mod to keep META.yml current

2.13 23 Jul 2013
	- updated SvUPGRADE to a statement
	- patched for WIN64
2013-08-15 09:06:18 +00:00
wiz
aa843efb15 + cdrtools-3.01a17, digikam-3.3.0, libkface-3.3.0, libkgeomap-3.3.0,
libkvkontakte-3.3.0, libmediawiki-3.3.0, mng-2.0.2, mono-3.2.1,
  perl5-5.18.1, py-jinja2-2.7.1, py-virtualenv-1.10.1, x264-devel-20130810.
2013-08-15 08:54:36 +00:00
wen
7b656524aa Updated time/p5-MooseX-Types-DateTime to 0.08 2013-08-15 08:54:25 +00:00
wen
d607e55e7a Update to 0.08
Upstream changes:
0.08    2012-12-11 12:18:56 Europe/London

        - Require perl 5.8.3, as Moose does

0.07    2011-12-12 12:58:19 Europe/London

        - Provide optimize_as for pre-2.0100 Moose versions
        - Bump MooseX::Types version requirement (RT#73188)
        - Add missing dependencies
        - Enforce version dependencies at runtime (RT#73189)

0.06
        - Use inline_as instead of the deprecated optimize_as
2013-08-15 08:51:48 +00:00
obache
ea4a770a24 LICENSE=gnu-gpl-v3 2013-08-15 08:36:55 +00:00
obache
0d28e0d5a2 Updated chat/pidgin-libnotify to 0.14nb30 2013-08-15 08:35:31 +00:00
obache
a4778c461a Switch to use libnotify07.
Bump PKGREVISION.
2013-08-15 08:35:13 +00:00
wen
2adec301c3 Updated devel/p5-Test-Aggregate to 0.368 2013-08-15 08:21:54 +00:00
wen
e5da28f5a6 Update to 0.368
Upstream changes:
0.368  2013-08-14
        - Fix tests on windows

0.367  2013-08-13
        - Improve Test::Aggregate::Nested error handling:
          Don't treat undef as a failure;
          Show a warning and let Test::More::subtest() determine the result.
          This solves the false negative reported in
          https://rt.cpan.org/Public/Bug/Display.html?id=87240
          Thanks to the venerable Andreas J. K枚nig for reporting!
        - Add more tests.
        - Actually include previously added tests to the dist
          (Where are you Dist::Zilla?)

0.366  2013-07-11
        - Update metadata; Re-release to reindex with additional permissions

0.365  2013-07-10
        - Avoid printing unnecessary "ok - "'s diag()s when they are passing,
          and when the 'verbose' option is set to 0.
            - The problem was that the $verbose option was hard-coded as
              '2' deep inside the module.
        - Catch errors in tests under Test::Aggregate::Nested; report as ok(0)
        - Pod fixes
        - Update repository metadata
2013-08-15 08:20:37 +00:00
jperkin
1c740396ea Updated x11/xorg-cf-files to 1.0.5nb1 2013-08-15 08:15:17 +00:00
jperkin
06d880040d Use pkgsrc INSTALL in more places, not all SunOS 5.11 systems
have /usr/gnu tools.

Bump PKGREVISION.
2013-08-15 08:15:04 +00:00
obache
dfe8384d89 Updated audio/rhythmbox to 0.12.8nb29 2013-08-15 08:05:35 +00:00
wen
1c0234cc3c Updated converters/p5-MARC-Charset to 1.35 2013-08-15 08:04:49 +00:00
obache
cf1e754224 Switch to use libnotify07.
Bump PKGREVISION.
2013-08-15 08:04:29 +00:00
wen
314a54e5e8 Update to 1.35
Upstream changes:
1.35 Tue Aug 13 19:50:55 PDT 2013
    - improve conversion of certain composed characters to MARC8

      Some characters should not be fully decomposed
      before converting them to MARC8.  This patch adds
      a table of such characters, based on Annex A of
      http://www.loc.gov/marc/marbi/2006/2006-04.html
      and on some sample records provided by Jason
      Stephenson of MVLC.

    - recognize G0 and G1 characters properly

      When converting from MARC8 to UTF8, MARC::Charset now
      properly recognizes if a (single-byte) MARC8 character falls
      in G0 or G1.

      This is part of the fix for RT#63271 (converting characters
      in the Extended Cyrillic character set), but should also
      fix similar issues with converting characters in the extended
      Arabic set.

      This commit also means that all MARC8 character sets that support
      both G0 and G1 wll be properly converted, regardless of whether
      they're currently set as the G0 or G1 character set.  For example,
      it is now possible to convert Extended Latin as G0 or Basic Latin
      as G1.

      This fixes RT#63271

    - have MARC::Charset::Code->marc_value() handle G0/G1 conversion

      Since there's at present no need to do things like have
      ANSEL be the G0 character set when converting from UTF8 to
      MARC8, this commit centralizes the logic for deciding
      whether to return the G0 or G1 MARC8 representation of a
      character.

      Also add MARC::Charset::Code->g0_marc_value(), which returns
      the G0 representation of the character for use by the
      character DB.

    - New test cases for converting Vietnamese and Extended Cyrillic
      text.

1.34 Mon Feb 11 09:10:35 PST 2013
    - RT#83257: use AnyDBM_File rather than hardcode GDBM_File

      To improve portability, use AnyDBM_File to select a DBM
      rather than rely on GDBM_File.  GDBM_File apparently used
      to be a core module, but not all distributions included it,
      particularly OS X.  In any event, GDBM_File is no longer
      core.

      This patch also includes a tweak to allow MARC::Charset to
      work with NDBM_File and ODBM_File, neither of which
      support 'exists'.

      I've tested MARC::Charset successfully on the following
      DBMs:

      - GDBM_File
      - DB_File
      - NDBM_File
      - ODBM_File
      - SDBM_File

      This is also my preferred order; SDBM_File is selected last
      because it produces the biggest data file on disk.

    - RT#38912: fix mapping of double diacritics (ligature and double
      tilde).
      Thanks to Thomas P. Ventimiglia for the bug report and test case.
2013-08-15 08:02:23 +00:00
obache
12074ee84b no need to manage desktopdb.
ride on last bump.
2013-08-15 07:20:27 +00:00
obache
5be9b4767e Updated audio/ario to 1.5.1nb20 2013-08-15 07:16:25 +00:00
obache
1628466cdd Switch to use libnotify07.
Bump PKGREVISION.
2013-08-15 07:16:07 +00:00
richard
ebbc151c5b fix -specs for ccache 2013-08-15 06:48:50 +00:00
obache
551241a08c Revbump after updating lang/lua to 5.2.2. 2013-08-15 06:32:05 +00:00
obache
acfab93250 Updated sysutils/brasero-nautilus to 2.32.1nb22 2013-08-15 06:00:01 +00:00
obache
17f87116ff dependency on libnotify had been dropped before 2.26.x.
bump PKGREVISION.
2013-08-15 05:58:53 +00:00
obache
e323ff2939 Updated sysutils/gnome-volume-manager to 2.24.1nb28 2013-08-15 05:46:26 +00:00
obache
8416b1ed54 Update packaging
* switch to use libnotify07
* no need to maintain desktopdb.
* LICENSE=gnu-gpl-v2

Bump PKGREVISION.
2013-08-15 05:45:54 +00:00
obache
d70bbc609d Updated x11/eekboard to 1.0.5nb10 2013-08-15 05:41:51 +00:00
obache
9d71d1d198 Not using libnotify since 0.90.1.
Bump PKGREVISION.
2013-08-15 05:19:36 +00:00
wen
944c0adca1 Updated devel/p5-Scalar-List-Utils to 1.31 2013-08-15 02:45:01 +00:00
wen
efeca22af8 Update to 1.31
Upstream changes:
1.31 -- Wed Aug 14 20:38 UTC 2013

  * Bugfix pairmap to return list length in scalar context
  * Added "Odd number of elements" warnings to all pair* functions

1.30 -- Mon Aug 05 13:09 UTC 2013

  * Added pairfirst
  * Added MULTICALL implementations to pairmap/pairgrep/pairfirst
  * Fix declaration-after-code for C99-challenged compilers
  * Documentation updates to List::Util

1.29 -- Thu Aug 01 13:40 UTC 2013

  * Bugfix to pairmap/pairgrep when stack moves beneath them during operation

1.28 -- Thu Aug 01 12:19 UTC 2013
  -- BROKEN; do not use. See 1.29

  * Added pairgrep, pairmap, pairs (inspired by List::Pairwise)
  * Added pairkeys and pairvalues

1.26_001 -- Sun Dec 23 15:58

  * Fix multicall refcount bug RT#80646

1.26 -- Sun Dec 16 19:39

  * Merge patch from JDHEDDEN - Add Scalar::Util::isdual() RT#76150

1.25_01 -- Wed Nov 21 09:47

  * Fix a hash order dependency bug t/tainted.t
    (Currently this is a core only version to fix perl5 smokes)
2013-08-15 02:43:24 +00:00
wen
e29db9969b Updated textproc/p5-XML-LibXML to 2.0100 2013-08-15 02:36:15 +00:00
wen
25e10f04f6 Update to 2.0100
Upstream changes:
2.0100          Wed 14 Aug 08:23:53 IDT 2013
    - Added the unique_key() method to XML::LibXML::Node.
    - t/40reader.t: assigning from $@ to a lexical so it won't be
    over-ridden.
        - https://rt.cpan.org/Ticket/Display.html?id=87830
        - Thanks to Douglas Christopher Wilson for the report.
2013-08-15 02:35:01 +00:00
wen
64137d10dd Updated math/R-DBI to 0.2.7 2013-08-15 02:23:38 +00:00
wen
cac6b6cc62 Update to 0.2.7
Upstream changes:
Version 0.2-7

* Trivial changes (updated package fields, daj)

Version 0.2-6

* Removed deprecated \synopsis in some Rd files (thanks to Prof. Ripley)
2013-08-15 02:22:18 +00:00
wen
72117c4c6a Updated math/R-car to 2.0.18 2013-08-15 01:59:19 +00:00
wen
449d398a53 Update to 2.0.18
Upstream changes:
Changes to Version 2.0-18

    o Bug fix to boot with type="residual"

    o Added densityPlot() function.

Changes to Version 2.0-17

    o Add a variable to AMSsurvey.

    o Fix to residualPlots to compute lack of fit tests with missing values and glms.

    o Fix to residualPlots with a 0/1 variable not declared a factor.

    o Boxplot() now works properly with at argument passed to boxplot() via ... (contribution of Steve Ellison).

    o qqPlot.lm() now works with "aov" objects (fixing problem reported by Thomas Burk).

    o Small fixes to code and docs.

Changes to Version 2.0-16

    o Fixed bug in printing of hypotheses by linearHypothesis(), where numeric
constants of the form 1.* or -1.* were printed incorrectly (reported by Johannes Kutsam).

    o Fixed a bug in showLabels() with multiple groups in the scatterplot() and scatterplotMatrix() function.

    o linearHypothesisTest() now tolerates newlines and tabs in hypotheses (suggestion of David Hugh-Jones).

    o two bugs fixed in Boot() (found by David Pain) changed argument f to f. in bootCase().

    o summary.Boot(), confint.Boot() and hist.Boot() handle aliases correctly.

    o Boxplot.formula() now accepts more than one conditioning variable (suggestion of Christina Yassouridis).

    O Boxplot() now properly handles at argument passed through via ... to boxplot() (contribution of Steve Ellison).

    o Small fixes.

Changes to Version 2.0-15

    o Added an argument coef. to linearHypothesis so tests of the linear hypohtesis form can be computed without reference to a fitted model

    o Added a linearHypothesis.nlsList method

    o Added an nls method for Boot

    o Recode() introduced as alias for recode() to avoid name clash with Hmisc.

    o residualPlots for glms now ignore starting values for the computing algorithm when computing lack of fit tests; starting values previously caused an error.

    o Marginal Model Plots now allow conditioning on a categorical variable.

Changes to Version 2.0-14

    o Smoothers now given as arguments to scatterplot(), scatterplotMatrix(), residualPlots() and other functions; gamLine(), loessLine() (default), and quantregLine() smoothers provided.

    o linearHypothesis.mer() and Anova.mer() now consistent with pbkrtest version 0.3-2.

    o Small changes and fixes.

Changes to Version 2.0-13

    o Added point marking (id.n, etc.) to dataEllipse

    o Changed the default for id.method with the invTranPlot to "x".

    o The ncvTest has been rewritten for stability, and unneeded 'data', 'subset' and 'na.action' argument have been removed

    o Added new function 'Boot' that is a simple front-end to boot::boot that will be useful when bootstrapping regression models.  Implemented for lm and glm, but this is likely to work for many other S3 regression models with and 'update' method, 'subset' argument.

    o Fixed bug in 'compareCoefs' with non-full rank models

    o Modified 'bootCase' to return a matrix of class c("bootCase", "matrix") so generic functions can be written to summarize these objects.

    o Minor changes to the returned value of showLabels to give both the label and the corresponding row number.  showLabels documentation tweaked.

    o Improved handling of center.pch argument to ellipse() (suggestion of Rob Kushler).

    o New test argument for linearHypothesis.mer()  and test.statistic argument for Anova.mer() for F-tests with Kenward/Roger df, provided by pbkrtest package.

    o Anova.mlm() now will do univariate repeated-measures ANOVA even if the error SSP matrix is singular.

    o hccm() will now accept a weighted linear models (suggestion of Stefan Holst Bache).

    o deltaMethod.default() now applies coef() and vcov() to a model for which these are supported (generalizing a suggestion by Scott Kostyshak).

    o Fixed handling of labels argument in scatterplot.formula() and scatterplotMatrix.formula().

    o Fixed qqPlot.default() so that it honors line="none" (bug reported by Rob Kushler).

    o Added new default method for confidenceEllipse(), which now can construct confidence ellipses for linear functions of coefficients.

    o globalVariables() called for R 2.15.1 or later.

    o Fixed bug in logit() when percents=TRUE and largest percent is 1 (reported by Eric Goodwin).

    o Added radius argument to scatter3d() (suggestion of Antonino Messina).

    o Fixed spurious errors message in scatter3d() when groups present but surface=FALSE (reported by David L. Carlson).
2013-08-15 01:56:37 +00:00
gsutre
03f8d28883 Protect /* in bitmaps/Imakefile so that imake does not mistake it for
the start of a comment.
2013-08-15 00:05:44 +00:00
gsutre
5d10eceda7 Remove gmake from TOOLS, to fix build on NetBSD 6.99.23.
The symptoms and the fix are the same as in PR/47933 (which
concerned audio/nas).

Why was GNU make required in the first place?
2013-08-14 23:51:08 +00:00
jmcneill
aacfca8b54 Build fixes for NetBSD arm 2013-08-14 22:16:54 +00:00
wiz
1cca864718 Updated devel/at-spi2-core to 2.8.0nb1 2013-08-14 20:39:26 +00:00
wiz
75c86f7bee Use MAKE_DIRS to create installation directory for default config file.
Bump PKGREVISION.
2013-08-14 20:39:16 +00:00
wiz
4070a50075 Updated editors/emacs24 to 24.3nb5 2013-08-14 20:17:18 +00:00
wiz
0b9ec9ea7d Add option for gtk3.
Rename "gtk" option to gtk2.
Change default from gtk to gtk3.

Correct a comment while here.

Bump PKGREVISION.
2013-08-14 20:17:08 +00:00
wiz
4acb82fcdd Apply patch from Onno van der Linden to try fixing PR 48116. 2013-08-14 17:54:06 +00:00
taca
97f24ec72b + nullmailer-1.13. 2013-08-14 15:45:21 +00:00
taca
eb6e945e6b Note update of lang/php53, lang/php54 and lang/php55.
lang/php53	5.3.27nb2
	lang/php54	5.4.17nb2
	lang/php55	5.5.1nb1
2013-08-14 15:45:07 +00:00
taca
1d45c6e860 Add fix fo openssl, CVE-2013-4073.
Bump PKGREVISION.
2013-08-14 15:42:56 +00:00
taca
ef1cbc9e4c Correct checking condition of PHP_CHECK_INSTALLED. 2013-08-14 14:53:03 +00:00
adam
b7f0db8c21 Updated net/samba to 3.6.18 2013-08-14 14:45:40 +00:00
adam
bec3356707 Changes 3.6.18:
* BUG 9777: vfs_dirsort uses non-stackable calls, dirfd(), malloc instead
  of talloc and doesn't cope with directories being modified whilst reading.
* BUG 9678: Windows 8 Roaming profiles fail.
* BUG 9636: Fix parsing linemarkers in preprocessor output.
* BUG 9880: Use of wrong RFC2307 primary group field.
* BUG 9983: Fix output of syslog-facility check.
* BUG 10064: Linux kernel oplock breaks can miss signals.
2013-08-14 14:40:10 +00:00
obache
72a372aa87 Updated net/mikutter to 0.2.2.1328 2013-08-14 13:06:28 +00:00
obache
644460a609 Update mikutter to 0.2.2.1328.
(drop dependency on libnotify, optional and alternative selectable).

bug fixes.
2013-08-14 13:06:13 +00:00