summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-04-07Rename fls to cfls to avoid conflicts with fls function on FreeBSD andhasso5-5/+74
DragonFly.
2009-04-07Make it compile on DragonFly master.hasso2-7/+18
2009-04-07Make it build on DragonFly.hasso2-4/+4
2009-04-07Make it build on FreeBSD and DragonFly.hasso4-2/+56
2009-04-07Make these compile on DragonFly master.hasso4-8/+80
2009-04-07Note update of mathomatic.minskim2-3/+3
2009-04-07Update mathomatic to 14.3.6.minskim2-6/+6
Changes since 14.2.7: 12/23/08 - Simplified makefile. 12/26/08 - Fixed rules for simplifying "(x^n)^m" so "misc/john.in" and others simplify better. Works similar to Maxima now. 12/27/08 - Numeric GCD now properly returns the other parameter, if either parameter is 0. Renamed "misc/polyroots.c" to "misc/roots.c" and simplified this example code. 12/30/08 - Added "update" script, which updates the function prototypes in "cproto.h". 1/1/09 - Optionally factor out the gcd of integer coefficients when improving readability, for example: 6x+4y becomes 2*((3*x) + (2*y)). This is now the default. 1/13/09 - Added descriptions of all interesting math scripts in "tests/README.txt". 1/16/09 - Allow nintegrate and "integrate definite" commands in the symbolic math library; the bounds are specified in the two equation spaces following the current equation. 1/18/09 - Made expression and equation entry always consecutively numbered equation spaces, unless memory is exhausted. 1/19/09 - Made consistent list command output with only one newline after each equation space. 1/21/09 - Fixed erroneous doubling of parentheses display when solving and showing steps with "set debug 2". 1/22/09 - Added -b option, to conveniently set bold color mode from the command line. 1/25/09 - Improved looks of eliminate command by not solving if equation is already solved. 2/3/09 - Table of contents was added to the Mathomatic User's Manual. 2/5/09 - Added display of any numerical fractions when calculating or using calculate command; for example, entering "1/2+3/8" now results in "answer = 0.875 = 7/8". 2/6/09 - Removed erroneous lsqrt() routine obtained from Wikipedia, so that matho-sumsq works properly now. 2/7/09 - Disable pause command when appropriate (when input not a tty and for symbolic math library). 2/8/09 - Polished up educational example scripts in "tests" directory. 2/11/09 - Entry of a function now results in "Named functions currently not implemented" error message. 2/12/09 - Bugfix to matho-primes and added "misc/limits.c". 2/15/09 - The fraction command was fixed to give better results. "set display2d" flag now no longer affects any results at all, it only affects 2D output mode. 2/17/09 - Renamed -h (HTML) option to -x, -h is now the help option. Added -w option to set wide output mode. 3/9/09 - Found the correct formulas for solving the general cubic equation on Wikipedia, so "tests/cubic.in" always gives correct answers now. 3/12/09 - Tweak made to simplify result beautifier: factoring priority only given to real variables now, special constant variables pi#, e#, and i# have no effect and behave like any constant now. 3/15/09 - Corrected and improved parse_complex() C function for more complex number functionality and a bug fix. 3/18/09 - Added "set negate_highest_precedence" option, which allows the negate operator to be the lower precedence of times and divide, like it is in Maxima and most other math programs. 3/24/09 - Made "set no autosolve" mode more useful by making it solve if a solve variable is entered with an equals sign. This allows easy entry of both single variable expressions (with no =) and solve variables (with =) while in this mode. 3/27/09 - Selecting equations by entering the equation number was returning with error if the equation space was empty. Fixed, you can now select any previously allocated equation space.
2009-04-07Make it compile on DragonFly master.hasso2-7/+19
2009-04-07Note update of rails packages.minskim2-8/+8
2009-04-07Update rails packages to 2.3.1.minskim17-280/+531
Changes since 2.1.1: * Allow metal to live in plugins #2045 [Matthew Rudy] * Added metal [Josh Peek] * Remove script/performance/request in favour of the performance integration tests. [Pratik Naik] * Add a rake task to apply a template to an existing application : rake rails:template LOCATION=~/template.rb [Pratik Naik] * Add "-m/--template" option to Rails generator to apply a template to the generated application. [Jeremy McAnally] * Extracted the process scripts (inspector, reaper, spawner) into the plugin irs_process_scripts [David Heinemeier Hansson] * Changed Rails.root to return a Pathname object * Added view path support for engines [David Heinemeier Hansson] * Added that config/routes.rb files in engine plugins are automatically loaded (and reloaded when they change in dev mode) [David Heinemeier Hansson] * Added app/[models|controllers|helpers] to the load path for plugins that has an app directory (go engines ;)) [David Heinemeier Hansson] * Add config.preload_frameworks to load all frameworks at startup. Default to false so Rails autoloads itself as it's used. Turn this on for Passenger and JRuby. Also turned on by config.threadsafe! [Jeremy Kemper] * Add a rake task to generate dispatchers : rake rails:generate_dispatchers [Pratik Naik] * "rails <app>" will not generate public/dispatch.cgi/fcgi/rb files by default now. Please use "--with-dispatchers" option if you need them. [Yaroslav Markin, Pratik Naik] * Added rake rails:update:application_controller to renamed application.rb to application_controller.rb -- included in rake rails:update so upgrading to 2.3 will automatically trigger it #1439 [kastner] * Added Rails.backtrace_cleaner as an accessor for the Rails::BacktraceCleaner instance used by the framework to cut down on backtrace noise and config/initializers/backtrace_silencers.rb to add your own (or turn them all off) [David Heinemeier Hansson] * Switch from Test::Unit::TestCase to ActiveSupport::TestCase. [Jeremy Kemper] * Added config.i18n settings gatherer to config/environment, auto-loading of all locales in config/locales/*.rb,yml, and config/locales/en.yml as a sample locale [David Heinemeier Hansson] * BACKWARDS INCOMPATIBLE: Renamed application.rb to application_controller.rb and removed all the special casing that was in place to support the former. You must do this rename in your own application when you upgrade to this version [David Heinemeier Hansson] * Fixed plugin generator so that generated unit tests would subclass ActiveSupport::TestCase, also introduced a helper script to reduce the needed require statements #1137 [Mathias Meyer] * Update Prototype to 1.6.0.3 [sam] * Fixed that sqlite would report "db/development.sqlite3 already exists" whether true or not on db:create #614 [Antonio Cangiano] * Added config.threadsafe! to toggle allow concurrency settings and disable the dependency loader [Josh Peek] * Turn cache_classes on by default [Josh Peek] * Added configurable eager load paths. Defaults to app/models, app/controllers, and app/helpers [Josh Peek] * Introduce simple internationalization support. [Ruby i18n team] * Make script/plugin install <plugin> -r <revision> option work with git based plugins. #257. [Tim Pope Jakub Kuźma]. Example: * Added Rails.initialized? flag [Josh Peek] * Make rake test:uncommitted work with Git. [Tim Pope] * Added Thin support to script/server. #488 [Bob Klosinski] * Fix script/about in production mode. #370 [Cheah Chu Yeow, Xavier Noria, David Krmpotic] * Add the gem load paths before the framework is loaded, so certain gems like RedCloth and BlueCloth can be frozen. * Fix discrepancies with loading rails/init.rb from gems. * Plugins check for the gem init path (rails/init.rb) before the standard plugin init path (init.rb) [Jacek Becela] * Changed all generated tests to use the test/do declaration style [David Heinemeier Hansson] * Wrapped Rails.env in StringInquirer so you can do Rails.env.development? [David Heinemeier Hansson] * Fixed that RailsInfoController wasn't considering all requests local in development mode (Edgard Castro) [#310 state:resolved]
2009-04-07Updated www/serf to 0.3.0gdt1-1/+2
2009-04-07Update to 0.3.0 from Thomas E. Spanjaard in private mail. No ABIgdt3-8/+7
changes. Serf 0.3.0 [2009-01-26, r1216] Support LTFLAGS override as a config-time env. variable (Issue 44) Fix CUTest test harness compilation on Solaris (Issue 43) Fix small race condition in OpenSSL initialization (Issue 39) Handle content streams larger than 4GB on 32-bit OSes (Issue 41) Fix test_ssl.c compilation with mingw+msys. Fix conn close segfault by explicitly closing conn when pool is destroyed. Expose the depth of the SSL certificate so the validator can use that info. Fix socket address family issue when opening a connection to a proxy. Provide new API to take snapshots of buckets. Implement snapshot API for simple and aggregate buckets. Build with bundled apr and apr-util VPATH builds. Build with bundled OpenSSL builds. Serf 0.2.0 [2008-06-06, r1188] Enable use of external event loop: serf_create_context_ex. Enable adding new requests at the beginning of the request queue. Handle 'Connection:close' headers. Enable limiting the number of outstanding requests. Add readline function to simple buckets. Concatenate repeated headers using comma as separator, as per RFC 2616, section 4.2. (Issue 29) Add proxy server support. Add progress feedback support. (Issue 11) Provide new API to simplify use of proxy and progress feedback support. Add callback to validate SSL server certificates. (Issue 31) Add new test framework. Send current version string in the test programs (Issue 21) Bugfixes: Fix segfault with epoll when removing a NULL socket. Reset OpenSSL thread-safety callbacks when apr_terminate() called. Do not remove the socket from the pollset on pool cleanup. Do not issue double close on skt w/second one being close(-1) (Issue 33)
2009-04-07update to 2.6.8drochner21-1039/+379
This is a major update, I couldn't find the relevant changecogs but the last one. A couple of bugfixes. pkgsrc note: Since base and plugins are seperate distfiles now, we could abandon the Makefile.common or at least part of its complexity. I'll leave this to the MAINTAINER. Also, I'd suggest to rip -plugins into parts - many are too exotic. (There are also some new which are not built, I've just kept status quo.)
2009-04-07-mono 2.4 and relatedkefren1-5/+1
2009-04-07Bump PKGREVISION for additional dependencies added today.wiz1-2/+2
2009-04-07mention mono 2.4 updatekefren1-1/+8
2009-04-07Squash one pkglint warning.mjl3-9/+9
Fix oversight in dns patch.
2009-04-07Note update of www/typolight package to 2.6.7nb2.taca1-1/+2
2009-04-07* Update Japanese translation for typolink plugin of tinyMCE.taca4-13/+15
(It will included in TYPOlight 2.7.) Bump PKGREVISION.
2009-04-07map libglib on NetBSD tookefren3-2/+13
PKGREVISION++
2009-04-07update to monodevelop 2.0kefren3-12/+21
A lot of changes since 1.9.2, fixups and speedups. For a complete changelog please consult monodevelop.org website
2009-04-07update to 2.10.11drochner3-8/+18
changes: -bugfixes -translation updates
2009-04-07update to 2.20.10drochner5-25/+24
changes: -bugfixes -translation updates -portability improvements
2009-04-07update to 1.4.27drochner2-6/+6
changes: -bugfixes -translation updates
2009-04-07update to mono 2.4kefren2-8/+7
2009-04-07The continuing story of mono 2.4 updatekefren5-26/+39
2009-04-07minor fix for NetBSD: get netmask in the right byteorderdrochner3-6/+20
(this is ugly code, should use ioctl instead of kvm) bump PKGREVISION
2009-04-07update to 1.2.6drochner2-7/+6
changes: minor fixes, new czech translation
2009-04-07update to mono 2.4kefren3-13/+10
2009-04-07update to 0.2.3drochner3-10/+18
changes: -Cleanups and build fixes -fixes -Translation updates
2009-04-07include "pyversion" as all these python extensions dodrochner1-1/+3
2009-04-07requires: libwnck>=2.26.0, libical, libproxy, gnome-panel>=2.26.0kefren1-3/+6
2009-04-07Make it compile on DragonFly master.hasso2-7/+17
2009-04-07Requires gtk2+>=2.15.1kefren1-2/+2
2009-04-07support NetBSD's pthread_attr_get_np() which is similar to Linux'sdrochner5-3/+77
pthread_getattr_np(), just different, needed for get_thread_stack_base() to work which is needed for the scm_init_guile() API approved by gdt bump PKGREVISION
2009-04-07update to 2.6.3drochner4-7/+57
changes: Add parenthetical expressions to if Improve scoping of policies (see cmake_policy and CMP0011) Teach find_package more config file locations Many improved Find scripts in Modules Added an unset command Better reporting when nmake compiler environment is not correct
2009-04-07deal with desktopdbdrochner1-1/+2
2009-04-07Fix glib2 requirement. It requires glib>=2.19.1kefren1-2/+2
2009-04-07export ltdl and gsf dependencied (referenced by an installed .la file)drochner1-1/+4
2009-04-07add a comment section telling how Python plugin support can bedrochner1-1/+4
enabled (but leave it off because it is not useful yet)
2009-04-07having a build dependency on python but a full one on py-expatdrochner1-2/+2
is pointless
2009-04-07export gnome-vfs dependency (header files installed by us refer to it)drochner1-1/+2
2009-04-07update to 2.26.1drochner5-10/+23
changes: * Use Ctrl+S instead of Shift+S for the screenshot capture * Parse session management options on the command-line * Reset the seekbar when a file is closed * Make the default drag action for the video widget be a copy * Reset the icon properly when deactivating the thumbnail plugin * Make sure all files are played when playing in shuffled mode, and repeat mode is switched off * Fix Rewind() and Stop() functions in the QuickTime compat plugin * Don't remove renamed files from the playlist Subtitles download plugin: * Fix the OpenSubtitles plugin not loading * Sort languages names in alphabetical order pkgsrc change: remove the hard dependency on gst-plugins0.10-resindvd, add a MESSAGE giving hints which plugins might be useful
2009-04-07update to 2.26.1drochner3-8/+7
changes: - Fix playback of radio streams when the URL has a trailing slash - Fix detection of ISOs as VCDs or DVDs - Fix parsing of some podcasts with huge amounts of CDATA in the XML
2009-04-07update to 0.10.11drochner4-13/+15
changes: Migrate twolame element from -bad mp3parse improvements Support scaling in the synaesthsia visualisation Improve realmedia streaming, supporting RDT and pnm:// Improved ASF demuxing, including streaming-mode seeking Support for 4:4:4 MPEG-2 video
2009-04-07update to 0.10.11drochner5-19/+27
changes: Add ASS/SSA subtitle handling element assrender Leak fixes in the QuickTime decoder wrapper Better DirectShow output on Windows Extend QT muxing support to include AMR and H.263 mms seeking support Extended MXF file format handling camerabin and photography API for digital camera interfacing Merge elements from Farsight: liveadder, sirendec, sirenenc, valve, rtpdtmfsrc, rtpdtmdepay, dtmfsrc, rtpdtmfmux, autoconvert, mimdec, mimenc typefinder based on xdgmime
2009-04-07Update to mono 2.4kefren4-13/+12
2009-04-07Welcome to mono 2.4kefren10-588/+334
Changelist available at http://www.mono-project.com/Release_Notes_Mono_2.4 Note: Enabled for now generics on amd64, as they look to work
2009-04-07Make it build on DragonFly master.hasso2-5/+6
2009-04-07Argh, correct typo.hasso2-4/+4