summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2011-12-19Update firefox36 to 3.6.24.obache3-8/+7
Fixed in Firefox 3.6.24 MFSA 2011-49 Memory corruption while profiling using Firebug MFSA 2011-47 Potential XSS against sites using Shift-JIS MFSA 2011-46 loadSubScript unwraps XPCNativeWrapper scope parameter (1.9.2 branch) Fixed in Firefox 3.6.23 MFSA 2011-40 Code installation through holding down Enter MFSA 2011-39 Defense against multiple Location headers due to CRLF Injection MFSA 2011-38 XSS via plugins and shadowed window.location object MFSA 2011-37 Integer underflow when using JavaScript RegExp MFSA 2011-36 Miscellaneous memory safety hazards (rv:7.0 / rv:1.9.2.23)
2011-12-19Force MKPROFILE=yes to avoid PLIST divergence.dholland1-1/+2
2011-12-18"included by ncursesw" means the ncursesw Makefile not just the buildlinksbd1-2/+2
tree.
2011-12-18Add ruby-hike (Hi taca)sbd1-1/+2
2011-12-17Add missing dependency to ruby-multi_json, noted by HIRAMATSU Yoshifumitaca1-1/+4
on tech-pkg-ja@. Bump PKGREVISION.
2011-12-17Add and enable ruby-randexp.taca1-1/+2
2011-12-17Importing devel/ruby-randexp package version 0.1.6.taca4-0/+49
Randexp makes it easy to generate random string from most regular expressions.
2011-12-17Update to 3.290:wiz2-7/+7
Version 3.29 - 2 December 2011 Enhancements - modified Makefile.in to allow configure to override the lib and include destination directories. - added (or restored actually) support for tile compression of 1-byte integer images in imcomp_compress_tile. Support for that data type was overlooked during recent updates to this routine. - modified the fits_get_token command-line parsing routine to perform more rigorous checks to determine if the token can be interpreted as a number or not. - made small modification to fpack.c to not allow the -i2f option (convert image from integer to floating point) with the "-g -q 0" option (do lossless gzip compression). It is more efficient to simply use the -g option alone. - made modifications to fitsio.h and drvrfile.c to support reading and writing large FITS files (> 2.1 GB) when building CFITSIO using Microsoft Visual C++ on Windows platforms. - added new WCS routine (ffgicsa) which returns the WCS keyword values for a particular WCS version ('A' - 'Z'). Bug Fixes - fixed a problem with multi-threaded apps that open/close FITS files simultaneously by putting mutex locks around the call to fits_already_open and in fits_clear_Fptr. - fixed a bug when using the 'regfilter' function to select a subset of the rows in a FITS table that have coordinates that lie within a specified spatial region on the sky. This bug only affects the rarely used panda (and epanda and bpanda) region shapes in which the region is defined by the intersection of an annulus and a pie-shaped wedge. The previous code (starting with version 3.181 of CFITSIO where support for the panda region was first introduced) only worked correctly if the 2 angles that define the wedge have values between -180 and +180. If not, then fewer rows than expected may have been selected from the table. - fixed the extended filename parser so that when creating a histogram by binning 2 table columns, if a keyword or column name is given as the weighting factor, then the output histrogram image will have a floating point datatype, not the default integer datatype as is the case when no weigth is specified (e.g. with a filename like "myfile.fits[bin x,y; weight_column]" - added fix to the code in imcompress.c to work around a problem with dereferencing the value of a pointer, in cases where the address of that pointer has not been defined (e.g., the nulval variable). - modified the byte shuffling algorithm in fits_shuffle_8bytes to work around a strange bug in the proprietary SunStudioExpress C compiler under OpenSolaris. - removed spurious messages on the CFITSIO error stack when opening a FITS file with FTP (in drvrnet.c);
2011-12-17+ npapi-sdkobache1-1/+2
2011-12-17Import npapi-sdk-0.27 as devel/npapi-sdk.obache5-0/+47
Headers for NPAPI (browser plugin API)
2011-12-17Change default PKGNAME scheme for PECL packages.obache1-1/+2
Drop ${PHP_BASE_VARS} from PKGVERSION by default. It used to be required to support multiple php version. But after PHP version based ${PHP_PKG_PREFIX} was introduced, such trick is not required anymore. In addition to this, such version name schme invokes unwanted version bump when base php version is bumped, plus, such version scheme is hard to use for DEPENDS pattern. To avoid downgrading of package using such legacy version scheme, PECL_LEGACY_VERSION_SCHEME is introduced. If it is defined, current version scheme is still used for currently supported PHP version (5 and 53), but instead of ${PHP_BASE_VARS}, current fixed PHP base version in pkgsrc is used to avoid unwanted version bump from update of PHP base package. With newer PHP (54, or so on), new version scheme will be used if it is defined. This trick will not be required and should be removed after php5 and php53 will be gone away from pkgsrc.
2011-12-17Add missing mk/curses buildlink.sbd1-2/+3
Bump PKGREVISION
2011-12-17Add missing mk/termcap buildlink.sbd2-4/+6
Bump PKGREVISION
2011-12-16Add missing devel/zlib buildlink.sbd1-2/+3
Bump PKGREVISION
2011-12-16USE_JAVA and USE_JAVA2 requires mk/java-vm.mk.ryoon1-1/+2
2011-12-16Update ruby-rspec-rails package to 2.7.0.taca3-38/+24
Exact changes are unknown.
2011-12-16Update ruby-rspec package to 2.7.0.taca2-9/+9
Exact changes are unknown.
2011-12-16Update ruby-rspec-mocks package to 2.7.0.taca3-21/+20
Exact changes are unknown.
2011-12-16Update ruby-rspec-expectations package to 2.7.0.taca3-21/+9
Exact changes are unknown.
2011-12-16Update ruby-rspec-core package to 2.7.1.taca3-32/+15
Exact changes are unknown.
2011-12-16Update devel/ruby-test-unit package to 2.4.3.taca4-93/+109
Several improvements and bug fixes.
2011-12-16Add and enable ruby-railties31.taca1-1/+2
2011-12-16Importing devel/ruby-railties31 package version 3.1.3.taca4-0/+606
## Rails 3.1.3 (unreleased) ## * New apps should be generated with a sass-rails dependency of 3.1.5, not 3.1.5.rc.2 ## Rails 3.1.2 (unreleased) ## * Engines: don't blow up if db/seeds.rb is missing. *Jeremy Kemper* * `rails new foo --skip-test-unit` should not add the `:test` task to the rake default task. *GH 2564* *José Valim* ## Rails 3.1.1 (October 7, 2011) ## * Add jquery-rails to Gemfile of plugins, test/dummy app needs it. Closes #3091. *Santiago Pastorino* * Add config.assets.initialize_on_precompile which, when set to false, forces `rake assets:precompile` to load the application but does not initialize it. To the app developer, this means configuration add in config/initializers/* will not be executed. Plugins developers need to special case their initializers that are meant to be run in the assets group by adding :group => :assets. ## Rails 3.1.0 (August 30, 2011) ## * The default database schema file is written as UTF-8. *Aaron Patterson* * Generated apps with --dev or --edge flags depend on git versions of sass-rails and coffee-rails. *Santiago Pastorino* * Rack::Sendfile middleware is used only if x_sendfile_header is present. *Santiago Pastorino* * Add JavaScript Runtime name to the Rails Info properties. *DHH* * Make pp enabled by default in Rails console. *Akira Matsuda* * Add alias `r` for rails runner. *Jordi Romero* * Make sprockets/railtie require explicit and add --skip-sprockets to app generator *José Valim* * Added Rails.groups that automatically handles Rails.env and ENV["RAILS_GROUPS"] *José Valim* * The new rake task assets:clean removes precompiled assets. *fxn* * Application and plugin generation run bundle install unless --skip-gemfile or --skip-bundle. *fxn* * Fixed database tasks for jdbc* adapters #jruby *Rashmi Yadav* * Template generation for jdbcpostgresql #jruby *Vishnu Atrai* * Template generation for jdbcmysql and jdbcsqlite3 #jruby *Arun Agrawal* * The -j option of the application generator accepts an arbitrary string. If passed "foo", the gem "foo-rails" is added to the Gemfile, and the application JavaScript manifest requires "foo" and "foo_ujs". As of this writing "prototype-rails" and "jquery-rails" exist and provide those files via the asset pipeline. Default is "jquery". *fxn* * jQuery is no longer vendored, it is provided from now on by the jquery-rails gem. *fxn* * Prototype and Scriptaculous are no longer vendored, they are provided from now on by the prototype-rails gem. *fxn* * The scaffold controller will now produce SCSS file if Sass is available *Prem Sichanugrist* * The controller and resource generators will now automatically produce asset stubs (this can be turned off with --skip-assets). These stubs will use Coffee and Sass, if those libraries are available. *DHH* * jQuery is the new default JavaScript library. *fxn* * Changed scaffold, application, and mailer generator to create Ruby 1.9 style hash when running on Ruby 1.9 *Prem Sichanugrist* So instead of creating something like: redirect_to users_path, :notice => "User has been created" it will now be like this: redirect_to users_path, notice: "User has been created" You can also passing `--old-style-hash` to make Rails generate old style hash even you're on Ruby 1.9 * Changed scaffold_controller generator to create format block for JSON instead of XML *Prem Sichanugrist* * Add using Turn with natural language test case names for test_help.rb when running with minitest (Ruby 1.9.2+) *DHH* * Direct logging of Active Record to STDOUT so it's shown inline with the results in the console *DHH* * Added `config.force_ssl` configuration which loads Rack::SSL middleware and force all requests to be under HTTPS protocol *DHH, Prem Sichanugrist, and Josh Peek* * Added `rails plugin new` command which generates rails plugin with gemspec, tests and dummy application for testing *Piotr Sarnacki* * Added -j parameter with jquery/prototype as options. Now you can create your apps with jQuery using `rails new myapp -j jquery`. The default is still Prototype. *siong1987* * Added Rack::Etag and Rack::ConditionalGet to the default middleware stack *José Valim* * Added Rack::Cache to the default middleware stack *Yehuda Katz and Carl Lerche* * Engine is now rack application *Piotr Sarnacki* * Added middleware stack to Engine *Piotr Sarnacki* * Engine can now load plugins *Piotr Sarnacki* * Engine can load its own environment file *Piotr Sarnacki* * Added helpers to call engines' route helpers from application and vice versa *Piotr Sarnacki* * Task for copying plugins' and engines' migrations to application's db/migrate directory *Piotr Sarnacki* * Changed ActionDispatch::Static to allow handling multiple directories *Piotr Sarnacki* * Added isolate_namespace() method to Engine, which sets Engine as isolated *Piotr Sarnacki* * Include all helpers from plugins and shared engines in application *Piotr Sarnacki*
2011-12-16Add and enable ruby-activemodel31 and ruby-activesupport31.taca1-1/+3
2011-12-16Importing devel/ruby-activemodel31 package version 3.1.3.taca4-0/+68
## Rails 3.1.1 (October 7, 2011) ## * Remove hard dependency on bcrypt-ruby to avoid make ActiveModel dependent on a binary library. You must add the gem explicitly to your Gemfile if you want use ActiveModel::SecurePassword: gem 'bcrypt-ruby', '~> 3.0.0' See GH #2687. *Guillermo Iguaran* ## Rails 3.1.0 (August 30, 2011) ## * Alternate I18n namespace lookup is no longer supported. Instead of "activerecord.models.admins.post", do "activerecord.models.admins/post" instead *José Valim* * attr_accessible and friends now accepts :as as option to specify a role *Josh Kalderimis* * Add support for proc or lambda as an option for InclusionValidator, ExclusionValidator, and FormatValidator *Prem Sichanugrist* You can now supply Proc, lambda, or anything that respond to #call in those validations, and it will be called with current record as an argument. That given proc or lambda must returns an object which respond to #include? for InclusionValidator and ExclusionValidator, and returns a regular expression object for FormatValidator. * Added ActiveModel::SecurePassword to encapsulate dead-simple password usage with BCrypt encryption and salting *DHH* * ActiveModel::AttributeMethods allows attributes to be defined on demand *Alexander Uvarov* * Add support for selectively enabling/disabling observers *Myron Marston*
2011-12-16Importing devel/ruby-activesupport31 package version 3.1.3.taca4-0/+239
## Rails 3.1.1 (October 7, 2011) ## * ruby193: String#prepend is also unsafe *Akira Matsuda* * Fix obviously breakage of Time.=== for Time subclasses *jeremyevans* * Added fix so that file store does not raise an exception when cache dir does not exist yet. This can happen if a delete_matched is called before anything is saved in the cache. *Philippe Huibonhoa* * Fixed performance issue where TimeZone lookups would require tzinfo each time *Tim Lucas* * ActiveSupport::OrderedHash is now marked as extractable when using Array#extract_options! *Prem Sichanugrist* ## Rails 3.1.0 (August 30, 2011) ## * ActiveSupport::Dependencies#load and ActiveSupport::Dependencies#require now return the value from `super` *Aaron Patterson* * Fixed ActiveSupport::Gzip to work properly in Ruby 1.8 *Guillermo Iguaran* * Kernel.require_library_or_gem was deprecated and will be removed in Rails 3.2.0 *Josh Kalderimis* * ActiveSupport::Duration#duplicable? was fixed for Ruby 1.8 *thedarkone* * ActiveSupport::BufferedLogger set log encoding to BINARY, but still use text mode to output portable newlines. *fxn* * ActiveSupport::Dependencies now raises NameError if it finds an existing constant in load_missing_constant. This better reflects the nature of the error which is usually caused by calling constantize on a nested constant. *Andrew White* * Deprecated ActiveSupport::SecureRandom in favour of SecureRandom from the standard library *Jon Leighton* * New reporting method Kernel#quietly. *fxn* * Add String#inquiry as a convenience method for turning a string into a StringInquirer object *DHH* * Add Object#in? to test if an object is included in another object *Prem Sichanugrist, Brian Morearty, John Reitano* * LocalCache strategy is now a real middleware class, not an anonymous class posing for pictures. * ActiveSupport::Dependencies::ClassCache class has been introduced for holding references to reloadable classes. * ActiveSupport::Dependencies::Reference has been refactored to take direct advantage of the new ClassCache. * Backports Range#cover? as an alias for Range#include? in Ruby 1.8 *Diego Carrion, fxn* * Added weeks_ago and prev_week to Date/DateTime/Time. *Rob Zolkos, fxn* * Added before_remove_const callback to ActiveSupport::Dependencies.remove_unloadable_constants! *Andrew White* * JSON decoding now uses the multi_json gem which also vendors a json engine called OkJson. The yaml backend has been removed in favor of OkJson as a default engine for 1.8.x, while the built in 1.9.x json implementation will be used by default. *Josh Kalderimis*
2011-12-16Update ruby-rdoc package to 3.12.taca2-5/+6
=== 3.12 / 2011-12-15 * Minor enhancements * Added DEVELOPERS document which contains an overview of how RDoc works and how to add new features to RDoc. * Improved title for HTML output to include <code>--title</code> in the title element. * <code>rdoc --pipe</code> now understands <code>--markup</code>. * RDoc now supports irc-scheme hyperlinks. Issue #83 by trans. * Bug fixes * Fix title on HTML output for pages. * Fixed parsing of non-indented HEREDOC. * Fixed parsing of <code>%w[]</code> and other % literals. Issue #84 by Erik Hollensbe * Fixed arrow replacement in HTML output munging the spaceship operator. Issue #85 by eclectic923. * Verbatim sections with ERB that match the ruby code whitelist are no longer syntax-highlighted. Issue #86 by eclectic923 * Line endings on windows are normalized immediately after reading with binmode. Issue #87 by Usa Nakamura * RDoc better understands directives for comments. Comment directives can now be found anywhere in multi-line comments. Issue #90 by Ryan Davis * Tidy links to methods show the label again. Issue #88 by Simon Chiang * RDoc::Parser::C can now find comments directly above +rb_define_class_under+. Issue #89 by Enrico * In rdoc, backspace and ansi formatters, labels and notes without bodies are now shown. * In rdoc, backspace and ansi formatters, whitespace between label or note and the colon is now stripped.
2011-12-16Update ruby-loquacious package to 1.9.1.taca3-8/+8
== 1.9.1 / 2011-12-15 Bug Fixes - Properly generate accessor method when merging
2011-12-16Update p5-version to 0.95.hiramatsu2-6/+6
Changes from previous: ---------------------- 2011-11-12 John Peacock <john.peacock@havurah-software.org> * .hgtags: Tagging version '0.95' using shipit. [f76612f96814] [tip] * README, t/coretests.pm, vutil/vxs.xs: Turns out the XS code didn't prevent the math ops from working after all. Add a test to make sure we catch that and update README for release. [9f4e1ff7704c] [0.95] * t/06noop.t: Forgot to add test file for math noop methods [ca0bc8526ea5] * MANIFEST, vperl/vpp.pm: Restore 5.14.x behavior of UNIVERSAL::VERSION to pure Perl code [1dd0281f09b8] * t/coretests.pm, vutil/vutil.c, vutil/vutil.h, vutil/vxs.xs: Fix segfault with versions that start with 'v', especially 'version'. [868edaf0223b] 2011-10-30 John Peacock <john.peacock@havurah-software.org> * lib/version.pm, t/01base.t, t/02derived.t, t/03require.t, t/05sigdie.t, t/coretests.pm, vutil/lib/version/vxs.pm: Bump $VERSION in preparation for eventual release. [3bcfd3008cbc] * vutil/vxs.xs: Revert change to UNIVERSAL::VERSION replacement, pending ruling from the bench. [d5c1282dfe13] * vperl/vpp.pm: For some reason, nomethod doesn't work in pure Perl code, so be explicit about ops that are not allowed. [5cad9cde035e] 2011-08-21 John Peacock <john.peacock@havurah-software.org> * .hgtags: Tagging version '0.94' using shipit. [743538f58cb7] * Makefile.PL, lib/version.pod, lib/version/Internals.pod: Tweak POD and add LICENSE to Makefile.PL. Resolves: https://rt.cpan.org/Public/Bug/Display.html?id=70120 [3a4fae29c763] [0.94] * MANIFEST, t/05sigdie.t: Add test to confirm that the $SIG{__DIE__} handling is correct. [4a421bba05c9] * lib/version.pm, t/01base.t, t/02derived.t, t/03require.t, vperl/vpp.pm, vutil/lib/version/vxs.pm: Prevent DIE handlers in user code from tripping up loading version. Don't know how this hasn't shown up until now. Resolves: https://rt.cpan.org/Ticket/Display.html?id=70260 [754fd86858af]
2011-12-16Update p5-UNIVERSAL-isa to 1.20110614.hiramatsu2-8/+6
Change from previous: --------------------- 1.20110613 2011-06-13 14:16:04 America/Los_Angeles - converted to Dist::Zilla
2011-12-16Update p5-Test-Mock-LWP to 0.06.hiramatsu2-7/+7
Change from previous: --------------------- 0.06 - Sat Jul 16 10:26:33 PDT 2011 - Update Makefile.PL and META.yml for RT #69466
2011-12-15update to 8.21drochner3-12/+12
This is almost entirely a bug-fix release. The only new feature is the ability to obtain the size of the memory used by the JIT compiler.
2011-12-15Update ruby2ruby package to 1.3.1.taca2-6/+6
=== 1.3.1 / 2011-09-22 * 1 minor enhancement: * Added parenthesize to add parens in certain contexts. * 10 bug fixes: * Add newline to 'do nothing' comment in a block... seems contrived. (andreacampi) * Binary operations not work properly with some complex statements. (smorss) * Fixed if statements with no body (smorss) * Fixed logic for call with hash args in various locations (smorss) * Fixed match3 on an assignment. (smorss) * Fixed multiple nested rescue/ensure exprs (larsch) * Fixed process_alias to parenthesize (smorss) * Fixed process_and to parenthenize only when it makes sense. * Fixed rescue with 2+ statements in resbody (smorss) * Regexps with options other than /o were not showing flags. (smorss)
2011-12-15Update ruby-subexec package to 0.2.0.taca3-9/+8
Changes are unknown but it looks like log file support have added.
2011-12-15Update ruby-sexp-processor package to 3.0.9.taca2-6/+6
=== 3.0.9 / 2011-12-07 * 1 minor enhancement: * Add missing test for a ternary with nil without a space before the colon (brynary) === 3.0.8 / 2011-11-16 * 4 minor enhancements: * Add 6 missing ruby 1.9 tests (brynary) * Added new 1.9 hash tests to pt_testcase.rb * Version specific tests are now skipped at runtime, not test creation time * Added new block arg tests. === 3.0.7 / 2011-09-21 * 2 bug fixes: * Fixed and test to not have mandatory parens * Fixed r2r's handling of dregexp options
2011-12-15Update ruby-rcov pacakge to 0.9.11.taca2-6/+6
Change are unknown.
2011-12-15Update ruby-polyglot pacakge to 0.3.3.taca3-14/+8
Changes are unknown.
2011-12-15Update ruby-pathname2 package to 1.6.5.taca2-6/+6
== 1.6.5 - 19-Sep-2011 * Added the String#to_path instance method. This returns a Pathname object. * The architecture for the Windows gem is now "universal", and some gemspec dependencies were simplified.
2011-12-15Update ruby-parsetree pacakge to 3.0.8.taca3-9/+7
=== 3.0.8 / 2011-09-27 * 1 minor enhancement: * ParseTree.translate now does 'include Mod' calls instead of including their methods directly
2011-12-15Update ruby-parser package to 2.3.1.taca2-6/+6
=== 2.3.1 / 2011-09-21 * 2 bug fixes: * Fixed line numbers at end of special var+whitespace (larsch) * Holy crap I was smokin' something good... Fixed 1.9.3 warning
2011-12-15Update ruby-lockfile pacakge to 2.1.0.taca4-74/+10
(Changes for 2.1.0 is unknown.) HISTORY 2.0.0: - lock fires up a refresher thread when called without a block
2011-12-15Update ruby-little-plugger pacakge to 1.1.3.taca2-6/+6
== 1.1.3 / 2011-11-17 * 1 bug fix * Ensuring gem files are in a sorted order
2011-12-15Update ruby-inline pacakge to 3.11.0.taca2-6/+6
=== 3.11.0 / 2011-09-27 * 1 major enhancement: * Removed Module#options === 3.10.1 / 2011-09-13 * 1 bug fix: * Fix crap_for_windoze to use RbConfig for RUBY_SO_NAME. (jasonrickman)
2011-12-15Update hoe pacakge to 2.12.4.taca2-6/+6
=== 2.12.4 / 2011-11-28 * 3 bug fixes: * Fixed Hoe.read_utf to work on both 1.8 and 1.9. Unicode files FTW! (tenderlove) * Moved the rdoc dependency to the publish plugin from hoe-seattlerb. * Only load rdoc once to fix test loading bugs.
2011-12-15Importing ruby-hike version 1.2.1.taca4-0/+33
Hike ==== Hike is a Ruby library for finding files in a set of paths. Use it to implement search paths, load paths, and the like.
2011-12-15patch-aa is not necessary any longer, says gls@; remove it.wiz2-15/+1
2011-12-15Many packages will prefer ncursesw over ncurses if its available (say assbd1-1/+9
a native library), so unless devel/ncurses/buildlink3.mk is being included by ncursesw don't allow ncursesw to be used by causing linkage failure.
2011-12-15Update p5-Test-Harness to 3.23.hiramatsu2-7/+6
Changes from previous: ---------------------- 3.23 2011-02-20 - Merge in changes from core. Thanks BinGOs. - Made SourceHandler understand that an executable binary file is probably an executable. - Added workaround for Getopt::Long 2.25 handling of multivalue options. Fixes test failure on stock perl 5.6.2.
2011-12-15Update p5-Test-Pod-Spelling-CommonMistakes to 1.000.hiramatsu2-7/+6
Change from previous: --------------------- 1.000 Released: 2011-02-21 23:38:36 UTC Converted to Dist::Zilla for the release process!
2011-12-15Update p5-Log-Dispatch-Config to 1.04.hiramatsu2-8/+7
Change from previous: --------------------- 1.04 Thu Apr 14 14:55:20 PDT 2011 - Fix 02_log.t RT:62438