Commit graph

194980 commits

Author SHA1 Message Date
asau
85ea525b9c Update to Maxima 5.29.1
Changes are unknown, but there's a usual batch of bug fixes.
2012-12-17 21:35:11 +00:00
is
9c3a51575c Note xlockmore{,-lite} 5.41nb2 2012-12-17 20:26:17 +00:00
is
c615d7c47a Note modular-xorg-server 1.6.5nb14. 2012-12-17 20:07:35 +00:00
markd
04511dec26 Drop maintainership. Haven't run this version of emacs for some time. 2012-12-17 18:39:06 +00:00
markd
5e71d46abe Drop maintainership of kde3 packages. Haven't had any systems running
kde3 for a while.
2012-12-17 18:37:06 +00:00
tsutsui
b4c7380696 Updated net/mikutter to 0.2.0.1089 2012-12-17 17:45:19 +00:00
tsutsui
fcbb9858c3 Update mikutter to 0.2.0.1089.
pkgsrc changes:
 - customized escape.rb is no longer necessary
 - catch up directory reorganaization
 - update COMMENT and LICENSE per newer distribution files

Upstream changes:

0.2.0.1089:
 - workaround bugs in several Twitter's APIs that cause auth dialogs and
   prevent initial authentication

0.2.0.1080:
 - add auto scroll support in activity tab
 - fix problems when access token is canceled
 - workaround invalid response from Twitter that causes hourly auth dialog
 - fix crash problem when profile command is invoked without selected tweet

0.2.0.1064
 - same fix in 0.1.1.1063
 - reorganize directories
 - fix a problem that can't remove abstruct tab
 - fix several bugs in setting windows
 - add support preview of tumblr and hatena photolife

0.2.0.1054:
 - fix open conversation tab commant without focused tweet
 - stop sending a bug report without useful trace

0.2 major updates:
 - reorganize UI APIs
 - support multipain officially
 - replace settings tab with window
 - renew profile plugin
 - add many mikutter commands for keyboard operation
 - misc secret features
2012-12-17 17:44:20 +00:00
taca
c11acd604b Note update of devel/ruby-rake package to 10.0.3. 2012-12-17 16:53:57 +00:00
taca
b43c2a58a3 Update ruby-rake to 10.0.3.
Exact changes are unknown.
2012-12-17 16:52:48 +00:00
taca
72a1f60c99 Note update of www/thin package to 1.5.0. 2012-12-17 15:57:16 +00:00
taca
c5b71636ae Update thin to 1.5.0.
== 1.5.0 Knife
 * Fix compilation under Ubuntu 12.04 with -Werror=format-security option.
 * Raise an error when no PID file.
 * Prevent duplicate response headers.
 * Make proper response on exception [MasterLambaster].
 * Automatically close idling pipeline connections on server stop [MasterLambaster].
2012-12-17 15:56:42 +00:00
taca
eb205ff370 Note update of www/ruby-unicorn package to 4.5.0. 2012-12-17 15:55:43 +00:00
taca
44e39746d6 Update ruby-unicorn to 4.5.0.
=== unicorn 4.5.0 - check_client_connection option / 2012-12-07 22:59 UTC

  The new check_client_connection option allows unicorn to detect
  most disconnected local clients before potentially expensive
  application processing begins.

  This feature is useful for applications experiencing spikes of
  traffic leading to undesirable queue times, as clients will
  disconnect (and perhaps even retry, compounding the problem)
  before unicorn can even start processing the request.

  To enable this feature, add the following line to a unicorn
  config file:

        check_client_connection true

  This feature only works when nginx (or any other HTTP/1.0+
  client) is on the same machine as unicorn.

  A huge thanks to Tom Burns for implementing and testing this
  change in production with real traffic (including mitigating
  an unexpected DoS attack).

  ref: http://mid.gmane.org/CAK4qKG3rkfVYLyeqEqQyuNEh_nZ8yw0X_cwTxJfJ+TOU+y8F+w@mail.gmail.com

  This release fixes broken Rainbows! compatibility in 4.5.0pre1.

=== unicorn 4.5.0pre1 - check_client_connection option / 2012-11-29 23:48 UTC

  The new check_client_connection option allows unicorn to detect
  most disconnected clients before potentially expensive
  application processing begins.

  This feature is useful for applications experiencing spikes of
  traffic leading to undesirable queue times, as clients will
  disconnect (and perhaps even retry, compounding the problem)
  before unicorn can even start processing the request.

  To enable this feature, add the following line to a unicorn
  config file:

    check_client_connection true

  A huge thanks to Tom Burns for implementing and testing this
  change in production with real traffic (including mitigating
  an unexpected DoS attack).

=== unicorn 4.4.0 - minor updates / 2012-10-11 09:11 UTC

  Non-regular files are no longer reopened on SIGUSR1.  This
  allows users to specify FIFOs as log destinations.

  TCP_NOPUSH/TCP_CORK is no longer set/unset by default.  Use
  :tcp_nopush explicitly with the "listen" directive if you wish
  to enable TCP_NOPUSH/TCP_CORK.

  Listen sockets are now bound _after_ loading the application for
  preload_app(true) users.  This prevents load balancers from
  sending traffic to an application server while the application
  is still loading.

  There are also minor test suite cleanups.
2012-12-17 15:55:15 +00:00
taca
2f633726ff Note update of www/ruby-sass package to 3.2.3. 2012-12-17 15:53:14 +00:00
taca
23cec9f406 Update ruby-sass to 3.2.3.
3.2.3

* sass --watch no longer crashs when a file in a watched directory is deleted.
* Allow @extend within bubbling nodes such as @media.
* Fix various JRuby incompatibilities and test failures.
* Work around a performance bug that arises from using @extend with
  deeply-nested selectors.

3.2.2

* Add a --poll option to force sass --watch to use the polling backend to
  Listen.
* Fix some error reporting bugs related to @import.
* Treat protocol-relative URLs in @imports as static URLs, just like http and
  https URLs.
* Improve the error message for misplaced simple selectors.
* Fix an option-handling bug that was causing errors with the Compass URL
  helpers.
* Fix a performance issue with @import that only appears when ActiveSupport is
  loaded.
* Fix flushing of actions to stdout. Thanks to Russell Davis
  (http://github.com/russelldavis).
* Fix the documentation for the max() function.
* Fix a @media parsing bug.

  Deprecations -- Must Read!

* Sass will now print a warning when it encounters a single @import statement
  that tries to import more than one file. For example, if you have @import
  "screen" and both screen.scss and _screen.scss exist, a warning will be
  printed. This will become an error in future versions of Sass.
2012-12-17 15:52:31 +00:00
taca
e340e8a5c9 Note update of www/ruby-jquery-rails to package to 2.1.4 and
Remove of www/ruby-jquery-rails10 package.
2012-12-17 15:32:36 +00:00
taca
086587bb92 Remove ruby-jquery-rails10 since ruby-jquery-rails supports all Ruby on
Rails versions.
2012-12-17 15:31:38 +00:00
taca
3102c07791 Delete ruby-jquery-rails10. 2012-12-17 15:31:06 +00:00
taca
ae815a352c Note update of www/ruby-jquery-rails package to 2.1.4. 2012-12-17 15:30:11 +00:00
taca
a26852ab27 Update ruby-jquery-rails to 2.1.4.
* Now this package support all Ruby on Rails packages.

## 2.1.4 (26 November 2012)

  - Updated to jQuery 1.8.3
  - Updated to jQuery UI 1.9.2
  - Rails 4 compatibility
  - Rails 3.0 compatibility
  - Rails 3.1 (without asset pipeline) compatibility

## 2.1.3 (24 September 2012)

  - Updated to latest jquery-ujs
  - Updated to jQuery 1.8.2
2012-12-17 15:29:32 +00:00
taca
58ef2f8331 Note moving of www/ruby-jquery-rails20 to www/ruby-jquery-rails. 2012-12-17 15:27:06 +00:00
taca
1906ef157e Change ruby-jquery-rails20 to ruby-jquery-rails. 2012-12-17 15:26:38 +00:00
taca
00e962efe2 Move ruby-jquery-rails to ruby-jquery-rails20. 2012-12-17 15:26:11 +00:00
taca
797be7c583 Note update of www/ruby-net-http-persistent package to 2.8. 2012-12-17 15:15:09 +00:00
taca
f866ce59d8 Update ruby-net-http-persistent to 2.8.
=== 2.8 / 2012-10-17

* Minor enhancements
  * Added Net::HTTP::Persistent::detect_idle_timeout which can be used to
    determine the idle timeout for a host.
  * The read timeout may now be updated for every request.  Issue #33 by
    Mislav Marohnić
  * Added NO_PROXY support.  Pull Request #31 by Laurence Rowe.
  * Added #cert and #key aliases for Net::HTTP compatibility.  Pull request
    #26 by dlee.
  * The artifice gem now disables SSL session reuse to prevent breakage of
    testing frameworks.  Pull Request #29 by Christopher Cooke.
  * Disabled Net::HTTP::Persistent::SSLReuse on Ruby 2+.  This feature is now
    built-in to Net::HTTP.
* Bug fixes
  * Socket options are set again following connection reset.  Pull request #28
    by cmaion.
  * #shutdown now works even if no connections were made.  Pull Request #24 by
    James Tucker.
  * Updated test RSA key size to 1024 bits.  Bug #25 by Gunnar Wolf.
  * The correct host:port are shown in the exception when a proxy connection
    fails.  Bug #30 by glebtv.
2012-12-17 15:14:42 +00:00
taca
ab8a1fd310 Note update of www/ruby-rack-test package to 0.6.2. 2012-12-17 15:13:49 +00:00
taca
81f959b8df Update ruby-rack-test to 0.6.2.
== 0.6.2 / 2012-09-27

* Minor enhancements

  * Support HTTP PATCH method (Marjan Krekoten' #33)
  * Preserve the exact query string when possible (Paul Grayson #63)
  * Add a #delete method to CookieJar (Paul Grayson #63)

* Bug fixes

  * Fix HTTP Digest authentication when the URI has query params
  * Don't append default ports to HTTP_HOST (David Lee #57)
2012-12-17 15:13:24 +00:00
taca
e41a33fd0a Note update of ruby-innate package to 2012.12 and www/ramaze package
to 2012.12.08.
2012-12-17 15:11:41 +00:00
taca
b8dcf3e27e Update ramaze to 2012.12.08.
Changes are too many to write here, please refer CHANGELOG.
2012-12-17 15:10:57 +00:00
taca
5b4f51b412 Update ruby-innate to 2012.12.
Changes are too many to write here, please refer CHANGELOG.
2012-12-17 15:10:12 +00:00
taca
0b7604aa91 Note update of www/ruby-csspool package to 3.0.2. 2012-12-17 15:08:57 +00:00
taca
c6bda8a179 Update ruby-csspool to 3.0.2.
== 3.0.2

* New Features

  * Support IE Safe Hacks [stereobooster]

* Bugfixes

  * Fix #23 - set up CSSPool.CSS so it can read files. [Mike Tierney]
2012-12-17 15:08:28 +00:00
taca
d945c7aa34 Note update of textproc/ruby-treetop package to 1.4.12. 2012-12-17 15:07:22 +00:00
taca
0fb360d531 Update ruby-treetop to 1.4.12.
Exact changes aren't unavailable, please refer github:
      https://github.com/nathansobo/treetop/commits/master.
2012-12-17 15:06:50 +00:00
wen
40e43c8ac2 Updated math/R-randomForest to 4.6.7 2012-12-17 15:05:44 +00:00
wen
0e1da0e23b Update to 4.6.7
No upstream changelog.
2012-12-17 15:04:19 +00:00
dholland
f8b7062bae Not MAKE_JOBS_SAFE. 2012-12-17 15:01:14 +00:00
tron
9da17950e5 Note update of the "squid31" package to version 3.1.22. 2012-12-17 14:44:54 +00:00
tron
bffd615702 Updated "squid31" package to version 3.1.22. Changes sinc 3.1.20:
- Bug 3622: peerClearRRStart scheduling multiple events
- Bug 3615: configure check for default max number of FDs is broken
- Bug 3607: --enable-auth documented default action incorrect
- Bug 3593: socket failure: Address family not supported by protocol
- Bug 3584: Detection of setresuid() is broken
- Bug 3568: Consolidate external_acl_type config dumping and add missing %%
- Bug 3564: eCAP not supporting CoAP URI schemes
- Bug 3484: Docs: sslproxy_cert_error example flawed
- Bug 3462: Delay Pools and ICAP
- Bug 3133: better fix: Memory leak handling requests for sites that don't
  exist
- Bug 2976: ERR_INVALID_URL for transparently captured requests when
  reconfiguring
- Silence IOS 15.1 unknown capabilities messages.
- Account for Store disk client quota when bandwidth-limiting the server.
- ... and several documentation fixes
- ... and several compile fixes
2012-12-17 14:42:54 +00:00
taca
eb66c47289 Note update of textproc/ruby-stringex package to 1.5.1. 2012-12-17 14:39:44 +00:00
taca
0a80ed7a3b Update ruby-stringex to 1.5.1.
Exact changes aren't available, please refer github:
	https://github.com/rsl/stringex/commits/master.
2012-12-17 14:38:58 +00:00
taca
7ee42c7a32 Note update of textproc/ruby-rdtool package to 0.6.38. 2012-12-17 14:36:44 +00:00
taca
887a26a09f Update ruby-rdtool to 0.6.38.
:0.6.38
  * Fix incompatibility between Ruby1.8 and Ruby1.9
    ARGF.filename return "-" if ARGV is empty on Ruby >= 1.9
    Thanks to okkez!!
2012-12-17 14:36:12 +00:00
taca
4ff814e639 Note update of textproc/ruby-libxml package to 2.4.0. 2012-12-17 14:35:15 +00:00
taca
73e346b710 Update ruby-libxml to 2.4.0.
= Release History

== 2.4.0 / 2012-12-14 Charlie Savage

* Support libxml 2.9.0 (Daniel Veillard)

* Extensive new interfaces for xml schema functionality including suppor for
  schemal elements, types, facets and attributes (Anton Sozontov)

* Fix Encoding#from_s bug and update docs (Nikita Afanasenko)

* Node#content= encoding (Nikita Afanasenko)
2012-12-17 14:34:49 +00:00
taca
3227570ef6 Note update of textproc/ruby-multi_json package to 1.5.0. 2012-12-17 14:33:55 +00:00
taca
af99af549c Update ruby-multi_json to 1.5.0.
Exact changes are unknown, please refer github:
	https://github.com/intridea/multi_json/commits/master.
2012-12-17 14:33:27 +00:00
taca
e743cbbb92 Note update of textproc/ruby-kramdown package to 0.14.1. 2012-12-17 14:30:03 +00:00
taca
d498ded376 Update ruby-kramdown to 0.14.1.
Fixed GH#30: Specifying empty definitions for a definition list now works

    Better fix for the output of closed/open elements

    Using the already defined tags for HTML elements without a body
    and better output for unknown elements.

    Fixed: Using a block IAL before a definition list now works

    Fixed problem with the output of empty i/b HTML tags

    Document fix of doc/quickref.page
2012-12-17 14:29:27 +00:00
wiz
bdf0b7991e Fix typo in loop (wrong variable used).
Ok gdt.
2012-12-17 14:27:44 +00:00