Overview
Comment: | Make sure the 'directory' local variable is set for use with 'subst' for native Tcl (i.e. as well as Eagle). Add procedure to verify that Fossil is installed prior to attempting to use it. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4a82ecb4c71a61b64424cb7d46dec7b7 |
User & Date: | mistachkin on 2016-12-23 21:14:43 |
Other Links: | manifest | tags |
Context
2016-12-23
| ||
21:26 | Improve error reporting for the package metadata submission phase. check-in: a854269f3d user: mistachkin tags: trunk | |
21:14 | Make sure the 'directory' local variable is set for use with 'subst' for native Tcl (i.e. as well as Eagle). Add procedure to verify that Fossil is installed prior to attempting to use it. check-in: 4a82ecb4c7 user: mistachkin tags: trunk | |
04:37 | Enable package submissions in the uploader client. Modify name prefix for Tk label widgets. check-in: 9c01f58e6f user: mistachkin tags: trunk | |
Changes
Modified client/1.0/neutral/pkgr_upload.eagle from [f9abe24483] to [514835c60a].
︙ | ︙ | |||
69 70 71 72 73 74 75 76 77 78 79 | # variable scriptDirectory; # DEFAULT: <scriptDir> if {![info exists scriptDirectory]} then { set scriptDirectory $pkgr_path } # # NOTE: The command to use when attempting to check for changes prior to # staging files using Fossil. # | > > > > > > > > > > > > > > > > > > > > | | | 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | # variable scriptDirectory; # DEFAULT: <scriptDir> if {![info exists scriptDirectory]} then { set scriptDirectory $pkgr_path } # # NOTE: The command to use when attempting to verify that Fossil is # available for use. # variable fossilVersionCommand; # DEFAULT: fossil version if {![info exists fossilVersionCommand]} then { set fossilVersionCommand {fossil version} } # # NOTE: The regular expression pattern used when attempting to verify # that Fossil is installed. # variable fossilVersionPattern; # DEFAULT: {^This is fossil version 1\.\d+ } if {![info exists fossilVersionPattern]} then { set fossilVersionPattern {^This is fossil version 1\.\d+ } } # # NOTE: The command to use when attempting to check for changes prior to # staging files using Fossil. # variable fossilChangesCommand; # DEFAULT: fossil changes ... if {![info exists fossilChangesCommand]} then { set fossilChangesCommand {fossil changes --chdir {${directory}}} } # # NOTE: The regular expression pattern used when attempting to verify # that the Fossil checkout has no changes staged. Generally, this # pattern should only match an empty string. # variable fossilChangesPattern; # DEFAULT: {^$} if {![info exists fossilChangesPattern]} then { set fossilChangesPattern {^$} } # # NOTE: The command to use when attempting to check the checkout status # prior to staging files using Fossil. # variable fossilInfoCommand; # DEFAULT: fossil info ... if {![info exists fossilInfoCommand]} then { set fossilInfoCommand {fossil info --chdir {${directory}}} } # # NOTE: The regular expression pattern used when attempting to extract |
︙ | ︙ | |||
135 136 137 138 139 140 141 | set fossilInfoTagsPattern {^tags:\s+trunk(?:,|$)} } # # NOTE: The command to use when attempting to reset the checkout to the # default branch prior to staging files using Fossil. # | | | | | 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 | set fossilInfoTagsPattern {^tags:\s+trunk(?:,|$)} } # # NOTE: The command to use when attempting to reset the checkout to the # default branch prior to staging files using Fossil. # variable fossilUpdateCommand; # DEFAULT: fossil update trunk ... if {![info exists fossilUpdateCommand]} then { set fossilUpdateCommand \ {fossil update trunk --chdir {${directory}}} } # # NOTE: The command to use when attempting to stage package files using # Fossil. # variable fossilAddCommand; # DEFAULT: fossil add ... if {![info exists fossilAddCommand]} then { set fossilAddCommand \ {fossil add --chdir {${directory}} {${fileName}}} } # # NOTE: The command to use when attempting to commit package files using # Fossil. # variable fossilCommitCommand; # DEFAULT: fossil commit ... if {![info exists fossilCommitCommand]} then { set fossilCommitCommand {fossil commit -m {${comment}}\ --branch {${branch}} --user anonymous --chdir \ {${directory}} --no-prompt} } |
︙ | ︙ | |||
587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 | # the root directory of the Fossil checkout cannot be determined. # proc getCheckoutDirectory {} { variable fossilInfoCommand variable fossilInfoLocalRootPattern variable scriptDirectory if {[isEagle]} then { set directory [::PackageRepository::formatExecArgument \ $scriptDirectory] if {[catch { eval exec -nocarriagereturns -stdout output -stderr error \ [subst $fossilInfoCommand] } result] == 0} then { set result [appendArgs $output $error] } else { return false } } else { if {[catch { eval exec [subst $fossilInfoCommand] } result]} then { return false } } | > > > > | 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 | # the root directory of the Fossil checkout cannot be determined. # proc getCheckoutDirectory {} { variable fossilInfoCommand variable fossilInfoLocalRootPattern variable scriptDirectory fossilMustBeInstalled if {[isEagle]} then { set directory [::PackageRepository::formatExecArgument \ $scriptDirectory] if {[catch { eval exec -nocarriagereturns -stdout output -stderr error \ [subst $fossilInfoCommand] } result] == 0} then { set result [appendArgs $output $error] } else { return false } } else { set directory $scriptDirectory if {[catch { eval exec [subst $fossilInfoCommand] } result]} then { return false } } |
︙ | ︙ | |||
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 | if {![file isdir $checkoutDirectory]} then { error [appendArgs \ "checkout directory \"" $checkoutDirectory \ "\" is not really a directory"] } } # # NOTE: This procedure attempts to verify that the checkout directory does # not contain any (stray) changes. There are no arguments. Non-zero # is returned if the verification is successful. # proc verifyThereAreNoChanges {} { variable checkoutDirectory variable fossilChangesCommand variable fossilChangesPattern verifyCheckoutDirectory if {[isEagle]} then { set directory [::PackageRepository::formatExecArgument \ $checkoutDirectory] if {[catch { eval exec -nocarriagereturns -stdout output -stderr error \ [subst $fossilChangesCommand] } result] == 0} then { set result [appendArgs $output $error] } else { return false } } else { if {[catch { eval exec [subst $fossilChangesCommand] } result]} then { return false } } | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 | if {![file isdir $checkoutDirectory]} then { error [appendArgs \ "checkout directory \"" $checkoutDirectory \ "\" is not really a directory"] } } # # NOTE: This procedure attempts to verify that an implementation of Fossil # is installed locally. There are no arguments. Script errors are # raised if any problems are found. The return value is undefined. # proc fossilMustBeInstalled {} { variable fossilVersionCommand variable fossilVersionPattern if {[isEagle]} then { if {[catch { eval exec -nocarriagereturns -stdout output -stderr error \ $fossilVersionCommand } result] == 0} then { set result [appendArgs $output $error] } else { error "cannot use Fossil: may not be installed and/or configured" } } else { if {[catch { eval exec $fossilVersionCommand } result]} then { error "cannot use Fossil: may not be installed and/or configured" } } if {![info exists result] || \ ![regexp -- $fossilVersionPattern $result]} then { error "cannot use Fossil: unknown or unsupported version" } } # # NOTE: This procedure attempts to verify that the checkout directory does # not contain any (stray) changes. There are no arguments. Non-zero # is returned if the verification is successful. # proc verifyThereAreNoChanges {} { variable checkoutDirectory variable fossilChangesCommand variable fossilChangesPattern fossilMustBeInstalled verifyCheckoutDirectory if {[isEagle]} then { set directory [::PackageRepository::formatExecArgument \ $checkoutDirectory] if {[catch { eval exec -nocarriagereturns -stdout output -stderr error \ [subst $fossilChangesCommand] } result] == 0} then { set result [appendArgs $output $error] } else { return false } } else { set directory $checkoutDirectory if {[catch { eval exec [subst $fossilChangesCommand] } result]} then { return false } } |
︙ | ︙ | |||
690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 | # proc verifyThisIsTheCorrectProject {} { variable fossilInfoCommand variable fossilInfoProjectCodePattern variable projectCode variable scriptDirectory if {[isEagle]} then { set directory [::PackageRepository::formatExecArgument \ $scriptDirectory] if {[catch { eval exec -nocarriagereturns -stdout output -stderr error \ [subst $fossilInfoCommand] } result] == 0} then { set result [appendArgs $output $error] } else { return false } } else { if {[catch { eval exec [subst $fossilInfoCommand] } result]} then { return false } } | > > > > | 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 | # proc verifyThisIsTheCorrectProject {} { variable fossilInfoCommand variable fossilInfoProjectCodePattern variable projectCode variable scriptDirectory fossilMustBeInstalled if {[isEagle]} then { set directory [::PackageRepository::formatExecArgument \ $scriptDirectory] if {[catch { eval exec -nocarriagereturns -stdout output -stderr error \ [subst $fossilInfoCommand] } result] == 0} then { set result [appendArgs $output $error] } else { return false } } else { set directory $scriptDirectory if {[catch { eval exec [subst $fossilInfoCommand] } result]} then { return false } } |
︙ | ︙ | |||
728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 | # is returned if the verification is successful. # proc verifyThisIsTheCorrectBranch {} { variable fossilInfoCommand variable fossilInfoTagsPattern variable scriptDirectory if {[isEagle]} then { set directory [::PackageRepository::formatExecArgument \ $scriptDirectory] if {[catch { eval exec -nocarriagereturns -stdout output -stderr error \ [subst $fossilInfoCommand] } result] == 0} then { set result [appendArgs $output $error] } else { return false } } else { if {[catch { eval exec [subst $fossilInfoCommand] } result]} then { return false } } | > > > > | 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 | # is returned if the verification is successful. # proc verifyThisIsTheCorrectBranch {} { variable fossilInfoCommand variable fossilInfoTagsPattern variable scriptDirectory fossilMustBeInstalled if {[isEagle]} then { set directory [::PackageRepository::formatExecArgument \ $scriptDirectory] if {[catch { eval exec -nocarriagereturns -stdout output -stderr error \ [subst $fossilInfoCommand] } result] == 0} then { set result [appendArgs $output $error] } else { return false } } else { set directory $scriptDirectory if {[catch { eval exec [subst $fossilInfoCommand] } result]} then { return false } } |
︙ | ︙ | |||
765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 | # directory. There are no arguments. This procedure may raise # script errors. # proc changeToTheCorrectBranch {} { variable checkoutDirectory variable fossilUpdateCommand verifyCheckoutDirectory if {[isEagle]} then { set directory [::PackageRepository::formatExecArgument \ $checkoutDirectory] if {[catch { eval exec -success Success [subst $fossilUpdateCommand] } error]} then { error [appendArgs \ "could not change branch: " $error] } } else { if {[catch { eval exec [subst $fossilUpdateCommand] } error]} then { error [appendArgs \ "could not change branch: " $error] } } } # # NOTE: This procedure attempts to stage the specified package file using # Fossil. The targetDirectory argument is the fully qualified path # to the package platform directory. The fileName argument is the # relative name of the file to be staged. This procedure may raise # script errors. # proc stageOnePackageFile { targetDirectory fileName } { variable fossilAddCommand if {[isEagle]} then { set directory [::PackageRepository::formatExecArgument \ $targetDirectory] set fileName [::PackageRepository::formatExecArgument $fileName] if {[catch { eval exec -success Success [subst $fossilAddCommand] } error]} then { error [appendArgs \ "could not stage file \"" $fileName "\": " $error] } } else { if {[catch { eval exec [subst $fossilAddCommand] } error]} then { error [appendArgs \ "could not stage file \"" $fileName "\": " $error] } } | > > > > > > > | 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 | # directory. There are no arguments. This procedure may raise # script errors. # proc changeToTheCorrectBranch {} { variable checkoutDirectory variable fossilUpdateCommand fossilMustBeInstalled verifyCheckoutDirectory if {[isEagle]} then { set directory [::PackageRepository::formatExecArgument \ $checkoutDirectory] if {[catch { eval exec -success Success [subst $fossilUpdateCommand] } error]} then { error [appendArgs \ "could not change branch: " $error] } } else { set directory $checkoutDirectory if {[catch { eval exec [subst $fossilUpdateCommand] } error]} then { error [appendArgs \ "could not change branch: " $error] } } } # # NOTE: This procedure attempts to stage the specified package file using # Fossil. The targetDirectory argument is the fully qualified path # to the package platform directory. The fileName argument is the # relative name of the file to be staged. This procedure may raise # script errors. # proc stageOnePackageFile { targetDirectory fileName } { variable fossilAddCommand fossilMustBeInstalled if {[isEagle]} then { set directory [::PackageRepository::formatExecArgument \ $targetDirectory] set fileName [::PackageRepository::formatExecArgument $fileName] if {[catch { eval exec -success Success [subst $fossilAddCommand] } error]} then { error [appendArgs \ "could not stage file \"" $fileName "\": " $error] } } else { set directory $targetDirectory if {[catch { eval exec [subst $fossilAddCommand] } error]} then { error [appendArgs \ "could not stage file \"" $fileName "\": " $error] } } |
︙ | ︙ | |||
884 885 886 887 888 889 890 891 892 893 894 895 896 897 | # # <public> proc commitPackageFiles { package patchLevel language version varName } { variable checkoutDirectory variable fossilCommitCommand variable fossilCommitPattern verifyCheckoutDirectory set branch [appendArgs pkg_ $package _ $patchLevel] set comment [appendArgs \ "Add package " $package " v" $patchLevel " for " $language \ " v" $version .] | > | 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 | # # <public> proc commitPackageFiles { package patchLevel language version varName } { variable checkoutDirectory variable fossilCommitCommand variable fossilCommitPattern fossilMustBeInstalled verifyCheckoutDirectory set branch [appendArgs pkg_ $package _ $patchLevel] set comment [appendArgs \ "Add package " $package " v" $patchLevel " for " $language \ " v" $version .] |
︙ | ︙ | |||
908 909 910 911 912 913 914 915 916 917 918 919 920 921 | [subst $fossilCommitCommand] } result] == 0} then { set result [appendArgs $output $error] } else { return false } } else { if {[catch { eval exec [subst $fossilCommitCommand] } result]} then { return false } } | > > | 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 | [subst $fossilCommitCommand] } result] == 0} then { set result [appendArgs $output $error] } else { return false } } else { set directory $checkoutDirectory if {[catch { eval exec [subst $fossilCommitCommand] } result]} then { return false } } |
︙ | ︙ |
Modified client/1.0/neutral/pkgr_upload.eagle.asc from [f74c472591] to [7dddffeca3].
1 2 3 4 | -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Eagle Package Repository | | | | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Eagle Package Repository iQIcBAABCAAGBQJYXZOHAAoJEFAslq9JXcLZjGQP/3TTItUS4vrTJqvd+2Z8DOcN zfppsq5q5yefFYCl7+ZdeP6/qefC0Im6v22Dl5BaRO68No4UWO6G0jzwJtU1INcM NtTRzPrutk5Qxjpqp6ZDoTAHohQw/dfwVlt4gRkfB69Wf1wCnXSn1WxMeIo8uKgV fNTfMZWNMbQWsagI65ADIYeAxkWXEqmW1/vxZhOU4mIkSdMvFZvkxi1dTjePbw/A ORRne/Cw9ozixKoFb5RiNIorxZjaLhMLV6R2Nf5K0OsaHUB4+F4xRcMYsHuOx4WY YcTcbeRf9vRfLoSk+aPcfxmDE8z8rRmRekORi1rq4YA/iQF18K0sTnqVms0YwzfV 7D/g9ORD4dv72K7xREJTPP/YtoBQ7G/xzzmqXK2n9NCJH+1KimszAW0/1ALyGfXy 8D/tFmtvTvpSFXLHg5MnuggKtzXrTqtBgc7gTRT5T0y0Js4Y04Mr4sslI+PQ8nm4 jFnXyzI6b/YihjR8AqKqNQ9RRV1rdPpVbutsN7kjROpaQhJz8B8IH7baja33DyNx uGNZapToC+ekP8oZIEmpusiPdRsTSb+JrZNS98VMtD38oqlf/SPWy7r47fslQN8H ixGvzGz37FIaEQN1C/xZx+uHtrDZ8GL6zJWdz+yifFndvYC7cXG5wwTV4/tdi+X4 MvLyeUQIhocXY1A6EaVg =FWCF -----END PGP SIGNATURE----- |
Modified client/1.0/neutral/pkgr_upload.eagle.harpy from [5c12ab3ad9] to [346288c4f1].
︙ | ︙ | |||
17 18 19 20 21 22 23 | THE ASSOCIATED SOFTWARE MAY NOT WORK PROPERLY IF THIS FILE IS ALTERED. --> <Certificate xmlns="https://eagle.to/2011/harpy" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Protocol>None</Protocol> <Vendor>Mistachkin Systems</Vendor> | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | THE ASSOCIATED SOFTWARE MAY NOT WORK PROPERLY IF THIS FILE IS ALTERED. --> <Certificate xmlns="https://eagle.to/2011/harpy" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Protocol>None</Protocol> <Vendor>Mistachkin Systems</Vendor> <Id>34655bde-90f4-4c1a-82bb-1d55d7719711</Id> <HashAlgorithm>SHA512</HashAlgorithm> <EntityType>Script</EntityType> <TimeStamp>2016-12-23T21:12:41.9853515Z</TimeStamp> <Duration>-1.00:00:00</Duration> <Key>0x9559f6017247e3e2</Key> <Signature> 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 </Signature> </Certificate> |
Modified client/1.0/neutral/pkgr_upload.eagle.harpy.asc from [563340f673] to [7a2d5c8aa7].
1 2 3 4 | -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Eagle Package Repository | | | | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Eagle Package Repository iQIcBAABCAAGBQJYXZOIAAoJEFAslq9JXcLZ3JgQAL81Twb5crIBRvmQ4b08llY0 NjjW62s5/v8ZbwoJeCVi0UIieoKGw6QL5+QrFsQISU2k/+S6qI0uCzQuQQz3N7+A KuvifSzHaa2mtwxkqPG++bngmUqFD1uCFNOWPYkKAv04FwQY8RriQeCWdnlRWlUE MX9tu1FdbD5sLP1M2I1YvOYrQf0EnZs/Pt3KmcP8eFiCtCTKnq7CgmEKF6+gXg10 /JIIkoq4yfHQKc2PXx/hAvL6tSUzRwMay3NpBlZHUVzolaoiDn2LOqvHjkS/QmIK /47rXfROCiT1LxybTr4C7EgQ9/Xi6tUA54Lg6i9Bbxd+zt5W7IZsLS+Ngv4fqoXo lY9P5l/CLahldzC1+vAZdYQamssRVNK7VsiCqvKjrZCQNaFboP9GYBN+Ea8/bSlh ixV3HyB0PXgcksbO+Y/faR7MpQseyfZrYth+BZVuN1ax2YuJN4vJiwZtwXXn9L5J 6ZLrVY4O5SERNv+tRGLPnbE9GzwJqpw7v9tC+eBgBU9zOoW8SWdiGM8cRrNlLFnn G9haQrAWkOFSyPi+jM67Z+M1ICiWDUtGI6w/fY9MF/OdztNotSMcqGTjzcqKKNwd vJUCn7W7u3W7CtOLGIzv+/wKFeR81EZs6rv0MWH2PnsXeKTUDDhZOlkaskgmxwNe UqQsn4hAhQ3sFls7QVFd =36lJ -----END PGP SIGNATURE----- |