Commit graph

23132 commits

Author SHA1 Message Date
wen
034c99fc2d Update to 0.27
Upstream changes:
0.27 - 2014-08-16
    - declare minimum perl version of 5.6 in metadata
2015-01-08 14:05:33 +00:00
szptvlfn
83db0c896e + happy 2015-01-08 11:52:00 +00:00
szptvlfn
23d59ed72e Import happy-1.19.5 as devel/happy,
packaged for wip by esg.

Happy is a parser generator for Haskell. Given a grammar specification in
BNF, Happy generates Haskell code to parse the grammar. Happy works in a
similar way to the yacc tool for C.
2015-01-08 11:50:54 +00:00
mef
fe93ba9664 Fix DEPENDS+= Path typo, thanks wiz@ for review. 2015-01-07 08:56:37 +00:00
wiz
d7bcc2217b The last updates of libebml and libmatroska, despite only being X.Y.Z ->
X.Y.Z+1 updates, bumped the shared library major versions.

Do recursive bump for that.
2015-01-06 14:59:18 +00:00
jperkin
6a4f898165 Don't hardcode /usr/pkg, use PYTHONCONFIG instead. 2015-01-06 14:41:08 +00:00
wen
ba0076d4dd Update to 1.123
Update DEPENDS

Upstream changes:
1.123 2014-11-11

    [Dependencies]
    * Now requires PPI-1.220 which has numerous bug fixes. This may
      eliminate the need for some "## no critic" markers you inserted to
      work around those bugs. The "ProhibitUselessNoCritic" policy should
      help you find them.

    [Miscellanea]
    * Fixed a typo in the Variables::ProhibitPerl4PackageNames message.

1.122 2014-08-25

    [Dependencies]
    * Now requires PPI-1.218 which has numerous enahncements and bug fixes.
      Also now requires Readonly-2.00, which obviates the need for Readonly::XS
      to get fast constants.

    * File::HomeDir, File::Which, and Term::ANSIColor are all required now
      instead of being optional or recommended. This simplifies our test code
      and ensures consistent optimal behavior for all users.

    [New Policies]
    * Added two new policies: BuiltinFunctions::ProhibitUselessTopic and
      RegularExpressions::ProhibitUselessTopic.

    [Miscellanea]
    * Updated the perlcritic.el script to use modern Emacs hooks.
      Thanks to @intrigeri and the Debian team for the patch.  Fixes GH #556.

    * Removed all the internal RCS keyword boilerplate blocks that were never
      getting expanded.
2015-01-06 14:39:10 +00:00
wen
18376648f3 Update to 2.00
Upstream changes:
2.00 2014-06-30T11:15:05Z
    - Deprecation of Readonly::XS as a requirement for fast, readonly
      scalars is complete. Report any lingering issues on the tracker
      ASAP.

1.61 2014-06-28T11:22:13Z
    - Normal constants (strings, numbers) do not appear to be read only to
      Internals::SvREADONLY($) but perl itself doesn't miss a beat when you
      attempt to assign a value to them. Fixing test regression in
      t/general/reassign.t

1.60 2014-06-27T15:59:27Z
    - Fix array and hash tie() while in XS mode (exposed by Params::Validate tests)
    - Fix implicit undef value regression resolves #8
    - Minor documentation fixes (spell check, etc.)
    - Patch from Gregor Herrmann <gregoa@debian.org> resolves #7

v1.500.0 2014-06-25T19:56:18Z
    - PLEASE NOTE: Readonly::XS is no longer needed!
    - Again, Readonly::XS is no longer needed.
    - Merged typo fix from David Steinbrunner RT#86350/#2
    - Merged patch (w/ tests, yay!) from Daniel P. Risse RT#37864
    - Upstream magic related bugs were reported to p5p and fixed in perl
      itself so we can resolve the following local issues: RT#70167, RT#57382,
      RT#29487, RT#36653, RT#24216.
    - Reported RT#120122 (tie + smartmatch bug) upstream to p5p. Will
      eventually resolve local [RT#59256].
    - Note: Resolved RT#16167 (benchmark.pl being installed) in 1.04.
    - Use readonly support exposed in Internals on perl >=5.8.x
    - Have I mentioned you don't need to install Readonly::XS anymore?
    - Checking $Readonly::XSokay is no longer suggested. ...never should have been
2015-01-06 14:32:05 +00:00
wen
95fbbe7857 Update to 1.220
Upstream changes:
1.220 Tue 11 Nov 2014
	Summary:
	- incompatible behavior fixes on PPI::Statement::Sub->prototype
	- improved parsing of various syntax elements
	- code quality improvements
	- various small documentation fixes

	Details:
	- {} is now recognized as anonymous hash constructor instead of a code
	  block after these operators: &&= //= || && // ? :
	  (GitHub #36) (MOREGAN)
	- regex capture variables greater than $9 are now parsed completely,
	  instead of being parsed as single digit captures with numbers after
	  them (GitHub #38) (MOREGAN)
	- DESTROY and AUTOLOAD subs are now parsed even without the sub
	  keyword (GitHub #39) (MOREGAN)
	- PPI::Statement::Sub->prototype behavior now matches its
	  documentation, instead of returning the prototype string
	  unchanged and still including the parens (GitHub #56) (MOREGAN)
	- PPI::Statement::Sub->prototype now returns undef on subs without a
	  prototype, instead of returning an empty string
	  (GitHub #56) (MOREGAN)
	- list of keywords which are not parsed as packages when followed by
	  the Perl4 package separator ' has been increased
	  (GitHub #77) (MOREGAN)
	- application of a number of Perl::Critic policies and documentation
	  fixes (GitHub #53) (MOREGAN, MITHALDU)
	- automation of README.md generation for git (GitHub #86) (COWENS)
	- various small documentation fixes (Github #96) (MOREGAN)

1.218 Sat 16 Aug 2014
	Summary:
	- Fixes for various parsing and documentation bugs
	- 1MB limit on input document size removed
	- Moved repository to GitHub: https://github.com/adamkennedy/PPI

	Details:
	- Stop directing bugs to rt.cpan.org (GitHub #40) (MOREGAN)
	- Fix documentation reference to List::Util (RT #75308) (RWSTAUNER)
	- Improve scalability of parsing long lines, and remove the size
	  limit on documents PPI will parse (GitHub #5) (MITHALDU)
	- Speed up adding an element to an unlabeled statement.
	  Allow inlining of some methods. (WOLFSAGE)
	- Expanded test coverage (DOLMEN, MOREGAN)
	- Convert inline tests to standalone tests (GitHub #12) (MOREGAN)
	- Fix for '1=>x' being parsed as x operator (GitHub #46) (MOREGAN)
	- Recognize that '1 x3' is the x operator followed by a 3
	  (RT #37892, GitHub #27) (MOREGAN)
	- Support all augmented assignment operators (<<=, ||=, etc.)
	  (RT #68176, 71705) (MOREGAN)
	- Stop upper-case "=CUT" from terminating POD (RT #75039) (JAE)
	- Support upper-case digits in hex and binary numbers, including
	  in the leading '0X' and '0B'. (RT #36540) (KRYDE, MOREGAN)
	- Fix float argument to range operator misparsed as version
	  string (RT #45014) (MOREGAN)
	- Fix POD markup in PPI::Find (RT #51693) (FWIE)
	- Fix spelling of "Tom Christiansen" (RT #67264) (TADMC)
	- Fix a large raft of spelling and grammar errors (RT #85049) (David
	  Steinbrunner, DOLMEN, MOREGAN)
	- Fix errors in documentation of the PPI::Element class hierarchy
	  (RT #30863, 69026) (SJQUINNEY)
	- Prevent PPI::XSAccessor packages from hiding corresponding PPI
	  packages in CPAN (RT #90792) (MITHALDU)
	- Recognize the formfeed character as whitespace (RT #67517) (WYANT)
	- Recognize regex match following 'return' (RT #27475) (ADAMK)
	- Fix missing dereference, length called on reference (RT #40103)
	  (ADAMK)
2015-01-06 14:22:20 +00:00
wen
d233fb29d8 Update to 5.20141220
Upstream changes:
5.20141220
  - Updated for v5.21.7
2015-01-06 13:49:39 +00:00
ryoon
47ad76b4a7 Update to 0.1pre2019
Changelog is not available.
2015-01-06 10:26:59 +00:00
jperkin
d5fe1e06ad Fix broken dependency matches. 2015-01-05 13:17:41 +00:00
wiz
4c2c3227ab Update to 12.0.5:
12.0.5 (2015-01-03)
~~~~~~~~~~~~~~~~~~~

* Upgrade pip to 6.0.6

* Upgrade setuptools to 11.0
2015-01-04 23:48:43 +00:00
wiz
39d46bc359 Update to 11.0:
----
11.0
----

* Interop #3: Upgrade to Packaging 15.0; updates to PEP 440 so that >1.7 does
  not exclude 1.7.1 but does exclude 1.7.0 and 1.7.0.post1.

------
10.2.1
------

* Issue #323: Fix regression in entry point name parsing.

----
10.2
----

* Deprecated use of EntryPoint.load(require=False).
* Substantial refactoring of all unit tests. Tests are now much leaner and
  re-use a lot of fixtures and contexts for better clarity of purpose.

----
10.1
----

* Issue #320: Added a compatibility implementation of
  ``sdist._default_revctrl``
  so that systems relying on that interface do not fail (namely, Ubuntu 12.04
  and similar Debian releases).

------
10.0.1
------

* Issue #319: Fixed issue installing pure distutils packages.

----
10.0
----

* Issue #313: Removed built-in support for subversion. Projects wishing to
  retain support for subversion will need to use a third party library. The
  extant implementation is being ported to `setuptools_svn
  <https://pypi.python.org/pypi/setuptools_svn>`_.
* Issue #315: Updated setuptools to hide its own loaded modules during
  installation of another package. This change will enable setuptools to
  upgrade (or downgrade) itself even when its own metadata and implementation
  change.

---
9.1
---

* Prefer vendored packaging library `as recommended
  <170657b68f (commitcomment-9109448)>`_.

-----
9.0.1
-----

* Issue #312: Restored presence of pkg_resources API tests (doctest) to sdist.

---
9.0
---

* Issue #314: Disabled support for ``setup_requires`` metadata to avoid issue
  where Setuptools was unable to upgrade over earlier versions.

---
8.4
---

* Pull Request #106: Now write ``setup_requires`` metadata.
2015-01-04 23:42:47 +00:00
wiz
d374b72c32 Update to 1.4.22:
Bugfix maintenance release. Fixes to hash table expansion now
completely hang all threads very briefly while the hash table
pointers are swapped. Once swapped, it unlocks and uses locks as
normal.

In previous versions, the hash table was switched to a global lock
instead of a map of bucket-locks during expansion. This should be
faster overall with a small latency penalty. It's possible to
presize the hash table with -o hashpower
2015-01-04 23:41:04 +00:00
wiz
6c7c738781 Update to 1.3.1:
2015-01-04  Moritz Bunkus  <moritz@bunkus.org>

        * Released v1.3.1.

        * EbmlElement::Render(): doesn't catch exceptions anymore. Instead
        exceptions generated from the IOCallback class (e.g. if a write
        failed) are propagated to the caller.

2014-12-21  Moritz Bunkus  <moritz@bunkus.org>

        * build system: switched the build system from hand-crafted
        Makefiles to an autoconf/automake-based system. A pkg-config file
        will be installed as well; its name is »libebml«. Patch by Jan
        Engelhardt <jengelh@inai.de>.

2014-12-20  Moritz Bunkus  <moritz@bunkus.org>

        * EbmlMaster::Read(): when reading with SCOPE_ALL_DATA only those
        elements that could successfully be read will be kept
        (e.g. defective block groups will be dropped).

2014-12-19  Moritz Bunkus  <moritz@bunkus.org>

        * EbmlMemoryStream: add a new class for safe memory access that
        throws exception on failures.

2014-12-18  Moritz Bunkus  <moritz@bunkus.org>

        * EbmlMaster: Fixed read() trying to calculate the end position of
        elements with an unknown size. This avoids endless loops and
        assertions in certain cases. See https://trac.bunkus.org/ticket/1089
2015-01-04 23:22:37 +00:00
wiz
31ce81efb4 Update to 1.06b:
--------------
Version 1.06b:
--------------

  - Switched to slightly more accurate (if still not very helpful) reporting
    of short read and short write errors. These theoretically shouldn't happen
    unless you kill the forkserver or run out of disk space. Suggested by
    Jakub Wilk.

  - Revamped some of the allocator and debug code, adding comments and
    cleaning up other mess.

  - Tweaked the odds of fuzzing non-favored test cases to make sure that
    baseline coverage of all inputs is reached sooner.
2015-01-04 23:13:38 +00:00
wen
f0f713444c Update to 0.020
Upstream changes:
0.020     2015-01-03 20:32:21Z
          - re-release to fix problematic $VERSION declaration (RT#101239)

0.019     2014-12-18 20:07:02Z
          - fix test to allow for special characters (e.g. MSWin32 file
            separators) in filenames (A. Sinan Unur)

0.018     2014-12-17 18:17:30Z
          - fix test to not depend on message formatting changes in newer Carp

0.017     2014-12-16 20:17:22Z
          - handle other warning handlers passing us partial warning messages
            by re-adding the source file and line number
2015-01-04 13:06:37 +00:00
wiz
24622f9141 Update to 1.41:
1.41 -- 2014/09/05 15:49:50
	[BUGFIXES]
	 * Avoid pre-C99 declaration after statements (RT98624)
	 * Fix use of GetMagic in List::Util::reduce (RT63211)

1.40 -- 2014/08/30 11:36:36
	[CHANGES]
	 * Added entire new module, Sub::Util to contain functions related
	   to CODE refs
	 * Added subname inspired by Sub::Identify
	 * Added set_subname copied and renamed from Sub::Name
	 * Also moved set_prototype into Sub::Name, with back-compat wrapper
	   in Scalar::Util
	 * Added prototype wrapper of CODE::prototype, for completeness
	 * Nicer module documentation format, allows neater use of L</...>

	[THANKS]
	 * This change was written at the YAPC::EU 2014 Hackathon hosted by
	   Liz Mattijsen and Wendy van Dijk; much thanks to them for being its
	   catalyst.

1.39 -- 2014/06/05 15:54:59
	[CHANGES]
	 * Have pairs() return blessed objects that recognise ->key and
	   ->value as well as being two-element ARRAYs
	 * Booleanise the result of looks_like_number() so as not to
	   accidentally leak abstraction (RT94806)
	 * Document the version each function was added in (RT96220)

	[BUGFIXES]
	 * Try to preserve UV precision in sum() where possible (RT95902)
	 * Document known lexical capture in pairmap bug RT95409
	 * SvGETMAGIC() in set_prototype() (RT72080)
2015-01-04 12:26:36 +00:00
wiz
27d606bb1f Update to 0.43:
0.43 Thu Jan  1 00:27:42 PST 2015
 - Update docs
2015-01-04 12:25:31 +00:00
wiz
4ff4bec6c0 Update to 1.15:
1.15    2015-01-01

- No changes from 1.14


1.14    2014-12-20 (TRIAL RELEASE)

- Callbacks can now die to provide a custom error message or exception
  object. Requested by multiple people. Addresses RT #95701 and will allow
  MooseX::Params::Validate to use messages provided by the type object.
2015-01-04 12:23:13 +00:00
dholland
c2ffb0d040 Use PKG_SKIP_REASON for unsupported platforms. 2015-01-04 09:50:46 +00:00
schmonz
7ea9b94763 Update to 0.59. From the changelog:
- Release with new TestML-0.52
2015-01-04 06:30:25 +00:00
schmonz
28dfc586c9 Add and enable p5-App-Prove-Plugin-ProgressBar-Each. 2015-01-04 06:25:58 +00:00
schmonz
7ce29f8a0f Import p5-App-Prove-Plugin-ProgressBar-Each, a per-test-script
progress bar for Perl prove(1).

Greatly inspired by App::Prove::Plugin::ProgressBar. Use it like so:

$ prove -PProgressBar::Each t/
2015-01-04 06:25:14 +00:00
schmonz
99991f6498 Add and enable p5-Term-ProgressBar-Simple. 2015-01-04 06:22:11 +00:00
schmonz
a404465099 Import p5-Term-ProgressBar-Simple, simpler progress bars.
Progress bars are handy - they tell you how much work has been done,
how much is left to do and estimate how long it will take.

But they can be fiddly!

This module does the right thing in almost all cases in a really convenient way.
2015-01-04 06:21:28 +00:00
schmonz
8d575d5d23 Add and enable p5-Term-ProgressBar-Quiet. 2015-01-04 06:17:02 +00:00
schmonz
3252bfc605 Import p5-Term-ProgressBar-Quiet, a progress bar for things that
take a while. It looks like

  50% [=====     ]

and is as long as the terminal. Linear estimation of the time left
for the process to run is available.
2015-01-04 06:15:47 +00:00
schmonz
56f34faaa5 Update to 0.45. From the changelog:
- Requires ExtUtils::ParseXS 3.18 because of 2.21 issues
  (https://github.com/xslate/p5-Text-Xslate/issues/104)
- Support PUREPERL_ONLY=1
- Remove experimental requires_xs() because Module::Install
  provides another requires_xs()
- Move t/01_example.t to xt/
2015-01-04 06:11:43 +00:00
schmonz
6c6b931d08 Update to 1.14. From the changelog:
- Newlines should be consistently UNIX-stylee now in generated files (MITHALDU)
- Mark two tests as TODO if EUMM > 6.98 until utf8 gets fixed (BINGOS)
- Revert license behaviour (TSIBLEY)
- Documentation also mentioning metacpan.org (LLAP)
- Minimum perl version is now v5.6.0 (BOWTIE)
- Update license tables (BOWTIE)
- Prereqs and recommends adjusted (BOWTIE)
- Typo fixes (BOWTIE)
- Pod fixes (GREGOA)
- Fix make upgradedeps work with bundles (JNWHITLEY)
- Fix name_from regex to work with recent package syntax (BOWTIE)
- Performance enhancements when running Makefile.PL (GFUJI)
- Removed use of sub prototypes (BOWTIE)
- Remove LWP::UserAgent from the prereqs (TOKUHIROM)
- Require a more recent version of Module::ScanDeps (CHORNY)
- Fix failing test case with recent Parse::CPAN::Meta (BINGOS)
2015-01-04 06:09:43 +00:00
schmonz
d35047cffd Update to 1.17. From the changelog:
- scandeps.pl: die if an option is not recognized
- Reformat Changes file according to CPAN::Changes::Spec
- Modify %Preload rule: let Unicode::UCD explicitly imply utf8.pm.
  This fixes PAR::Packer's self test.
  Previously Unicode::UCD implied utf8.pm implicitly because
  it contains calls to some utf8::foo() functions.
- Add %Preload rule: Mozilla::CA requires its cacert.pem file
- Recognize "do filename" constructs even if "do" isn't at the start
  of a chunk.
- Upgrade to Module::Install 1.14
- Fix RT#98938: recognize Module::Runtime module-loading functions
- Fix a nasty typo that broke scandeps.pl option -E
    $ scandeps -E "some string"
    Unknown option: E
    Can't open some string: No such file or directory at scandeps.pl line 49.
  - also scandeps.pl: die if an option is not recognized
- Remove some overzealous heuristics from scan_chunk()
  - they were looking for
    Foo::Bar->something
    Foo::Bar::whatever(...)
  _anywhere_ in programs to infer a dependency on Foo/Bar.pm.
  BEWARE: This might break some use cases, i.e. missing some dependencies.
  On the other hand,  this causes hard to investigate problems like the one
  starting at http://www.mail-archive.com/par@perl.org/msg05531.html.
  While the former can easily be worked around by the user itself (just
  add a missing dependecy explicitly, e.g. using "pp -M ...") and
  typically can be solved in general by adding a %Preload rule,
  the latter just wastes people's times.
- Recognize Test::More require_ok() and use_ok()
  - makes 3-static_oo_interface_real.t pass again (fallout from the above)
- Upgrade to Module::Install 1.12
- Add option -T to request information from CPAN
  - don't access CPAN behind the user's back just because they have
    CPANPLUS installed (it was in the Perl core from 5.10 to 5.18) -
    it might not even have been configured (e.g. in a corporate internet)
  - only do this when explicitly requested
- Fix RT #98203: Migrate from deprecated Module::Build::ModuleInfo to Module::Metadata
  - thanx Petr Pisar (ppisar@redhat.com) for the hint
- add long option names to scandeps.pl
- implement option --xargs for scandeps.pl
- fix wrong version numbers in Changes
- Fix RT #92860 (t/7-check-dynaloader.t doesn't handle systems with mod2fname),
  also RT #97519 (Fix for t/7-check-dynaloader.t on systems with DynaLoader::mod2fname)
  - applied patch from Brian Fraser (fraserbn@gmail.com), thanks!
  - lib/Module/ScanDeps/DataFeed.pm: apply here, too
- Fix recognition of (open() arguments) "<:encoding(klingon)",
  implies modules PerlIO and PerlIO::encoding.
- Fix RT #90869: Use of uninitialized value $module in substitution (s///)
- Fix RT #87775: typo fixes, thanks dsteinbrunner@pobox.com
- new %Preload rule for B::Hooks::EndOfScope
- new %Preload rule for Pod::Usage
- add a fake %Preload rule that warns if use of Module::Implementation
  or Module::Runtime is detected (coz' they're doing runtime loading)
- change some tests to use Test::Requires instead of homegrown stuff;
  hence add it to "test_requires"
- clean up some uses of Test::More
- Fix RT #89000: test broken by indirect base.pm disuse
  - delete base.pm from list of expected deps,
    patch by Andrew Main (zefram@fysh.org)
- new %Preload rule for Net::HTTPS (e.g. used by LWP::Protocol::https)
  - look for IO::Socket::SSL or Net::SSL
- new %Preload rule for YAML::Any
  - try to figure out what YAML::Any would have used
    (using YAML::Any->implementation)
  - as fallback, include anything below YAML
- add %Preload rule for Params::Validate to detect
  its PP and XS implementations
- Fix RT #80276 Module DateTime::Format::ISO8601 generates error
  after being packaged
  - caused by failing to pack DateTime::Format::Builder::Parser::XXX modules
    needed by DateTime::Format::Builder::Parser
  - add a corresponding %Preload rule
- update to Module::Install 1.06
2015-01-04 06:06:36 +00:00
dholland
c9303d1400 document ONLY_FOR_PLATFORM 2015-01-04 05:43:31 +00:00
dholland
fa64aa77b2 Fix the way this detects the OS, and remove ONLY_FOR_PLATFORM. 2015-01-04 05:41:01 +00:00
dholland
fe1b6bd681 Document ONLY_FOR_PLATFORM. 2015-01-04 05:09:51 +00:00
dholland
23ae9da0d0 Use BROKEN_EXCEPT_ON_PLATFORM.
(As of the last I remember looking at lcc, which was admittedly a
while ago, if it emits code for the wrong arch it's your fault, i.e. a
packaging/configuration problem.)
2015-01-04 05:00:45 +00:00
dholland
5b5383305a Use BROKEN_EXCEPT_ON_PLATFORM where explicit per-cpu-type support is
needed.
2015-01-04 04:58:47 +00:00
dholland
31123e1fd0 For "Others might work but might need significant tweaking", remove
ONLY_FOR_PLATFORM and add an explanation instead. If other platforms
are masked by default, they'll never get tried.
2015-01-04 04:56:53 +00:00
dholland
35d64fceef document ONLY_FOR_PLATFORM 2015-01-04 04:46:01 +00:00
dholland
914553e616 clarify comment 2015-01-04 02:53:44 +00:00
dholland
d53eaaa97a document NOT_FOR_PLATFORM 2015-01-04 02:52:03 +00:00
dholland
1fd583a1fa Document NOT_FOR_PLATFORM. 2015-01-04 02:50:42 +00:00
dholland
69fa755758 Use BROKEN_ON_PLATFORM for undocumented MacOS restriction. 2015-01-04 02:47:06 +00:00
dholland
2782944103 Systematize handling of -m32 for generating 32-on-64 binaries.
XXX: there should be central support for this.
2015-01-04 02:40:22 +00:00
dholland
d320b63abe document NOT_FOR_PLATFORM 2015-01-04 02:21:16 +00:00
dholland
91d0bec18f Use BROKEN_ON_PLATFORM with LP64PLATFORMS 2015-01-04 02:19:37 +00:00
dholland
0318c17f7a document NOT_FOR_PLATFORM 2015-01-04 02:16:49 +00:00
dholland
e4a3965015 Remove outdated NOT_FOR_PLATFORM. 2015-01-04 02:14:10 +00:00
ryoon
a9c9fad6c7 Bump PKGREVISION.
* When ABI=64 under OS X/Darwin, generate 64-bit shared libraries.
  Fix PR pkg/49532.
2015-01-03 19:52:22 +00:00
ryoon
7af4bac0db Import ruby215-redmine-2.6.0 as devel/redmine.
Redmine is a flexible project management web application. Written
using the Ruby on Rails framework, it is cross-platform and
cross-database.

Redmine is open source and released under the terms of the GNU
General Public License v2 (GPL).

Features

Some of the main features of Redmine are:

   Multiple projects support
   Flexible role based access control
   Flexible issue tracking system
   Gantt chart and calendar
   News, documents & files management
   Feeds & email notifications
   Per project wiki
   Per project forums
   Time tracking
   Custom fields for issues, time-entries, projects and users
   SCM integration (SVN, CVS, Git, Mercurial, Bazaar and Darcs)
   Issue creation via email
   Multiple LDAP authentication support
   User self-registration support
   Multilanguage support
   Multiple databases support

This package contains all required Ruby gems in it.
Th code in Makefile should be moved to lang/ruby/*.mk later.
2015-01-03 18:55:43 +00:00