Skip to content
Snippets Groups Projects
This project is mirrored from https://git.alchemyviewer.org/alchemy/alchemy-next.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
  1. Sep 27, 2017
    • Nat Goodspeed's avatar
      MAINT-7081: Make packages-formatter.py handle multi-line copyrights. · 4c6ecac2
      Nat Goodspeed authored
      The nghttp2 autobuild package has copyright information that embeds a newline.
      autobuild install --copyrights correctly produces that information onto two
      lines. But that means packages-formatter.py must process any lines that do not
      match its expected 'packagename: copyright' pattern as the continuation of the
      preceding package's copyright information.
      
      Since the processing for autobuild install --versions is so very similar, fold
      both into the same outer loop.
      
      Also report all duplicates for any package, instead of stopping at the first.
      4c6ecac2
  2. Sep 26, 2017
  3. Sep 23, 2017
  4. Sep 22, 2017
  5. Sep 21, 2017
  6. Sep 20, 2017
    • Nat Goodspeed's avatar
    • Nat Goodspeed's avatar
      DRTVWR-418: Fix C++ errors detected by Xcode 9. · d1ab4705
      Nat Goodspeed authored
      You can't legitimately perform an ordered comparison between a pointer and an
      int, even 0. Fix a number of 'if (ptr > 0)' to plain 'if (ptr)'.
      
      Fix LLEditWearableDictionary::WearableEntry constructor to avoid varargs
      mechanism. It used to accept three different counts, followed by three
      different lists of enums, fetched in each case as 'int' -- dubious in itself.
      The constructor body performed three different loops to populate those enums
      into three different member vectors.
      
      Instead, make the constructor accept three vectors and initialize the member
      vectors from the passed vectors. Now that C++ has inline vector
      initialization, change existing constructor calls to pass temporary vectors
      initialized with what used to be the varargs enum values.
      d1ab4705
  7. Sep 19, 2017
    • Nat Goodspeed's avatar
      DRTVWR-418: Another attempt to generate Mac debug symbols. · eae14421
      Nat Goodspeed authored
      The viewer's 00-COMPILE-LINK-RUN.txt recommends passing -gdwarf-2 to the Mac
      compiler, and so we've been doing ever since before the viewer-build-variables
      repo was engaged. Now we discover that when CMake sees -gdwarf-2, it removes
      the -g switch entirely. It also removes it when you pass plain -g. Only when
      you pass -gdwarf-with-dsym or just -gdwarf does CMake pass plain -g to the
      compiler. Change -gdwarf-2, if specified, to -gdwarf so we at least get -g.
      eae14421
  8. Sep 18, 2017
  9. Sep 16, 2017
  10. Sep 15, 2017
  11. Sep 14, 2017
  12. Sep 08, 2017
  13. Sep 01, 2017
  14. Aug 31, 2017
  15. Aug 24, 2017
  16. Aug 23, 2017
  17. Aug 22, 2017
Loading