Overview
Comment: | Move the Mono and Fossil executable file names to their own variables. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3a41cb39ee49294e21e4b0816a3bd847 |
User & Date: | mistachkin on 2017-10-19 02:49:49 |
Other Links: | manifest | tags |
Context
2017-10-19
| ||
03:25 | Pickup license changes from upstream. check-in: e4bb17eb23 user: mistachkin tags: trunk | |
02:49 | Move the Mono and Fossil executable file names to their own variables. check-in: 3a41cb39ee user: mistachkin tags: trunk | |
00:47 | Add the Garuda pacakge for 'x64' (beta 40 release). check-in: ee4b3f2fc1 user: mistachkin tags: trunk | |
Changes
Modified client/1.0/neutral/pkgd.eagle from [8476428c11] to [349ce61d09].
︙ | |||
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 | 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 | + + + + + + + + + + + + + + - + | # variable viaInstall; # DEFAULT: false if {![info exists viaInstall]} then { set viaInstall false } # # NOTE: This is the name of the executable file used to invoke the # Mono implementation, possibly without a file extension. # variable monoFileNameOnly; # DEFAULT: <unset> if {![info exists monoFileNameOnly]} then { if {[isWindows]} then { set monoFileNameOnly mono.exe } else { set monoFileNameOnly mono } } # # NOTE: The command to use when attempting to verify that Mono and its # associated runtimes are installed locally. Generally, this is # not needed on Windows machines. # variable monoInstalledCommand; # DEFAULT: mono --version if {![info exists monoInstalledCommand]} then { |
︙ | |||
824 825 826 827 828 829 830 831 832 833 834 835 | 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 | + - + - + | # # NOTE: This procedure attempts to verify that an instance of Mono and its # associated runtimes are installed locally. There are no arguments. # The return value is non-zero if Mono appears to be installed and # available for use; otherwise, the return value is zero. # proc isMonoInstalled {} { variable monoFileNameOnly variable monoInstalledCommand variable monoInstalledPattern if {[isEagle]} then { if {[catch { |
︙ |
Modified client/1.0/neutral/pkgd.eagle.asc from [693e259817] to [a4043b92bc].
1 2 3 4 | 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 |
Modified client/1.0/neutral/pkgd.eagle.harpy from [b9afa832a0] to [3cc65584b1].
︙ | |||
17 18 19 20 21 22 23 | 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> |
Modified client/1.0/neutral/pkgd.eagle.harpy.asc from [d3191e5446] to [771fec6901].
1 2 3 4 | 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 |
Modified client/1.0/neutral/pkgu.eagle from [caa03608f0] to [2e972a5de2].
︙ | |||
54 55 56 57 58 59 60 61 62 63 64 65 66 67 | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 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 129 130 131 132 | + + + + + + + + + + + + + + - + - + + - + + | # variable scriptDirectory; # DEFAULT: <scriptDir> if {![info exists scriptDirectory]} then { set scriptDirectory $pkgr_path } # # NOTE: This is the name of the executable file used to invoke Fossil, # possibly without a file extension. # variable fossilFileNameOnly; # DEFAULT: <unset> if {![info exists fossilFileNameOnly]} then { if {[isWindows]} then { set fossilFileNameOnly fossil.exe } else { set fossilFileNameOnly fossil } } # # 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 { |
︙ | |||
155 156 157 158 159 160 161 | 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | - + - + - - + + + | # 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 \ |
︙ | |||
597 598 599 600 601 602 603 604 605 606 607 608 609 610 | 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 | + | # # NOTE: This procedure attempts to query the identifier of the Fossil # checkout. There are no arguments. An empty string is returned if # the information cannot be determined. # proc getCheckoutId {} { variable fossilFileNameOnly variable fossilInfoCommand variable fossilInfoCheckoutPattern variable scriptDirectory fossilMustBeInstalled if {[isEagle]} then { |
︙ | |||
639 640 641 642 643 644 645 646 647 648 649 650 651 652 | 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 | + | # # NOTE: This procedure attempts to query the root directory of the Fossil # checkout. There are no arguments. An empty string is returned if # the information cannot be determined. # proc getCheckoutDirectory {} { variable fossilFileNameOnly variable fossilInfoCommand variable fossilInfoLocalRootPattern variable scriptDirectory fossilMustBeInstalled if {[isEagle]} then { |
︙ | |||
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 | 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 824 825 826 827 828 829 830 831 832 833 834 835 | + - + - + + | # # 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 fossilFileNameOnly variable fossilVersionCommand variable fossilVersionPattern set message { Cannot use Fossil: it does not appear to be installed. Fossil may be downloaded from "https://www.fossil-scm.org/" and then installed by copying the (single) Fossil binary to a directory that lies somewhere along the executable search path. Alternatively, it may be possible to install Fossil via the package management subsystem included with your operating system. } if {[isEagle]} then { if {[catch { eval exec -nocarriagereturns -stdout output -stderr error \ |
︙ | |||
841 842 843 844 845 846 847 848 849 850 851 852 853 854 | 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 | + | # # NOTE: This procedure attempts to verify that the checkout directory does # belong to the correct project. There are no arguments. Non-zero # is returned if the verification is successful. # proc verifyThisIsTheCorrectProject {} { variable fossilFileNameOnly variable fossilInfoCommand variable fossilInfoProjectCodePattern variable projectCode variable scriptDirectory fossilMustBeInstalled |
︙ | |||
884 885 886 887 888 889 890 891 892 893 894 895 896 897 | 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 | + | # # NOTE: This procedure attempts to verify that the checkout directory does # belong to the correct branch. There are no arguments. Non-zero # is returned if the verification is successful. # proc verifyThisIsTheCorrectBranch {} { variable fossilFileNameOnly variable fossilInfoCommand variable fossilInfoTagsPattern variable scriptDirectory fossilMustBeInstalled if {[isEagle]} then { |
︙ | |||
927 928 929 930 931 932 933 934 935 936 937 938 939 940 | 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 | + | # # NOTE: This procedure attempts to change the branch for the checkout # directory. There are no arguments. This procedure may raise # script errors. # proc changeToTheCorrectBranch {} { variable checkoutDirectory variable fossilFileNameOnly variable fossilUpdateCommand fossilMustBeInstalled verifyCheckoutDirectory if {[isEagle]} then { set directory [::PackageRepository::formatExecArgument \ |
︙ | |||
963 964 965 966 967 968 969 970 971 972 973 974 975 976 | 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 | + | # 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 variable fossilFileNameOnly fossilMustBeInstalled if {[isEagle]} then { set directory [::PackageRepository::formatExecArgument \ $targetDirectory] |
︙ | |||
998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 | 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 | + | # NOTE: This procedure attempts to stage the specified package files using # Fossil. The fileNames argument is a list of (fully?) qualified # local file names to stage. # proc stagePackageFiles { language version platform fileNames } { variable checkoutDirectory variable fossilAddCommand variable fossilFileNameOnly ::PackageDownloader::verifyLanguageAndVersion $language $version isClient if {$isClient} then { error "cannot stage files: client files must be committed directly" } |
︙ | |||
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 | 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 | + | # is the name of a scalar variable in the context of the immediate # caller that will receive the resulting Fossil check-in identifier. # proc commitPackageFiles { package patchLevel language version varName } { variable checkoutDirectory variable fossilCommitCommand variable fossilCommitPattern variable fossilFileNameOnly fossilMustBeInstalled verifyCheckoutDirectory set branch [appendArgs pkg_ $package _ $patchLevel] set comment [appendArgs \ |
︙ |
Modified client/1.0/neutral/pkgu.eagle.asc from [f4eba20f96] to [952df96d32].
1 2 3 4 | 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 |
Modified client/1.0/neutral/pkgu.eagle.harpy from [aa87fac7fb] to [4352fe259b].
︙ | |||
17 18 19 20 21 22 23 | 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> |
Modified client/1.0/neutral/pkgu.eagle.harpy.asc from [f4cfd20b87] to [0d0435906c].
1 2 3 4 | 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 |