Commit graph

227298 commits

Author SHA1 Message Date
mef
3a8ab8bf3e Update abcmidi from 2014-10-16 to 2014-12-25
(from doc/readme.txt)
  ---------------------
midi2abc version 2.94 January 05 2014
abc2midi version 3.42 December 25 2014 <- New
abc2abc  version 1.75 September 08 2013
yaps     version 1.56 November 04 2013
abcmatch version 1.62 January 01 2014
midicopy version 1.18 October 01 2013

  (summary from doc/CHANGES)
  --------------------------
October 29 2014

Abc2midi: more work was done with the bar repeat code in store.c
Abc2midi returns the incorrect line number when it detects a
problem with bar length on repeat.

November 02 2014

Abc2midi bug: the b code in the gchord string does not work
correctly when there are inversions. eg.

November 9 2014

Abc2midi grace bug: in the following example, the grace notes
cause a loss of synchronization between the two voices.

November 18 2014

Abc2midi fermata bug: the !fermata! instruction applied to a rest
also applies to the following chord. In the following example,

December 25 2014

Abc2midi new feature: the error and warning messages now provide
both the line and character position location in the abc tune
where the message was issued.
2015-01-23 00:02:48 +00:00
wiz
fd94498ad5 Reverted chromaprint ffmpeg2 change. 2015-01-22 22:45:43 +00:00
wiz
9ad520953a I was mistaken: this does not support ffmpeg2; revert previous. 2015-01-22 22:45:26 +00:00
fhajny
31e82bc0ec Still needs devel/yajl linked. Fixes build on NetBSD at least. PKGREVISION++ 2015-01-22 21:27:40 +00:00
wiz
90651a6305 Updated devel/fossil to 1.30 2015-01-22 20:51:45 +00:00
wiz
2fce7c2dca Update to 1.30:
This is Version 1.30. Key changes in this release include:

    Added the fossil bundle command.
    Added the fossil purge command.
    Added the fossil publish command.
    Added the fossil unpublished command.
    Enhance the /tree webpage to show the age of each file with
    the option to sort by age.
    Enhance the /brlist webpage to show additional information
    about each branch and to be sortable by clicking on column
    headers.
    Add support for Docker. Just install docker and type "sudo
    docker run -d -p 8080:8080 nijtmans/fossil" to get it running.
    Add the fossil fusefs DIRECTORY command that mounts a Fuse
    Filesystem at the given DIRECTORY and populates it with read-only
    copies of all historical check-ins. This only works on systems
    that support FuseFS.
    Add the administrative log that records all configuration.
    Added the /sitemap webpage.
    Added the /bloblist web page.
    Let fossil new no longer create an initial empty commit by
    default. The first commit after checking out an empty repository
    will become the initial commit.
    Added the fossil all dbstat and fossil all info commands.
    Update SQLite to version 3.8.8.
    Added the --verily option to the fossil clean command.
    Add the "autosync-tries" setting to control the number of
    autosync attempts before returning an error.
    Added a compile-time option (--with-miniz) to build using miniz
    instead of zlib. Disabled by default.
    Support customization of commands and webpages, including the
    ability to add new ones, via the "TH1 hooks" feature. Disabled
    by default. Enabled via a compile-time option.
    Add the [checkout], [render], [styleHeader], [styleFooter],
    [trace], [getParameter], [setParameter], [artifact], and
    [globalState] commands to TH1, primarily for use by TH1 hooks.
    Automatically adjust the width of command-line timeline output
    according to the detected width of the terminal.
    Prompt the user to optionally fix invalid UTF-8 at check-in.
    Added a line-number toggle option to the /info and /artifact
    pages.
    Most commands now issue errors rather than silently ignoring
    unrecognized command-line options.
    Use full 40-character SHA1 hashes (instead of abbreviations)
    in most internal URLs.
    The "ssh:" sync method on windows now uses "plink.exe" instead
    of "ssh" as the secure-shell client program.
    Prevent a partial clone when the connection is lost.
    Make the distinction between 301 and 302 redirects.
    Allow commits against a closed check-in as long as the commit
    goes onto a different branch.
    Improved cache control in the web interface reduces unnecessary
    requests for common resources like the page logo and CSS.
    Fix a rare and long-standing sync protocol bug that would
    silently prevent the sync from running to completion. Before
    this bug-fix it was sometimes necessary to do "fossil sync
    --verily" to get two repositories in sync.
    Add the files_of_checkin virtual table - useful for ad hoc
    queries in the fossil sql interface, and also used internally.
    Added the "$secureurl" TH1 variable for use in headers and
    footers.
    (Internal:) Add the ability to include resources as separate
    files in the source tree that are converted into constant byte
    arrays in the compiled binary. Use this feature to store the
    Tk script that implements the --tk diff option in a separate
    file for easier editing.
    (Internal:) Implement a system of compile-time checks to help
    ensure the correctness of printf-style formatting strings.
    Fix CVE-2014-3566, also known as the POODLE SSL 3.0 vulnerability.
    Numerous documentation fixes and improvements.
    Other obscure and minor bug fixes - see the timeline for details.
2015-01-22 20:51:37 +00:00
wiz
fd689d6eec Fix build with libarchive-3.x by removing -Werror from CFLAGS. 2015-01-22 20:46:58 +00:00
tron
1f94875ad8 Add fix for CVE-2014-8109 taken for Apache SVN repository. 2015-01-22 20:02:37 +00:00
pho
763c3057a4 Add AC_SYS_LARGEFILE to files/configure.ac
Given that libarchive is built with large file support, pkg_install
needs it too. Otherwise libarchive and pkg_install may see different
definitions of types such as struct stat, resulting in a runtime
failure on some platforms (especially Darwin 9):

  % bmake package
  => Creating binary package /usr/pkgsrc/pkgtools/pkg_install/work/.packages/pkg_install-20141227.tgz
  pkg_create: cannot write to archive: tar format cannot archive this (type=00)

The reason why this was unnoticed until now is that libarchive's
"configure" has just been regenerated with Autoconf 2.69. Prior to
2.69, AC_SYS_LARGEFILE did nothing significant on Darwin so there was
no actual inconsistency between libarchive and pkg_install, which was
just coincidental.
2015-01-22 18:15:39 +00:00
joerg
4cbf260738 Fix dependency. 2015-01-22 16:54:21 +00:00
pho
6cc5bfc445 Fix linkage failure of libmatroska due to missing -lebml flag.
This seems to be an actual issue only on non-ELF platforms.

Pull request sent and merged to the upstream:
https://github.com/Matroska-Org/libmatroska/pull/5
2015-01-22 14:43:19 +00:00
pho
f401d7a502 Add 'c' to USE_LANGUAGES
Otherwise the configure script fails with:
  PKGSRC-WARNING: Something is trying to run the c compiler,
  PKGSRC-WARNING: but it is not added to USE_LANGUAGES in the package Makefile.

The package still don't build because of an upstream problem in Makefile.am, but it is a separate issue.
2015-01-22 12:57:27 +00:00
jmcneill
928dd6a5d7 Added games/ioquake3-raspberrypi version 20150118 2015-01-22 12:54:05 +00:00
jmcneill
ddf20d0c45 + ioquake3-raspberrypi 2015-01-22 12:51:27 +00:00
jmcneill
ce520ca64b Import ioquake3-raspberrypi-20150118 as games/ioquake3-raspberrypi.
ioquake3 is a game engine project which aims to build upon id Software's Quake
3 source code release. The source code was released on August 20, 2005 under
the GPL.

The project's goal is to create a bug-free, enhanced open source Quake 3
source code distribution upon which new games and projects can be based, as
well as an improved version (in relation to the original binaries) of the
engine for playing Quake III: Arena, the Team Arena expansion pack and all the
popular mods.

This version of the package is optimized for the Raspberry Pi.
2015-01-22 12:51:00 +00:00
wiz
0028e72f6b Updated audio/chromaprint to 1.2nb1 [wiz 2015-01-22] 2015-01-22 12:39:47 +00:00
wiz
7b7dfea5b3 Switch from ffmpeg1 to ffmpeg2.
Bump PKGREVISION.

Not buildlink3ed, so no recursive PKGREVISION++ necessary.
2015-01-22 12:38:43 +00:00
bouyer
2c518de3f4 updated geography/opencpn to 4.0.0 2015-01-22 12:34:51 +00:00
bouyer
60cbae90c8 Update opencpn to 4.0.0. Changes since 3.2.2:
- Increased performance in all modes, particularly when using OpenGL graphics
  acceleration.
- Additional network interface methods, including TCP/IP client/server and
  UDP broadcast.
- Support for multiple data source instances, including
    Filtering and prioritization of messages
    Output of NMEA data streams for real-time integration into ship systems
- Improved support for Mac OS X systems, including 64 bit native support.
- Integrated Tablet/Touch screen support.
- AIS Personal Locater Beacon (PLB) configuration and tracking.
- Enhanced AIS target tracking modes.
- GRIB PlugIn feature additions.
  Graphical GRIB email request generation.
  Moving particle wind overlay.
  Enhanced GRIB data type support.
- Dashboard PlugIn feature additions.
  More selectable instruments.
- Major update to embedded Users Manual.
- Measurably improved performance and reliability over all supported platforms.
2015-01-22 12:34:15 +00:00
bouyer
e7120f7592 Updated mail/sympa to 6.1.24 2015-01-22 12:05:29 +00:00
bouyer
b3de4a00d6 Update to 6.1.24. Changes since 6.1.22:
- wwsympa/wwsympa.fcgi.in:  Preventing faulty newsletter sending (security fix)
- src/sympa.pl.in: [Submitted by B. Marchal, univ. Lorraine] the
  loop_prevention_regex parameter was never taken into account.
- New scenarios to check DKIM signature
- When the user requests change of password via WWSympa or SympaSOAP, new
  password may be checked its strength.
- src/lib/Scenario.pm:  Now CustomCondition can set the action to
  take (do_it, reject ...) by setting $_, this allows for complex,
  single-module CustomConditions.
and various bug fixes
2015-01-22 12:04:36 +00:00
sevan
d1c8dac856 Remove the whitespace between $(LINKER_RPATH_FLAG) and the path. Otherwise the
flag may be misinterpreted by linker (e.g. Apple's ld)

Closes PR pkg/40028
Reviewed by wiz@
2015-01-22 11:56:31 +00:00
obache
9933a49f07 libltdl is used. 2015-01-22 11:53:21 +00:00
obache
f6ddef94e0 int64_t GNU atomic operations are used, check them instead in configure.
i486 is not sufficient, i686 and/or much newer compiler will be required for
NetBSD-5.*-i386.
2015-01-22 11:38:58 +00:00
sevan
c3f77a8905 Like the other versions of Python available in our tree, do not trim the library
name on FreeBSD
Resolves packing issue which causes the package to fail
2015-01-22 11:09:18 +00:00
obache
901b079579 --with-krb5-config is not in the current version, try to use currently available
other ways instead.
2015-01-22 09:32:49 +00:00
jperkin
ce0d0b89c4 Move -larchive from the general LIBS variable to each program that needs it,
prevents us from attempting to link the inplace libarchive against itself.
Fixes build on systems which do not include a native libarchive, and avoids
possible issues on systems which do.

Tested on SmartOS (no native libarchive) and OS X in both builtin and pkgsrc
configurations.  Ok joerg@.
2015-01-22 09:19:47 +00:00
wiz
eb394e9e83 Updated x11/libdrm to 2.4.59 2015-01-22 08:28:56 +00:00
wiz
c2c5db50e6 Update to 2.4.59:
Adam Cheney (1):
      Add new DRM_MODE_CONNECTOR and _ENCODER defines

Chris Wilson (1):
      intel: Avoid overcounting fences when emitting self-referential relocs

Damien Lespiau (3):
      intel/skl: Add SKL PCI ids
      intel/skl: Add gen9 to the buffer manager init
      intel/skl: add gen9 to the CS decoding init

Dave Airlie (1):
      radeon: align r600/700 fmask to 128 X blocks.

Jasper St. Pierre (1):
      modetest: Use threads for cursors instead of SIGALRM

Laurent Pinchart (1):
      modetest: Allocate dumb buffers with the correct bpp

Maarten Lankhorst (2):
      only enable support for freedreno on arm automatically
      configure.ac: bump version to 2.4.59 for release

Michel Dänzer (1):
      radeon: Always multiply pitch_bytes by nsamples, not by slice_pt

Paulo Zanoni (1):
      tests: add proptest

Rob Clark (6):
      freedreno: do handle lookup on handle and dmabuf import
      modetest: universal plane support
      modetest: alpha buffers
      update signed/object prop types
      configure/freedreno: make KGSL support optional
      configure/freedreno: enable freedreno by default

Thierry Reding (6):
      libdrm: Add NVIDIA Tegra support
      tegra: Add simple test for drm_tegra_open()
      tegra: Add GET/SET_TILING IOCTLs
      tegra: Add SET/GET_FLAGS IOCTLs
      tegra: Implement drm_tegra_bo_{get,set}_flags()
      tegra: Implement drm_tegra_bo_{get,set}_tiling()

Thomas Meyer (1):
      intel: Fix SIGSEGV in libdrm for heigth = 0 and width = 0

Ville Syrjälä (1):
      modetest: Print newline for empty blobs

Zhenyu Wang (1):
      intel: Fix GTT entry setup for aub dump
2015-01-22 08:28:48 +00:00
mef
ff2473d880 Updated devel/bison to 3.0.3 2015-01-22 04:58:12 +00:00
mef
ed4fac6431 based on PR pkg/49589
(pkgsrc)
 - Add comment on patch-lib_isnan.c (from cvs log)
(upstream)
 - Update devel/bison 3.0.2 to 3.0.3
Thanks obache and wiz for review.
---------------------------------
* Noteworthy changes in release 3.0.3 (2015-01-15) [stable]

** Bug fixes

*** C++ with Variants (lalr1.cc)

  Problems with %destructor and '%define parse.assert' have been fixed.

*** Named %union support (yacc.c, glr.c)

  Bison 3.0 introduced a regression on named %union such as

    %union foo { int ival; };

  The possibility to use a name was introduced "for Yacc compatibility".
  It is however not required by POSIX Yacc, and its usefulness is not clear.

*** %define api.value.type union with %defines (yacc.c, glr.c)

  The C parsers were broken when %defines was used together with "%define
  api.value.type union".

*** Redeclarations are reported in proper order

  On

    %token FOO "foo"
    %printer {} "foo"
    %printer {} FOO

  bison used to report:

    /tmp/foo.yy:2.10-11: error: %printer redeclaration for FOO
     %printer {} "foo"
              ^^
    /tmp/foo.yy:3.10-11:     previous declaration
     %printer {} FOO
              ^^

  Now, the "previous" declaration is always the first one.


** Documentation

  Bison now installs various files in its docdir (which defaults to
  '/usr/local/share/doc/bison'), including the three fully blown examples
  extracted from the documentation:

   - rpcalc
     Reverse polish calculator, a simple introductory example.
   - mfcalc
     Multi-function Calc, a calculator with memory and functions and located
     error messages.
   - calc++
     a calculator in C++ using variant support and token constructors.
2015-01-22 04:57:57 +00:00
sevan
490da9ab62 Closes PR pkg/49548
Reviewed by benz@ dholland@
2015-01-22 01:22:48 +00:00
wiz
1016f1c027 Updated textproc/p5-Filter to 1.54 2015-01-21 21:47:15 +00:00
wiz
1841638c19 Update to 1.54:
1.54 2015-01-17 rurban
----

  * Fix some compiler warnings for -Wall. Some patches by Dave Mitchell. RT #101587
    Note that perl5 itself is not yet -pedantic safe, Filter is.
2015-01-21 21:47:07 +00:00
wiz
58750f9d3d Updated devel/p5-Clone to 0.38 2015-01-21 21:45:35 +00:00
wiz
73f41846bf Update to 0.38:
0.38 2015-01-18 19:27:41  garu
  - typo fixes and improvements to the README (zmughal)
  - travis/coveralls integration (zmughal)
2015-01-21 21:45:28 +00:00
wiz
7c84f8f20d Updated textproc/p5-XML-LibXSLT to 1.94 2015-01-21 21:44:42 +00:00
wiz
b9214dc8ed Update to 1.94:
1.94    2015-01-19
    - Fix builds on older versions of libxslt.
        - Breakage caused by the MaxVars change.
        - https://rt.cpan.org/Ticket/Display.html?id=101605
        - Thanks to Deyan Ginev for the report.
2015-01-21 21:44:34 +00:00
wiz
f42c1aa669 Updated devel/p5-AppConfig to 1.67 2015-01-21 21:43:15 +00:00
wiz
6452823514 Update to 1.67:
1.67 2015-01-18 NEILB
    - Version bumped for a non-developer release, now I've sorted all
      the pod issues.
    - Added github repo to metadata and pod

1.66_03 2015-01-16 NEILB
    - More pod & whitespace cleanup

1.66_02 2015-01-15 NEILB
    - Getting pod fails from CPAN Testers for various recent versions
      of Perl. There was an empty =item.

1.66_01 2015-01-10 NEILB
    - First dev release, to check that everything's ok.
    - ABW granted co-maint, so I could set up a github repo and do a
      release with it linked. Thanks to ABW, ADAMK, and MST.
2015-01-21 21:43:07 +00:00
wiz
3c944a1276 Updated net/p5-Net-DNS to 0.82 2015-01-21 21:42:29 +00:00
wiz
8581e04353 Update to 0.82:
**** 0.82 Jan 20, 2015

Fix rt.cpan.org #100385

	Support for IPv6 link-local addresses with scope_id
2015-01-21 21:42:21 +00:00
adam
1f7101e17d Fix building with -flto; do not force optimisation compiler flags 2015-01-21 18:15:17 +00:00
fhajny
0e1fd984e7 Updated databases/elasticsearch to 1.4.2 2015-01-21 15:43:00 +00:00
fhajny
d6fd6dff69 Update elasticsearch to 1.4.2.
Minor enhancements and bugfixes, see release notes for 1.4.1 and 1.4.2:

  http://www.elasticsearch.org/downloads/1-4-1/
  http://www.elasticsearch.org/downloads/1-4-2/
2015-01-21 15:42:50 +00:00
joerg
324c7750c0 Tell configure explicitly where to look for X11 headers and libs. 2015-01-21 15:22:14 +00:00
joerg
c89a5f464e gimp-docs packages are racy. 2015-01-21 15:19:56 +00:00
joerg
fa9be95d75 Simplify scons mangle: fully preserve environment, add CPPPATH/LIBPATH
correctly. Fixes build with cwrappers.
2015-01-21 15:19:31 +00:00
joerg
abe4d35515 Use CC as linker, ld doesn't support e.g. -pthread. 2015-01-21 15:18:05 +00:00
adam
e0c0baf9b0 Updated www/squid3 to 3.5.1 2015-01-21 14:23:50 +00:00