[Depends] Dependency updates for 0.14.0 #9468

pull fanquake wants to merge 6 commits into bitcoin:master from fanquake:depends-update-014 changing 7 files +43 −24
  1. fanquake commented at 1:15 PM on January 4, 2017: member

    This includes: Boost 1.61.0 -> 1.63.0 ccache 3.3.1 -> 3.3.3 dbus 1.8.6 -> 1.10.14 Freetype 2.6.3 -> 2.7.1 native_ds_store c80c23706eae -> 1.1.0

    QT, libevent and ZeroMQ (#9254) will be updated in separate PRs, as they will likely require further discussion.

  2. fanquake added the label Build system on Jan 4, 2017
  3. fanquake added this to the milestone 0.14.0 on Jan 4, 2017
  4. fanquake requested review from theuni on Jan 4, 2017
  5. MarcoFalke renamed this:
    [WIP][Depends] Dependancy updates for 0.14.0
    [WIP][Depends] Dependency updates for 0.14.0
    on Jan 4, 2017
  6. in depends/config.guess:None in 28b6a7f730 outdated
    1458 | @@ -1453,4 +1459,4 @@ exit 1
    1459 |  # time-stamp-start: "timestamp='"
    1460 |  # time-stamp-format: "%:y-%02m-%02d"
    1461 |  # time-stamp-end: "'"
    1462 | -# End:
    1463 | +# End:
    


    paveljanik commented at 11:12 AM on January 8, 2017:

    Did they really deleted final newline? I do not believe so...


    fanquake commented at 11:33 AM on January 8, 2017:

    @paveljanik If you look at either file you'll see neither has a newline.


    paveljanik commented at 9:48 PM on January 10, 2017:

    Upstream, both has newlines.

  7. in depends/config.sub:None in 28b6a7f730 outdated
    1824 | @@ -1812,4 +1825,4 @@ exit
    1825 |  # time-stamp-start: "timestamp='"
    1826 |  # time-stamp-format: "%:y-%02m-%02d"
    1827 |  # time-stamp-end: "'"
    1828 | -# End:
    1829 | +# End:
    


    paveljanik commented at 11:13 AM on January 8, 2017:

    Ditto

  8. in depends/patches/native_biplist/sorted_list.patch:None in 0b2fde8e36 outdated
       0 | @@ -1,6 +1,6 @@
       1 | ---- a/biplist/__init__.py	2014-10-26 19:03:11.000000000 +0000
       2 | -+++ b/biplist/__init__.py	2016-07-19 19:30:17.663521999 +0000
       3 | -@@ -541,7 +541,7 @@
       4 | +--- a/biplist/__init__.py
       5 | ++++ b/biplist/__init__.py
    


    paveljanik commented at 11:14 AM on January 8, 2017:

    No change in the diff, so why update it? Just to apply cleanly?


    theuni commented at 9:31 PM on January 10, 2017:

    Looks like it's just offset. Is no problem.


    paveljanik commented at 9:50 PM on January 10, 2017:

    There is no problem even without this hunk 8) It is there to apply cleanly. No other purpose. And as such, it is useless IMO.

  9. paveljanik commented at 11:14 AM on January 8, 2017: contributor

    Concept ACK

  10. paveljanik commented at 11:15 AM on January 8, 2017: contributor
    /usr/bin/python3.4 ../contrib/macdeploy/custom_dsstore.py "dist/.DS_Store" "Bitcoin-Core"
    Traceback (most recent call last):
      File "../contrib/macdeploy/custom_dsstore.py", line 7, in <module>
        from ds_store import DSStore
      File "/home/travis/build/bitcoin/bitcoin/depends/x86_64-apple-darwin11/native/lib/python/dist-packages/ds_store/__init__.py", line 1, in <module>
        from .store import DSStore, DSStoreEntry
      File "/home/travis/build/bitcoin/bitcoin/depends/x86_64-apple-darwin11/native/lib/python/dist-packages/ds_store/store.py", line 9, in <module>
        import mac_alias
      File "/home/travis/build/bitcoin/bitcoin/depends/x86_64-apple-darwin11/native/lib/python/dist-packages/mac_alias/__init__.py", line 2, in <module>
        from .bookmark import *
      File "/home/travis/build/bitcoin/bitcoin/depends/x86_64-apple-darwin11/native/lib/python/dist-packages/mac_alias/bookmark.py", line 295
        print 'Unknown data type %08x' % typecode
                                     ^
    SyntaxError: Missing parentheses in call to 'print'
    make: *** [dist/.DS_Store] Error 1
    
  11. theuni commented at 9:34 PM on January 10, 2017: member

    Looks like mac_alias needs new fixups for python3. I'd say just skip that bump for now, since the author doesn't seem to be in any hurry to update.

  12. theuni commented at 9:35 PM on January 10, 2017: member

    utACK without the mac_alias bump.

  13. [depends] Latest config.guess and config.sub 8ac18303da
  14. [depends] Boost 1.63.0 4ed6faf381
  15. [depends] FreeType 2.7.1 6019d21a43
  16. [depends] ccache 3.3.3 a4c6da085b
  17. [depends] dbus 1.10.14 c6347aec6c
  18. fanquake force-pushed on Jan 11, 2017
  19. fanquake commented at 12:49 AM on January 11, 2017: member

    Dropped the mac_alias commit, and fixed the config.guess/sub newline issue.

  20. [depends] native_ds_store 1.1.0 7f1fa99a21
  21. fanquake force-pushed on Jan 11, 2017
  22. jtimon commented at 11:02 PM on January 11, 2017: contributor

    Concept ACK

  23. in depends/config.guess:None in 7f1fa99a21
    1034 | @@ -1032,6 +1035,9 @@ EOF
    1035 |      ppcle:Linux:*:*)
    1036 |  	echo powerpcle-unknown-linux-${LIBC}
    1037 |  	exit ;;
    1038 | +    riscv32:Linux:*:* | riscv64:Linux:*:*)
    


    laanwj commented at 11:02 AM on January 12, 2017:

    riscv32 yay :)

  24. laanwj commented at 11:02 AM on January 12, 2017: member
  25. MarcoFalke renamed this:
    [WIP][Depends] Dependency updates for 0.14.0
    [Depends] Dependency updates for 0.14.0
    on Jan 12, 2017
  26. laanwj merged this on Jan 12, 2017
  27. laanwj closed this on Jan 12, 2017

  28. laanwj referenced this in commit f9117f2047 on Jan 12, 2017
  29. fanquake deleted the branch on Jan 12, 2017
  30. codablock referenced this in commit 50120487fa on Jan 19, 2018
  31. codablock referenced this in commit 5ef79100b6 on Jan 20, 2018
  32. codablock referenced this in commit 5b763faba3 on Jan 21, 2018
  33. CryptoCentric referenced this in commit daa1558a45 on Feb 27, 2019
  34. CryptoCentric referenced this in commit e11d1ae195 on Feb 27, 2019
  35. MarcoFalke locked this on Sep 8, 2021


theuni

Milestone
0.14.0


github-metadata-mirror

This is a metadata mirror of the GitHub repository bitcoin/bitcoin. This site is not affiliated with GitHub. Content is generated from a GitHub metadata backup.
generated: 2026-04-26 06:15 UTC

This site is hosted by @0xB10C
More mirrored repositories can be found on mirror.b10c.me