summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-03-14Update ruby-webrobots to 0.1.0.taca3-9/+10
* Change the :ignore_crawl_delay option to a handler option :crawl_delay. * Merge back the previous change to the source file. * Remove Gemfile.lock. * Add the ability to externalize the enforcement of the robots.txt Craw jasonhowes authored a month ago. * Migrate from jeweler to bundle gem.
2013-03-14Note update of www/ruby-unicorn package to 4.6.2.taca1-1/+2
2013-03-14Update ruby-unicorn to 4.6.2.taca3-8/+10
=== unicorn 4.6.2 - HTTP parser fix for Rainbows! / 2013-02-26 02:59 UTC This release fixes a bug in Unicorn::HttpParser#filter_body which affected some configurations of Rainbows! There is also a minor size reduction in the DSO. === unicorn 4.6.1 - minor cleanups / 2013-02-21 08:38 UTC Unicorn::Const::UNICORN_VERSION is now auto-generated from GIT-VERSION-GEN and always correct. Minor cleanups for hijacking. === unicorn 4.6.0 - hijacking support / 2013-02-06 11:23 UTC This pre-release adds hijacking support for Rack 1.5 users. See Rack documentation for more information about hijacking. There is also a new --no-default-middleware/-N option for the `unicorn' command to ignore RACK_ENV within unicorn thanks to Lin Jen-Shin. There are only documentation and test-portability updates since 4.6.0pre1, no code changes. === unicorn 4.6.0pre1 - hijacking support / 2013-01-29 21:05 UTC This pre-release adds hijacking support for Rack 1.5 users. See Rack documentation for more information about hijacking. There is also a new --no-default-middleware/-N option for the `unicorn' command to ignore RACK_ENV within unicorn.
2013-03-14Note update of www/ruby-sass package to 3.2.7.taca1-1/+2
2013-03-14Update ruby-sass to 3.2.7.taca3-7/+12
3.2.7 * The index and zip functions now work like all other list functions and treat individual values as single-element lists. * Avoid stack overflow errors caused by very long function or mixin argument lists. * Emit relative paths when using the --line-comments flag of the sass executable. * Fix a case where very long numbers would cause the SCSS parser to take exponential time. 3.2.6 * Support for Rubinius 2.0.0.rc1. All tests pass in 1.8 mode. 1.9 mode has some tests blocked on Rubinius issue 2139. * Support for JRuby 1.7.2. * Support for symlinked executables. Thanks to Yin-So Chen. * Support for bubbling @supports queries in the indented syntax. * Fix an incorrect warning when using @extend from within nested @media queries. * Update the bundled version of listen to 0.7.2.
2013-03-14Sync licenses with mk/wiz1-21/+25
2013-03-14Note update of www/ruby-jekyll package to 0.12.1.taca1-1/+2
2013-03-14Update ruby-jekyll to 0.12.1.taca3-12/+18
== 0.12.1 / 2013-02-19 * Minor Enhancements * Update Kramdown version to 0.14 (#744, #808) * Test Enhancements * Update Rake version to 10.0.3 (#744) * Update Shoulda version to 3.3.2 (#744) * Update Redcarpet version to 2.2.2 (#744) == 0.12.0 / 2012-12-22 * Minor Enhancements * Add ability to explicitly specify included files (#261) * Add --default-mimetype option (#279) * Allow setting of RedCloth options (#284) * Add post_url Liquid tag for internal post linking (#369) * Allow multiple plugin dirs to be specified (#438) * Inline TOC token support for RDiscount (#333) * Add the option to specify the paginated url format (#342) * Support Redcarpet 2 and fenced code blocks (#619) * Better reporting of Liquid errors (#624) * Bug Fixes * Allow some special characters in highlight names * URL escape category names in URL generation (#360) * Fix error with limit_posts (#442) * Properly select dotfile during directory scan (#363, #431, #377) * Allow setting of Kramdown smart_quotes (#482) * Ensure front-matter is at start of file (#562)
2013-03-14Note update of www/ruby-innate package to 2013.02.21.taca1-1/+2
2013-03-14Update ruby-innate to 2013.02.21.taca2-7/+7
[866c9cd | 2013-02-21 12:21:46 UTC] Michael Fellinger <m.fellinger@gmail.com> * Version 2013.02.21 [aa22191 | 2013-02-21 12:21:16 UTC] Michael Fellinger <m.fellinger@gmail.com> * update dependencies [1a2ee39 | 2013-02-07 00:10:01 UTC] Michael Fellinger <m.fellinger@gmail.com> * Version 2013.02 [64ca67a | 2013-01-29 23:34:26 UTC] Michael Fellinger <m.fellinger@gmail.com> * don't do CI for REE, it's not supported anymore, add rbx and jruby 1.9 [079975c | 2013-01-29 21:57:39 UTC] Yorick Peterse <yorickpeterse@gmail.com> * Preserve values when calling render_full. Signed-off-by: Yorick Peterse <yorickpeterse@gmail.com> [a90d3f9 | 2013-01-29 21:53:16 UTC] Yorick Peterse <yorickpeterse@gmail.com> * Fix for generting URLs using anchor(). Instead of always appending "?" to the URL the anchor() method should only do so when there actually is a query string. Signed-off-by: Yorick Peterse <yorickpeterse@gmail.com> [d2aeb7f | 2013-01-29 21:17:08 UTC] Yorick Peterse <yorickpeterse@gmail.com> * Caching of provides and method arities. Caching of a controller's provide handlers as well as the method arities can lead to a nice performance boost of around 300 transactions/second using the following benchmark: require 'innate' Innate.middleware :live do run Innate.core end Innate::Log.level = Logger::ERROR Innate.options.mode = :live ENV['RACK_ENV'] = 'none' class MainController Innate.node('/', self) def index return 'index' end end [:fast_mappings, :cache_provides, :cache_method_arities].each do |key| MainController.ancestral_trait[key] = true end Innate.start(:adapter => :thin) Benchmarking this was done by running `siege -c 10 -t 5s -b HOST` and would initially result in around 1700 trans/sec. When using this commit this sits between 2000/2100 trans/sec. To prevent any potential issues the caching of provides and method aritites is disabled by default. See Github issue #7 for more information. Signed-off-by: Yorick Peterse <yorickpeterse@gmail.com> [06dd4c5 | 2013-01-29 18:25:49 UTC] Yorick Peterse <yorickpeterse@gmail.com> * Revert action caching. Instead of caching the entire action instance (which is modified further down the chain) various parts that make up this process will be cached instead (where possible). Signed-off-by: Yorick Peterse <yorickpeterse@gmail.com> [32440b0 | 2013-01-15 18:38:41 UTC] Michael Fellinger <m.fellinger@gmail.com> * prevent memory leak from action caching [040d084 | 2013-01-15 18:37:19 UTC] Michael Fellinger <m.fellinger@gmail.com> * clean up LRUHash a bit [a136a72 | 2013-01-14 20:06:22 UTC] Michael Fellinger <m.fellinger@gmail.com> * build middleware only once [8aea7cb | 2013-01-14 18:31:37 UTC] Yorick Peterse <yorickpeterse@gmail.com> * Only compile middleware for the current mode. Signed-off-by: Yorick Peterse <yorickpeterse@gmail.com>
2013-03-14Add qpl-v1.0 (non-copyleft free) to default acceptable.wiz1-1/+2
2013-03-14Sort DEFAULT_ACCEPTABLE_LICENSES.wiz1-21/+25
2013-03-14Note update of www/camping package to 2.1.531.taca1-1/+2
2013-03-14Update camping to 2.1.531.taca2-7/+7
* Update HOMEPAGE. * No changes are available.
2013-03-14Note update of textproc/ruby-tilt package to 1.3.5.taca1-1/+2
2013-03-14Update ruby-tilt to 1.3.5.taca3-7/+8
## 1.3.5 (2013-03-06) * Fixed extension for PlainTemplate (judofyr) * Improved local variables regexp (#174, razorinc) * Added CHANGELOG.md
2013-03-14Note update of textproc/ruby-textpow package to 1.3.1.taca1-1/+2
2013-03-14Update ruby-textpow to 1.3.1.taca3-8/+9
A few bug fixes.
2013-03-14Note update of textproc/ruby-multi_json package to 1.6.1.taca1-1/+2
2013-03-14Update ruby-multi_json to 1.6.1.taca2-6/+6
1.6.1 ----- * [Revert "Use JSON.generate instead of #to_json"](https://github.com/intridea/multi_json/issues/86)
2013-03-14Note update of textproc/ruby-mab package to 0.0.3.taca1-1/+2
2013-03-14Update ruby-mab to 0.0.3taca3-81/+36
Chantes aren't available.
2013-03-14Revive MASTER_SITES.kim1-4/+3
Use MAKE_FLAGS instead of appending flags to *_TARGET.
2013-03-14Updated net/srsh to 1.3:kim1-1/+2
- No functional changes (upstream added Debian packaging support).
2013-03-14Revive MASTER_SITES.kim3-15/+26
Updated net/srsh to 1.3: - No functional changes (upstream added Debian packaging support).
2013-03-14Update net/sdist to version 1.9:kim1-1/+2
- Add configuration file (sdist.conf). - Change the default netgroup to dist-os-rel-arch and add options to not use the release (-norel) and/or architecture (-noarch).
2013-03-14Revive MASTER_SITES.kim4-17/+44
Update net/sdist to version 1.9: - Add configuration file (sdist.conf). - Change the default netgroup to dist-os-rel-arch and add options to not use the release (-norel) and/or architecture (-noarch).
2013-03-14Update HOMEPAGE.wiz1-2/+2
2013-03-14PKGREVISIOn does not belong in Makefile.common.wiz2-3/+4
2013-03-14ocaml rpath patch -> 4.00.1nb2is1-1/+2
2013-03-14bump PKGREVISION to 4.00.1nb2is2-5/+3
2013-03-14ocamlmklib adds absolute directories (that is, such starting withis3-2/+46
'/') given to -L to run-time library search path passed to the lower linker using -Wl,-rpath= This is a problem, because even if we add the right directory with -Wl,-rpath= or variants thereof, the wrong path still is in the RPATH on the resulting binary. This might lead to the wrong library being found at run-time. To build clean packages when using ocamlmklib, '-elfmode' will switch this behaviour off; when using '-elfmode', all following -L parameters won't augment the RPATH, and it has to be updated seperately with -dllpath, -Wl,-rpath= etc. (This is a local pkgsrc stopgap addition, needed to proceed with fixes to xentools41. The issue has been raised with upstream; hopefully this patch can be reverted with a future ocaml package version.)
2013-03-14BUILD_MAKE_FLAGS and INSTALL_MAKE_FLAGS can be merged into MAKE_FLAGSkim1-3/+2
thanks to patch-aa adding DESTDIR in the install target paths in the distribution Makefile.
2013-03-14Revert previous: already fixed in patch-aakim1-6/+1
2013-03-14Revive MASTER_SITES.kim1-2/+2
2013-03-14Fix manual installation path for platform PKGMANDIR != man.kim1-1/+6
2013-03-14Added audio/py-beets version 1.0.0wiz1-1/+2
2013-03-14+ py-beets.wiz1-1/+2
2013-03-14Import py-beets-1.0.0 as audio/py-beets.wiz4-0/+203
Beets is the best command-line tool for viewing, querying, renaming, and updating your music collection. The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. (It also downloads cover art for albums it imports.) Then it provides a bouquet of tools for manipulating and accessing your music. Because beets is designed as a library, it can do almost anything you can imagine for your music collection. Via plugins, beets becomes a panacea: * Embed and extract album art from files' tags. * Listen to your library with a music player that speaks the MPD protocol and works with a staggering variety of interfaces. * Fetch lyrics for all your songs from databases on the Web. * Manage your MusicBrainz music collection. * Analyze music files' metadata from the command line. * Clean up crufty tags left behind by other, less-awesome tools. * Browse your music library graphically through a Web browser and play it in any browser that supports HTML5 Audio.
2013-03-14Upgrade sysutils/osname to version 2.0:kim1-1/+2
- Canonicalize x86_64 to amd64. - Canonicalize i86pc to i386. - Implement a -format option in favor of the plethora of element selectors. - Add -group, -release and -relgroup. - Use lsb_release(1) on systems with Linux kernels to determine operating system name (use the distribution ID). - Handle Fedora, Mandriva, RedHat and SuSE. - Handle Mac OS X. - Handle Cygwin (at least on XP).
2013-03-14Fix build on Solaristez1-1/+2
(per http://old.nabble.com/Re%3A-build-problem-p34365918.html)
2013-03-14Upgrade net/netname to version 2.2:kim1-1/+2
- Implement -n, -4 and -6 to list IP addresses. - Add -a option for printing out the list of addresses. - Use getaddrinfo() instead of gethostbyname().
2013-03-14Updated devel/ruby-pkg-config to 1.1.4obache1-1/+2
2013-03-14Update ruby-pkg-config to 1.1.4.obache3-9/+10
= NEWS == 1.1.4 - 2012/08/02 * Supported mswin64 as MSVC environment.
2013-03-14Added audio/py-musicbrainz-ngs version 0.3wiz1-1/+2
2013-03-14+ py-musicbrainz-ngswiz1-1/+2
2013-03-14Import py-musicbrainz-ngs-0.3 as audio/py-musicbrainz-ngs.wiz4-0/+46
This library implements webservice bindings for the Musicbrainz NGS site, also known as /ws/2.
2013-03-14Updated graphics/ruby-rcairo to 1.12.4obache1-1/+2
2013-03-14Update ruby-rcairo to 1.12.4.obache2-10/+8
Release 1.12.4 (2013-03-11) Kouhei Sutou <kou@cozmixng.org> =========================================================== Improvements ------------ * Added Windows binary for Ruby 2.0.0. Release 1.12.3 (2012-12-04) Kouhei Sutou <kou@cozmixng.org> =========================================================== Improvements ------------ * Supported Ruby 2.0.0. [Reported by tmtms] * Supported auto native package install by Homebrew and MacPorts. Thanks ------ * tmtms
2013-03-14Revive MASTER_SITES.kim3-16/+17
Upgrade to version 2.0: - Canonicalize x86_64 to amd64. - Canonicalize i86pc to i386. - Implement a -format option in favor of the plethora of element selectors. - Add -group, -release and -relgroup. - Use lsb_release(1) on systems with Linux kernels to determine operating system name (use the distribution ID). - Handle Fedora, Mandriva, RedHat and SuSE. - Handle Mac OS X. - Handle Cygwin (at least on XP).