summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-10-10Import tex-cm-unicode-0.7.0 as fonts/tex-cm-unicode.minskim4-0/+143
Computer Modern Unicode fonts were converted from metafont sources using mftrace with autotrace backend and fontforge. Some characters in several fonts are copied from Blue Sky type 1 fonts released by AMS. Currently the fonts contain glyphs from Latin (Metafont ec, tc, vnr), Cyrillic (lh), Greek (cbgreek when available) code sets and IPA extensions (from tipa). This font set contains 33 fonts. This archive contains AFM, PFB and OTF versions; the OTF version of the Computer Modern Unicode fonts works with TeX engines that directly support OpenType features, such as XeTeX and LuaTeX.
2011-10-10Note update of silgraphite packages.minskim1-1/+4
2011-10-10Update silgraphite{,-ft,-xft} to 2.3.1.minskim6-18/+18
Mostly bug fixes.
2011-10-10Note PKGREVISION bump of doxygen.minskim1-1/+2
2011-10-10Add tex-ec to doxygen's dependency list.minskim2-3/+4
The LaTeX files generated by doxygen requires T1 encoding, which forces to use fonts in tex-ec.
2011-10-10Note update of a few Contao packages:taca1-1/+4
www/contao210 2.10.2 www/contao29 2.9.5nb5 www/typolight28 2.8.4nb6
2011-10-10Add update patche to fix XSS from Contao's repository.taca10-21/+321
Bump PKGREVISION.
2011-10-10Update contao210 package to 2.10.2.taca4-43/+7
It is really fix the XSS problem. Version 2.10.2 (2011-10-10) --------------------------- - Updated: updated TinyMCE to version 3.4.6 - Fixed: do not remove slashes just because get_magic_quotes_gpc() exists - Fixed: CSS units were not always applied when used with global variables (#3464) - Fixed: the task deadline field did not show the date picker (#3351) - Fixed: do not return empty lines in the compileDefinition hook (#3440) - Fixed: the TinyMCE spellchecker did not work anymore (#3487) - Fixed: the regexp for validating phone numbers accepted invalid values (#3493) - Fixed: added the new HTML5 elements to the valid TinyMCE tags (#3479) - Fixed: the style sheet generator did not support absolute URLs (#3512) - Fixed: fixed a potential XSS vulnerability (thanks to sschurtz) - Fixed a few minor issues
2011-10-10Remove duplicate lines (hello manu!)sborrill1-4/+1
2011-10-10Updated sysutils/cdrtools to 3.01alpha06wiz2-3/+3
2011-10-10Update to 3.01a06:wiz2-6/+6
All: - A new rule RULES/profiled.lnk allows to call: smake COPTX=-pg LDOPTX=-pg LINKMODE=profiled to create binaries that use gprof. - The Makefile System is now able to switch gmake-3.82 into a more POSIX compliant mode to tell the shell to report problems back to gmake. - New autocof tests on whether printf supoorts %lld and %jd - Fixed the vc9-setup files to make VC9 work. - Newer Cygwin "tail" versions do no longer support UNIX syntax. change tail +2 to tail -n +2 in RULES/cc-mcs.rul to allow to use the Microsoft compiler again - A new environment variable MKLINKS_COPY allows to tell all MKLINS scripts to generate file copies rather than symlinks. Call: MKLINKS_COPY=true export MKLINKS_COPY to enable this feature - Run an additional test -h command in MKLNKS to verify whether mingw supports symlinks - MKLINKS now creates copies instead of symlink when we use MSC as MSC does not support to read symlinks files - Fixed a typo in include/schily/libport.h (group functions have been defined to return struct passwd* instead of struct group* - Fixed wrong bracketing for C++ in include/schily/stdlib.h - Fixed wrong bracketing for C++ in include/schily/utypes.h - Added a workaround for MSC to include/schily/utypes.h MSC believes that a 32 bit int and a 32 bit long are incompatible and cannot even be casted, so we need to make uint32_t a n unsigned long - Let include/schily/archdefs.h define the standard processor #defines when compiling with MSC. - New include file include/schily/windows.h works around the oddities from the MSC include file windows.h - include/schily/stdio.h now defines popen()/pclose() to _popen()/_pclose() if on WIN-DOS - include/schily/limits.h now defines PIPE_BUF - include/schily/utsname.h now defines struct utsname for our MSC uname() emulation. - The setup for the PATHs needed by Visual Studio 9 has been corrected. - autoconf has been modified to avoid optimizing away code that is intended for testing. This help to work against a problem with detecting mbrtowc() on MinGW - autoconf now tests for mbtowc() and wctomb() - RULES/i*86-mingw32_nt-gcc.rul now link against -lmingw32 instead of -lmgw32. - include/schily/stat.h now defines S_IREAD/S_IWRITE/S_IEXEC These macros are available on typical UNIX systems but not on Android. The definition comes from UNIX V7 and is not in POSIX. Needed by SCCS and the Bourne Shell - include/schily/wait.h now defines WIFCONTINUED() if needed - include/schily/wchar.h now defines mbtowc() to mbrtowc() if needed (e.g. on Android) - include/schily/ccomdefs.h now correctly knows about the GCC release that introduced __attribute__ (used). - Android is not POSIX (by not defining various functions as functions in libc as required by POSIX) because it tries to define many functions that are part of the standard as inline macros in include files only. This breaks autoconf, so we needed to rewrite some tests (e.g for getpagesize, tcgetpgrp, tcsetpgrp) - The Schily autoconf system has been enhanced to support cross compilation. Schily autoconf is based on GNU autoconf and GNU autoconf does not support cross compilation because it needs to run scripts on the target system for some of the tests. The "configure" script that is delivered with the Schily makefile system runs 718 tests and 68 of them need to be run on the target system. The Schily autoconf system now supports a method to run these 65 tests natively on a target system. You either need a machine with remote login features or you need an emulator with a method to copy files into the emulated system and to run binaries on the emulated system as e.g. the Android emulator. We currently deliver three scripts for "remote" execution of programs on the target system: runrmt_ssh runs the commands remove via ssh runrmt_rsh runs the commands remove via rsh runrmt_android runs the commands remove via the debug bridge If you need to remotely run programs on a system that is not supported by one of there three scripts, you need to modify one of them to match your needs. To enable Cross Compilation use the following environment variables: CONFIG_RMTCALL= Set up to point to a script that does the remote execution, e.g.: CONFIG_RMTCALL=`pwd`/conf/runrmt_ssh CONFIG_RMTHOST= Set up to point to your remote host, e.g.: CONFIG_RMTHOST=hostname or CONFIG_RMTHOST=user@hostname use a dummy if you like to use something like to the Android emulator. CONFIG_RMTDEBUG= Set to something non-null in order to let the remote execution script mark remote comands. This will result in configure messages like: checking bits in minor device number... REMOTE 8 Note that smake includes automake features that automatically retrieve system ID information. For this reason, you need to overwrite related macros from the command line if you like to do a cross compilation. Related make macros: K_ARCH= # (sun4v) Kernel ARCH filled from uname -m / arch -k M_ARCH= # (sun4) Machine filled from arch P_ARCH= # (sparc) CPU ARCH filled from uname -p / mach OSNAME= # sunos, linux, .... OSREL= # 5.11 OSVERSION= # snv_130 CCOM= # generic compiler name (e.g. "gcc") CC_COM= # compiler to call (name + basic args) ARCH= overwrites M_ARCH and P_ARCH It is usually suffucient to set ARCH and OSNAME. In order to use a cross compiler environment instead of a native compiler, set the make macro CC_COM to something different than "cc". If you are on Linux and like to compile for Android, do the following: 1) set up CC acording to the instructions from the cross compiler tool chain 2) set environment variables CONFIG_RMTCALL / CONFIG_RMTHOST, e.g.: setenv CONFIG_RMTCALL `pwd`/conf/runrmt_android setenv CONFIG_RMTHOST NONE 3) call smake: smake ARCH=armv5 OSNAME=linux CCOM=gcc "CC_COM=$CC" - Several programs no longer test for HAVE_DEV_* but for HAVE__DEV_* as we did switch from hand written tests for /dev/tty, /dev/null and similar to AC_CHECK_FILES(/dev/tty /dev/null /dev/zero) - The Makefile system now links dynamic libraries on Mac OS X against libgcc_s.1 instead of libgcc. Libschily: - New function permtostr() in libschily allows to convert a mode_t like stat.st_mode into a chmod compliant string like: u=rw,g=r,o=r that is accepted by libschily::getperm() to allow a conversion back to a mode_t variable. - libschily::rename() now uses mktemp() to temorarily save the rename target file. - comerr() now maps exit codes that would fold to '0' to EX_CLASH which is -64 - New functions zerobytes() and cmpmbytes() added to libschily. - New functions strstr() and wcsstr() added to libschily. - libschily/fexec.c moved the workaround against the Mac OS X linker for "environ" upwards to cover the new code also. - Fixed libschily/gettimeofday.c to compile with MSC - Fixed libschily/sleep.c to compile with MSC - Fixed libschily/usleep.c to be empty with MSC as sleep.c includes a working usleep() - libschily/gethostname.c enhanced to support Win-DOS with cl.exe - libschily/uname.c New function to support Win-DOS with cl.exe - libschily/dirent.c New functions: opendir()/closedir()/readdir() to support Win-DOS with cl.exe - libschily/kill.c New function to support Win-DOS with cl.exe - libschily/stdio/fgetline.c 64 bit speedup by calling fgets() in case that getc() is not a macro. - libschily/stdio/fgetstr.c 64 bit speedup by calling fgets() in case that getc() is not a macro. - libschily/chown.c new to support Win-DOS with cl.exe Libfind: - libfind/find.c disables -exec in case there is no fork(). This is in order to support MINGW Libscg: - libscg::scsi-aix.c was updated with some experimental code to support two new SCSI kernel interfaces on AIX. - Allow to disable the SCSI low level transport adoption layer from libscg by adding -DNO_SCSI_IMPL - libscg/scsihack.c now supports the MSC compiler - Several small changes to work around oddoties fount in MS include files - Trying to better support AIX again. Cdrecord: - Several changes to support mingw and MSC Cdda2wav (Maintained/enhanced by Jörg Schilling, originated by Heiko Eißfeldt heiko@hexco.de): - Several changes to support mingw and MSC Readcd: - Better algorithm for -edc-corr Scgcheck: - Several changes to support mingw and MSC Mkisofs (Maintained/enhanced by Jörg Schilling since 1997, originated by Eric Youngdale): - The mkisofs diagnostic tools now support MSC that does not support POSIX terminal handling.
2011-10-10+ ImageMagick-6.7.2.9, cherokee-1.2.100, clutter-gst-1.4.2,wiz1-28/+36
cxref-1.6d, digikam-2.2.0, eigen3-3.0.3, ejabberd-2.1.9, electric-9.01, epiphany-extensions-3.2.0, gdl-3.2.0, gentoo-0.19.12, global-6.1, gnome-commander-1.2.8.14, hiawatha-7.7, hugin-2011.2.0, intltool-0.50.0, jwm-2.1.0, liquidwar-6.0.0.11, mk-configure-0.21.1, mkvtoolnix-5.0.1, mpfr-3.1.0, mtr-0.81, orc-0.4.16, p5-PerlMagick-6.7.2.9, phppgadmin-5.0.3, py-cups-1.9.59, sbcl-1.0.52, scmgit-base-1.7.7, scmgit-docs-1.7.7, webmin-1.570, wwwoffle-2.9h, x264-devel-20111008, xf86-video-savage-2.3.3, xkeyboard-config-2.4.1, zile-2.4.2.
2011-10-10Added devel/tclap version 1.2.1adam2-2/+4
2011-10-10TCLAP is a small, flexible library that provides a simple interface for definingadam5-0/+315
and accessing command line arguments. It was intially inspired by the user friendly CLAP libary. The difference is that this library is templatized, so the argument class is type independent. Type independence avoids identical-except-for-type objects, such as IntArg, FloatArg, and StringArg. While the library is not strictly compliant with the GNU or POSIX standards, it is close. TCLAP is written in ANSI C++ and is meant to be compatible with any standards-compliant C++ compiler. It is known to work on Linux, MacOS X, Windows, and Solaris platforms. The library is implemented entirely in header files making it easy to use and distribute with other software. It is licensed under the MIT License for worry free distribution. TCLAP is now a mature, stable, and feature rich package. Unless I get really bored, it probably won't see much further development aside from bug fixes and compatibility updates. Please don't let any apparent project inactivity discourage you from using the software!
2011-10-10Updated games/powder to 116wiz2-3/+3
2011-10-10Update to 116:wiz2-6/+6
Nine months since the last release, so much for the weekly release schedule POWDER started with! You will notice that I have at least maintained the same size release, minor fixes and a new spell. I'm particularly happy with finally finding a compromise for god-induced flamestrikes - you get a warning now so they are less just an insta-death out of the blue. You may thank the Annual Roguelike Release Party (ARRP) for this release - it provided the impetus to get something out. If you like POWDER, but are frustrated at the slow rate of development, I strongly recommend checking the rest of the roguelike scene! MSVC Express Edition 2008 project files and instructions added, created by Andreas Bohm. Tower shields are large. (Claudio) "You cannot hide from I!" is now "You cannot hide from Me!" (B. Perry) Looking at a square will also describe any smoke there. The dig spell now has the side effect of spraying the excavated rock shards, damaging those around you. Create Pit spell is now 10 MP rather than 15. Blizzards fill the air with sleet and snow, not sleet and slow. Though the latter does describe their special effect nicely. New spell: Sandstorm If a god decides to flamestrike you, you now get a few turns warning to prepare yourself. Monsters properly check safety of squares before stepping on them. If trapped inside a wall without Phase or Breathess, you will suffocate. (Strange Child, Julian Agloro) Helmets should be sorted together now. (Aapo) Empty bottles will be filled by down pour now. (Aapo) Entomb has a better message when blocked. (Aapo) Rocks are created when rocks fall on your head. (Aapo) Spells you can't cast have (!) after them in the zap list (Aapo) Saving when out of disk space should no longer corrupt your last save game. (Aapo) Tossing an item hand to hand no longer takes a turn. (Aapo) Spears, knives, and daggers no longer let you equip stacks. (Aapo) You are only prompted to throw one spear of a stack. (Aapo) The animate forest spell now has its own icon.
2011-10-10Updated www/libmicrohttpd to 0.9.15wiz2-3/+3
2011-10-10Update to 0.9.15. Use better master sites.wiz2-7/+7
Wed Sep 28 08:37:55 CEST 2011 Releasing libmicrohttpd 0.9.15. -CG Tue Sep 27 13:07:36 CEST 2011 Added ability to access URL arguments of the form 'url?foo' (without '='). Added testcase and updated documentation accordingly. -CG Mon Sep 26 21:24:00 CEST 2011 Only run response cleanup testcase if curl binary was found by configure. -CG Wed Sep 21 09:53:18 CEST 2011 Reverting to using pipes for signalling select on non-Linux platforms where shutdown-on-listen-sockets does not work. -WB/CG Mon Sep 19 14:06:30 CEST 2011 Fixing problem introduced with prompt response cleanup code. -CG Wed Sep 14 13:43:26 CEST 2011 Fixing minor memory leak if daemon with HTTPS support failed to initialize (#1766). -CG Tue Sep 13 09:47:58 CEST 2011 Try to release responses more promptly upon connection termination. -CG Mon Sep 12 10:20:28 CEST 2011 Releasing libmicrohttpd 0.9.14. -CG Mon Sep 12 10:05:36 CEST 2011 Added new function to allow setting of a custom timeout value for an individual connection (the MHD_set_connection_option is more generic, but this is currently the only use). -CG Sat Sep 10 07:30:12 CEST 2011 Documenting that MHD_CONNECTION_INFO_GNUTLS_CLIENT_CERT is not implemented and will not be implemented, and what to use instead. -CG Fri Sep 9 13:42:20 CEST 2011 Added testcase to demonstrate that response cleanup calling is working. No bug was found. -CG Thu Aug 18 11:05:16 CEST 2011 Fixed bug with wrong state transition if callback returned MHD_CONTENT_READER_END_OF_STREAM causing spurious extra callbacks to the handler (thanks to Jan Seeger for pointing it out). -CG/JS Thu Aug 11 11:40:03 CEST 2011 Changing sockets to be non-blocking as suggested by Eivind Sarto on the mailinglist. -CG Mon Jul 25 16:13:15 CEST 2011 Added a logo. -CG Sat Jul 16 22:42:10 CEST 2011 Change type of nonce to 'unsigned long int' to match return type from 'strtoul'. Fixes ERANGE check which would have previously failed. -CG Wed Jul 13 09:26:17 CEST 2011 Fixing HTTP error status strings for certain high-numbered status codes. Added support for some more (non-standard) status codes. Releasing libmicrohttpd 0.9.13. -CG Thu Jul 7 10:24:20 CEST 2011 Adding performance measurements. -CG Thu Jun 23 14:21:13 CEST 2011 Releasing libmicrohttpd 0.9.12. -CG Wed Jun 22 14:32:23 CEST 2011 Force closing connection if either the client asked it or if the response contains 'Connection: close' (so far, only the client's request was considered). -CG/RV Wed Jun 22 10:37:35 CEST 2011 Removing listen socket from poll/select sets in MHD_USE_THREAD_PER_CONNECTION mode; using 'shutdown' on connection sockets to signal termination instead. -CG Wed Jun 22 10:25:13 CEST 2011 Eliminate unnecessary (and badly synchronized) calls to MHD_get_timeout in MHD_USE_THREAD_PER_CONNECTION mode. Document that this is not acceptable. -CG Tue Jun 21 13:54:59 CEST 2011 Fixing tiny memory leak in SSL code from 'gnutls_priority_init'. Fixing data race between code doing connection shutdown and connection cleanup. Changing code to reduce connection cleanup cost from O(n) to O(1). Cleaning up logging code around 'connection_close_error'. -CG Sat Jun 11 13:05:12 CEST 2011 Replacing use of sscanf by strtoul (#1688). -CG/bplant Fri Jun 3 15:26:42 CEST 2011 Adding MHD_CONNECTION_INFO_DAEMON to obtain MHD_Daemon responsible for a given connection. -CG Wed May 25 14:23:20 CEST 2011 Trying to fix stutter problem on timeout described by David Myers on the mailinglist (5/10/2011). -CG Fri May 20 22:11:55 CEST 2011 Fixed bug in testcase setup code causing crashes in tls_session_timeout_test on some systems. Releasing libmicrohttpd 0.9.11. -CG Fri May 20 19:34:59 CEST 2011 Fixed bug in parsing multipart/form-data with post processor where the code failed to add a 0-terminator in the correct position. -PP Thu May 12 14:40:46 CEST 2011 Fixed bug where if multiple HTTP request messages are piped in at once, microhttpd would call the handler with the wrong upload_data_size. -HZM Thu May 12 14:40:08 CEST 2011 Documented possible issue with off_t being sometimes 32-bit and sometimes 64-bit depending on #includes. -CG Sun May 8 21:52:47 CEST 2011 Allow MHD_SIZE_UNKNOWN to be used in conjunction with MHD_create_response_from_fd (fixing #1679). -TG Wed Apr 27 16:11:18 CEST 2011 Releasing libmicrohttpd 0.9.10. -CG Fri Apr 8 11:40:35 CEST 2011 Workaround for cygwin poll brokenness. -TS Sun Apr 3 13:56:52 CEST 2011 Fixing compile error on OS X. -CG Wed Mar 30 12:56:09 CEST 2011 Initialize tv_usec in MHD_USE_THREAD_PER_CONNECTION with select and per-connection timeout. -CG
2011-10-10Updated devel/mercurial to 1.9.3wiz2-3/+3
2011-10-10Update to 1.9.3:wiz2-6/+6
This is a regular bugfix release. setup: build inotify for sys.platform='linux*' bundlerepo: add argument check before unlink hgweb: properly check for bookmarks when drawing graph http: handle push of bundles > 2 GB again (issue3017) keyword: preserve file mode when overwriting osutil: avoid accidentally destroying the True object in isgui (issue2937) patch: correctly handle non-tabular Subject: line patch: handle 'gitpatches' being empty, but not none record: use command wrapper properly for qnew/qrefresh (issue3001) setdiscovery: fix hang when #heads>200 (issue2971) ui: also swap sys.stdout with self.fout in _readline ui: write traceback to self.ferr url: Remove the proxy env variables only when needed (issue2451) url: parse fragments first (issue2997) util: fix crash converting an invalid future date to string util: wrap lines with multi-byte characters correctly (issue2943)
2011-10-10Updated textproc/mdocml to 1.12.0wiz1-1/+2
2011-10-10Update to 1.12.0:wiz2-6/+6
08-10-2011: version 1.12.0 This version features a new, work-in-progress mandoc output mode: -Tman. This mode allows a system maintainer to distribute man media for older systems that may not natively support mdoc, such as old Solaris systems. The -Ofragment option was added to mandoc's -Thtml and -Txhtml modes. While adding features, an apropos utility has been merged from the mandoc-tools sandbox. This interfaces with mandocdb for semantic search of manual content. apropos is different from the traditional apropos primarily in allowing keyword search (such as for functions, utilities, etc.) and regular expressions. Note that the calling syntax for apropos is likely to change as it settles down. In documentation news, the mdoc and man manuals have been made considerably more readable by adding MACRO OVERVIEW sections, by moving the gory details of the LANGUAGE SYNTAX to the roff manual, and by moving the very technical MACRO SYNTAX sections down to the bottom of the page. Furthermore, for tbl, the -Tascii mode horizontal spacing of tables was rewritten completely. It is now compatible with groff, both with and without frames and rulers. Nesting of indented blocks is now supported in man, and several bugs were fixed regarding indentation and alignment. The page headers in mdoc are now nicer for very long titles.
2011-10-10Updated mail/exim{-html} to 4.77adam1-1/+3
2011-10-10Match exim versionadam2-6/+6
2011-10-10Changes 4.77:adam2-7/+6
* Solaris build fix for Oracle's LDAP libraries. * HP/UX build fix: avoid arithmetic on a void pointer. * DKIM Verification: Fix relaxed canon for empty headers w/o whitespace trailer * Fix a couple more cases where we did not log the error message when unlink() failed. * Make the exiwhat support code safe for signals. Previously Exim might lock up or crash if it happened to be inside a call to libc when it got a SIGUSR1 from exiwhat. * Improved ratelimit ACL condition. * Removed a few PCRE remnants. * Automatically extract Exim's version number from tags in the git repository when doing development or release builds. * Raise smtp_cmd_buffer_size to 16kB. * Implement SSL-on-connect outbound with protocol=smtps on smtp transport. * Use .dylib instead of .so for dynamic library loading on MacOS. * Variable $av_failed, true if the AV scanner deferred. * Stop make process more reliably on build failure. * Make maildir_use_size_file an _expandable_ boolean. * Handle ${run} returning more data than OS pipe buffer size. * Handle IPv6 addresses with SPF. * GnuTLS: support TLS 1.2 & 1.1. * match_* no longer expand right-hand-side by default. * fix uninitialised greeting string from PP/03 (smtps client support). * shell and compiler warnings fixes for RC1-RC4 changes.
2011-10-10Updated net/mikutter to 0.0.3.533obache1-1/+2
2011-10-10Update mikutter to 0.0.3.533.obache2-6/+6
* fixes Syntax Error with footer settings. * fixes crash with broken UI icon.
2011-10-10Add makedepend to tools. From Makoto Fujiwara in PR 45434.wiz1-3/+3
2011-10-10Note update of www/apache22 package to 2.2.21nb1.taca1-1/+2
2011-10-10Add patch for CVE-2011-3368 from Apache's repository.taca3-2/+39
Bump PKGREVISION.
2011-10-10Note update of audio/p5-Audio-Scan, databases/p5-SQL-Statement andhiramatsu1-1/+4
www/p5-WWW-Mechanize.
2011-10-10Update p5-WWW-Mechanize to 1.70.hiramatsu2-6/+6
Changes from previous: 1.70 Fri Aug 26 13:46:30 EDT 2011 ======================================== [ENHANCEMENTS] Mech now defaults to _not_ running live tests by default. You can still enable them by running "perl Makefile.PL --live" Thanks to RJBS for the suggestion 1.69_01 ======================================== [INTERNALS] The test suite for the local tests was updated
2011-10-10Update p5-SQL-Statement to 1.33.hiramatsu2-7/+6
Changes from previous: Version 1.33, released February 05th, 2011 ---------------------------------------------- [Bug fixes] * Move test dependencies to (unreleased) Bundle::Test::SQL::Statement to avoid circular dependencies Version 1.32, released January 19th, 2011 ---------------------------------------------- [Bug fixes] * Fixed invalid check for escaped single quotes * Fixed unpermitted modification of array source for table creation (CREATE TABLE AS IMPORT(?),[[..],[..]]) * Fixing alias used in ORDER BY (RT#61384, thanks jvm) * Fixing ORDER BY behavior for multiple sort columns (slower, but guaranteed correct) [Improvements] * renamed fetch-method into fetch_row (keep fetch() as alias) and add a fetch_rows() to fetch all rows at once * Different accessors for direction of ORDER BY clause query part and it's boolean equivalent "desc" (0 or 1, respectively) * Add a lot of Pure-Perl DBD's as build dependency for testing (skip DBD::AnyData for now, because it seems to be broken - check for next release) [Misc] * Bump requirement of DBI to 1.616 * switch for fully external DBD tests from DBD::XBase to DBD::SQLite * Document another limitation (lacking implicit creating temp table during processing a query using the same table with different aliases twice)
2011-10-10Update p5-Audio-Scan to 0.92.hiramatsu2-6/+6
Changes from previous: 0.92 2011-09-09 - Added $info->{jenkins_hash} which is a 32-bit hash value of the filename + mtime + file size. - MP4: Get correct HE-AAC samplerate values from esds. - ADTS AAC: Add support for .adts file extension. 0.91 2011-09-06 - MP3, MP4, WMA, WAV, AIFF, ADTS AAC: Added DLNA audio profile detection as $info->{dlna_profile}.
2011-10-10Updated www/py-gdata to 2.0.14nb1wiz1-1/+2
2011-10-10Add more files to REPLACE_PYTHON. Bump PKGREVISION.wiz1-1/+63
2011-10-09Single job mandatory: x11/gtkadamarino1-1/+2
2011-10-09Update textproc/xmlada to version 4.2.0.0marino5-60/+90
2011-10-09xmx, rtf-tools, xtel, xmandholland1-1/+5
2011-10-09Run autoheader. Otherwise, HAVE_KQUEUE is not defined during the buildjmmv1-2/+3
and... well, the kqueue support is built but not used! Now, running a test program provided by Dmitry DTRT (with the exception of two tests, which seem to be not working in macppc). Ride the previous revision bump.
2011-10-09Note revision bump of glib2 to 1 for the inclusion of kqueue support.jmmv1-1/+2
2011-10-09Add support for kqueue by using the patches written by Dmitry Matveev duringjmmv8-24/+157
the Google Summer of Code 2011 program. Congratulations, Dmitry! :-) This comes in the form of a new 'kqueue' build-time option. This should NOT be an option, but it is for two reasons: - I consider this still experimental for it to be enabled on everyone's machines, and the code is not "official". - The patch requires us to run automake/autoconf during the pre-configure stage, and I don't want to add these dependencies on the default package build. When these patches get integrated upstream, we can get rid of the option altogether. Also note that I had to backport some of our custom changes to Makefile.in files and some to configure to the original Makefile.am files and configure.ac. This is to prevent our custom patches from being lost during the automake/autoconf invocations we now do when 'kqueue' is enabled. Bump PKGREVISION to 1.
2011-10-09update MASTER_SITES. Saves one redirect.zafer1-3/+3
2011-10-09Fixes for using GNUstep.obache2-4/+5
2011-10-09Add dependency on sqlite3.gdt1-1/+3
Upstream says that using sqlite3 will become somewhere between normal and the standard approach. Because sqlite3 is small and typically already isntalled on systems where one would want to run gama, just depend on it and don't bother to make it an option. It would be fine with me to make it a default-on option, but I don't think that's worth the complexity.
2011-10-09Updated textproc/p5-ack to 1.96schmonz2-3/+3
2011-10-09Update to 1.96. From the changelog:schmonz2-7/+6
[ENHANCEMENTS] * Now ignores minified Javascript files. Anything matching -min.js or .min.js is ignored. * Added Groovy support (--groovy). * Added .pm6 as a --perl extension. * Lua can now get detected from the shebang line. Thanks, Matthew Wild. * Added support for version numbers in executables in shebang detection. Now if your Perl program's shebang refers to /usr/local/bin/perl-5.14.1, ack will find it.
2011-10-09Updated devel/mr to 1.05schmonz1-1/+2
2011-10-09Update to 1.05. From the changelog:schmonz2-6/+6
* README now gives a quick into to using mr. * Brought back the "deleted" parameter, which provides an easy way to mark repositories that should be removed. * Allow untrusted mrconfig files to set parameters to true/false. So skip=true or deleted=true can be used in an untrusted mrconfig file. * Also allow order=N in an untrusted mrconfig file. * Support bzr checkouts, which are updated with "bzr update", and to which bzr automatically pushes commits. Closes: #643589 * Use bzr branch, not deprecated bzr clone when registering bzr repositories. Closes: #643591 * Allow bzr branch|clone|get|checkout in untrusted mrconfig files. * Avoid using sed -r in git-fake-bare, for OSX portability. * git-fake-bare: handle fake bare repositories with core.bare not set (Thanks, Julien Rebetez)
2011-10-09Updated lang/runawk to 1.3.2cheusov1-1/+2