Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check pandoc's version correctly for >=1.10. #3801

Closed
wants to merge 46 commits into from
Closed

Check pandoc's version correctly for >=1.10. #3801

wants to merge 46 commits into from

Commits on Oct 9, 2012

  1. Configuration menu
    Copy the full SHA
    bdc1b7a View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2012

  1. rustc: fix size computation of structs for the FFI

    It didn't take alignment into account.
    
    Fixes #3656.
    Blei committed Oct 10, 2012
    Configuration menu
    Copy the full SHA
    25096a2 View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2012

  1. Conditional usage of LLVM DebugFlag

    DebugFlag is conditionally exported by LLVM in llvm/Support/Debug.h
    in-between an #ifndef NDEBUG block; RustWrapper should not
    unconditionally use it. This closes #3701.
    
    Signed-off-by: Luca Bruno <[email protected]>
    lucab committed Oct 11, 2012
    Configuration menu
    Copy the full SHA
    97ecde2 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2012

  1. Use gpgv for signature verification in cargo

    Parsing gpg output for signature verification is not recommended,
    as it can break easily (and doesn't work with i18n).
    This patch makes use of gpgv, as suggested by gpg authors:
    http://lists.gnupg.org/pipermail/gnupg-users/2004-August/023141.html
    This closes #3762.
    
    Signed-off-by: Luca Bruno <[email protected]>
    lucab committed Oct 14, 2012
    Configuration menu
    Copy the full SHA
    01aaeef View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2012

  1. Configuration menu
    Copy the full SHA
    ab89b5c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f6211ab View commit details
    Browse the repository at this point in the history
  3. Allow enum discriminator exprs to refer to declared consts

    Also some work towards #3521
    
    Closes #2428
    catamorphism committed Oct 15, 2012
    Configuration menu
    Copy the full SHA
    7237268 View commit details
    Browse the repository at this point in the history
  4. Fix whitespace

    catamorphism committed Oct 15, 2012
    Configuration menu
    Copy the full SHA
    0643466 View commit details
    Browse the repository at this point in the history
  5. Check whether loans conflict with old loans or with themselves.

    Along the way, convert from dvec-of-dvec representation to track loans in scope
    to just a single flattened list.  It's more convenient.
    
    Fixes #3765. r+ pcwalton.
    nikomatsakis committed Oct 15, 2012
    Configuration menu
    Copy the full SHA
    2a1aa9f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c886629 View commit details
    Browse the repository at this point in the history
  7. Un-xfail test for #3521; it works now

    Closes #3521
    catamorphism committed Oct 15, 2012
    Configuration menu
    Copy the full SHA
    4f9e7ba View commit details
    Browse the repository at this point in the history
  8. Add test cases for #3668

    Previous commits fix the issue.
    
    Closes #3668
    catamorphism committed Oct 15, 2012
    Configuration menu
    Copy the full SHA
    c5b82a6 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    91ae541 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    7d84505 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2012

  1. Configuration menu
    Copy the full SHA
    d293286 View commit details
    Browse the repository at this point in the history
  2. Add test for Issue 2823

    catamorphism committed Oct 16, 2012
    Configuration menu
    Copy the full SHA
    bbc46d5 View commit details
    Browse the repository at this point in the history
  3. In ty::normalize_ty, don't replace self_regions with None

    Instead, replace with re_static. This was causing ty::subst to
    fail when called from trans::type_of::type_of.
    
    Already discussed with nmatsakis and it's a small change, so
    no review.
    
    Closes #3447
    catamorphism committed Oct 16, 2012
    Configuration menu
    Copy the full SHA
    b38092e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4dc67c5 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2012

  1. Configuration menu
    Copy the full SHA
    a92c3db View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1679960 View commit details
    Browse the repository at this point in the history
  3. Remove integer suffixes

    catamorphism committed Oct 17, 2012
    Configuration menu
    Copy the full SHA
    081a043 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    47c83f1 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #3716 from Blei/fix-3656

    rustc: fix size computation of structs for the FFI
    catamorphism committed Oct 17, 2012
    Configuration menu
    Copy the full SHA
    7f12cc4 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #3706 from erickt/str-with-capacity

    libcore: add a str::with_capacity to match the fn in vec
    catamorphism committed Oct 17, 2012
    Configuration menu
    Copy the full SHA
    ebce097 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #3719 from lucab/lucab/to-upstream/pull-2

    Fix #3701: rustllvm conditional build
    catamorphism committed Oct 17, 2012
    Configuration menu
    Copy the full SHA
    f5e71f5 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #3764 from lucab/lucab/to-upstream/pull-3

    Use gpgv for signature verification in cargo
    catamorphism committed Oct 17, 2012
    Configuration menu
    Copy the full SHA
    5cf0c65 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    e94e82c View commit details
    Browse the repository at this point in the history
  10. Sigil patrol: change fn@ fn& fn~ to @fn &fn ~fn

    This also involves removing references to the old long-form closure
    syntax, which pcwalton alleges is deprecated and which was never updated
    for the new forms, e.g. `@fn() {}` is illegal.
    bstrie authored and catamorphism committed Oct 17, 2012
    Configuration menu
    Copy the full SHA
    5e1d0ba View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    f7ce3dc View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    ca5506a View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    66151d0 View commit details
    Browse the repository at this point in the history
  14. word => word_space

    catamorphism committed Oct 17, 2012
    Configuration menu
    Copy the full SHA
    7236472 View commit details
    Browse the repository at this point in the history
  15. Line length

    catamorphism committed Oct 17, 2012
    Configuration menu
    Copy the full SHA
    b532a8e View commit details
    Browse the repository at this point in the history
  16. Add a module to getopts to support verbose option definition

    This is built on top of the existing functionality, but
    adds a `groups` module which defines functions allowing
    the user to specify whole short/long/description groups
    at once and provides a usage message.
    killerswan committed Oct 17, 2012
    Configuration menu
    Copy the full SHA
    32baf1c View commit details
    Browse the repository at this point in the history
  17. Fix long lines

    catamorphism committed Oct 17, 2012
    Configuration menu
    Copy the full SHA
    f2544d8 View commit details
    Browse the repository at this point in the history
  18. std::treemap - changing types to reflect constraints, adding equality…

    … check (space expensive)
    Daniel Patterson authored and catamorphism committed Oct 17, 2012
    Configuration menu
    Copy the full SHA
    fd6be2f View commit details
    Browse the repository at this point in the history
  19. Fix whitespace

    catamorphism committed Oct 17, 2012
    Configuration menu
    Copy the full SHA
    bbc90b6 View commit details
    Browse the repository at this point in the history
  20. Merge pull request #3739 from killerswan/usagemsg

    Add a module to getopts for verbose option group declaration (and use it in rustc)
    catamorphism committed Oct 17, 2012
    Configuration menu
    Copy the full SHA
    33adb7a View commit details
    Browse the repository at this point in the history
  21. Enable configure to detect 32 bit systems on 64 bit kernels

    These systems run 32 bit binaries so arch needs to be forced
    to 32 bits.
    arkaitzj authored and catamorphism committed Oct 17, 2012
    Configuration menu
    Copy the full SHA
    cf8bded View commit details
    Browse the repository at this point in the history
  22. Fix copy warnings in str

    catamorphism committed Oct 17, 2012
    Configuration menu
    Copy the full SHA
    d9f1426 View commit details
    Browse the repository at this point in the history
  23. Fix copy warnings in str

    catamorphism committed Oct 17, 2012
    Configuration menu
    Copy the full SHA
    7dde840 View commit details
    Browse the repository at this point in the history
  24. libsyntax: refactor the parser to consider foreign items as items

    parse_item_or_view_item() would drop visibility if none of the conditions
    following it would hold. This was the case when parsing extern {} blocks,
    where the function was only used to parse view items, but discarded the
    visibility of the first not-view item.
    Blei authored and catamorphism committed Oct 17, 2012
    Configuration menu
    Copy the full SHA
    e7e1bab View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    fdd7b4d View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2012

  1. Add examples to the parsing limitations section of the macro tutorial.

    (Thanks to bstrie for pointing them out!)
    paulstansifer committed Oct 18, 2012
    Configuration menu
    Copy the full SHA
    0f2fc71 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3799 from paulstansifer/master

    Add examples to the parsing limitations section of the macro tutorial.
    catamorphism committed Oct 18, 2012
    Configuration menu
    Copy the full SHA
    e28a161 View commit details
    Browse the repository at this point in the history
  3. Check pandoc's version correctly for >=1.10.

    Tony Young committed Oct 18, 2012
    Configuration menu
    Copy the full SHA
    2c1ed18 View commit details
    Browse the repository at this point in the history