DELTA 412347 73941 22 SVNi#o"X:baaAqD=_l cXx^}_k0şO!O|ui`@5MJqϾR=Brr$)kHy/cJ02}be$QzQU ySU~jYpr .u E-j!N(^4k 愥VK =_o5sDI@=!S6E [ՃUD&EO`mZM<1KpЫxp MqȌmˮ͡P\luVSCv$bۀ]GnNWήθxN]Aރǖb8Ppec#=`~tV~^f8ENDREP DELTA 264001 842 335 SVN>eOMM03-03-04 20:14:28 UTC +++ Makefile.inc @@ -26,8 +26,8 @@ DEBUG=-g $(PDEBUG) OPT= -REXX_INCLUDE=$(HOME)/regina -CFLAGS=$(DEBUG) $(OPT) $(PCFLAGS) $(PCDEFS) -I $(REXX_INCLUDE) +REXX_INCLUDE=/usr/local/include +CFLAGS+=$(DEBUG) $(OPT) $(PCFLAGS) $(PCDEFS) -I $(REXX_INCLUDE) LDFLAGS=$(PLDFLAGS) LIBS=$(PLIBS) LIBFILE=librexxutil ENDREP DELTA SVNb,bbx^T]O0}^š$Jc@O|iP\pvR`8R{)TbfY1ͺi7C^հ3utts/^(|'tBW,&RtB3zMe K0N&U4ht 3zjZ5Q r&cwK8k:p~}zW+~)c|[t"ΏہW%4]U̹@gwMƂ)?`7@qTz>zyhU4s+*'PZc]<s'06ry<<飠\ugs~/|{ƔnvtG+~,sY_ge$buMݚY_Bä7 Tɜ v f9?6HBCQCWEޯ&^Yd:7gȋG?c~.Hf+S4 .7ËU9T@[Ҙ #A`oa ,|8Nhm8kp ߡg΄XqCsԣ BUOENDREP DELTA SVNz&zzx^Umk0lka[qdQlJ;]-'$ò伶6=w{ә2S_q6`H  ΢Y8y[h7OS[VJh"I1޴|m'u6=,DLh̓#c>W>ᡪ%JB/Ț2q0N\~iJf%Ma#_Zr\UoھE(۞cܟOilxrsϓ돠nWgazjG.xF @)(b_ẒMiҊ5u]qbI[Vc.L@UK;2!.Sl8;y+T9r .Y뺨 vvwW8`-OfhԴִ9HK(8@{0XNGA _xwOLB&ti6Epbۘa܊X$zm ~ FjO:gX+Qs9~  h/q6:ZP#Cn ?kX ZjVOkC$!R"S_KUʟZHM /ʶ8S+[;$[àNT4$Z4|6lzb`5d8w2 Ϳg@_."h Gw=r&V)48u,%(V֍$.aJ0NF=*^@̫V~Q1QYl#vhNQj ćnE~.J+VENDREP DELTA SVN3533--- regini.c.orig 2004-07-19 00:09:52 UTC +++ regini.c @@ -1002,7 +1002,7 @@ rxfunc(sysgeterrortext) result->strlength = 0; } #else - if (rcs = strerror(rc)) { + if ((rcs = strerror(rc))) { result->strlength = strlen(rcs); memcpy(result->strptr, rcs, result->strlength); } ENDREP DELTA SVN --- regstem.c.orig 2004-06-15 19:15:06 UTC +++ regstem.c @@ -53,7 +53,7 @@ static int rxstrcasecmp(const PRXSTRING { register int len = min(l->strlength, r->strlength), d = l->strlength - r->strlength, - c = casecmp(l->strptr, r->strptr, len); + c = casecmp((unsigned char *) l->strptr, (unsigned char *) r->strptr, len); return (len && c) ? c : d; } ENDREP DELTA SVNq qqx^ՒAO0Wc$mZ@8s !+$۰_'ʅ\όͳ4MT;%K=a9,I4Ƙd'Yqr8yZupvh:ICr ͣzYhJ3lC0bA0Z%h}|g4P@=Z4Ĕ?}3 |#T5dWF$-f3_^_]? wj`a)#kEsF Z@p}+y^ /;iv7;/:/ޟ k2F;)|ŗwۑRVDG!ZQ{LLOCǢu<|=zA]^&VE&۞x|ߣ~"@fWElpENDREP DELTA SVN_a__--- regutil.c.orig 2004-01-16 14:57:12 UTC +++ regutil.c @@ -52,7 +52,7 @@ static void gettimeofday(struct timeval struct { char * name; - APIRET (APIENTRY*funcptr)(PUCHAR fname, ULONG argc, PRXSTRING argv, PSZ pSomething, PRXSTRING result); + APIRET (APIENTRY*funcptr)(PCSZ fname, ULONG argc, PRXSTRING argv, PCSZ pSomething, PRXSTRING result); } funclist[] = { {"SYSADDREXXMACRO", sysaddrexxmacro}, {"SYSCLEARREXXMACROSPACE", sysclearrexxmacrospace}, ENDREP DELTA SVNprpp--- rxproto.h.orig 2003-05-23 11:05:50 UTC +++ rxproto.h @@ -53,7 +53,7 @@ * to something else, and a pointer to the result string. * It returns 0 for success, and some other value for failure */ -#define rxfunc(x) APIRET APIENTRY x(PUCHAR fname, ULONG argc, PRXSTRING argv, PSZ pSomething, PRXSTRING result) +#define rxfunc(x) APIRET APIENTRY x(PCSZ fname, ULONG argc, PRXSTRING argv, PCSZ pSomething, PRXSTRING result) /* return codes. 22 is rc for invalid call */ #define NOMEMORY 5 ENDREP DELTA SVN/1//--- rxsupport.c.orig 2003-09-10 21:09:44 UTC +++ rxsupport.c @@ -612,7 +612,7 @@ int cha_adddummy(chararray *ca, const ch } ca->array[ca->count].strlength = len; - ca->array[ca->count++].strptr = (unsigned char *)str; + ca->array[ca->count++].strptr = (char *)str; return 0; } ENDREP DELTA 264001 1438 426 SVN`)H 073-F.Dd May 8, 2016As it stands, .Nm will not work with another REXX interpreter. .Pp Details of usage are in the full manual, which is normally found at: .br .Pa %%DOCSDIR%%/regutil.pdf (if installed).ENDREP id: 5-264001.0.r414814/5070 type: file pred: 5-264001.0.r412347/435092 count: 10 text: 414814 0 414 1180 be92931e17b0db66206dd8d01a4e2dd5 461d00bf5f7d65220f0b8e754a773ed809aef7fc 414813-8w2m/_4 props: 300914 71 103 0 bb58aa814bbdf5f7c1ab04a05656f5a5 cpath: /head/lang/rexx-regutil/Makefile copyroot: 0 / id: b-264001.0.r414814/5375 type: file pred: b-264001.0.r340725/6665386 count: 3 text: 414814 443 353 357 afdb17b87c0b52c41c457a54baed03ea 0bc8853fc95b12b8b4091722b0fb3d607fe83cc7 414813-8w2m/_6 props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/lang/rexx-regutil/files/patch-Makefile.inc copyroot: 0 / id: 7-414814.0.r414814/5698 type: file count: 0 text: 414814 824 571 1250 48317ed985bb4c06f3f21c2fd2c430ed 0bc5c8156ae36be17ffa56eeb3378070ae2d2813 414813-8w2m/_8 props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/lang/rexx-regutil/files/patch-inifile.c copyroot: 0 / id: 9-414814.0.r414814/5986 type: file count: 0 text: 414814 1408 821 2042 e7b13fbf2bcfc6857eb8fa80ae875fa2 faae343a73f5f2433f3b823b476edbcdc2b2f202 414813-8w2m/_a props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/lang/rexx-regutil/files/patch-regfilesys.c copyroot: 0 / id: b-414814.0.r414814/6278 type: file count: 0 text: 414814 2242 324 307 2138f20ea99f40294758c041709640f9 eb13e09a15e5c19824040bfad99fc91a52655cb3 414813-8w2m/_c props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/lang/rexx-regutil/files/patch-regini.c copyroot: 0 / id: d-414814.0.r414814/6565 type: file count: 0 text: 414814 2579 431 414 3096af723937ddb165db99273b5684fb cae47a563d536a7c0c1a904aeb692975b7968d3b 414813-8w2m/_e props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/lang/rexx-regutil/files/patch-regstem.c copyroot: 0 / id: f-414814.0.r414814/6853 type: file count: 0 text: 414814 3023 411 1521 14c072d5e7a40e85115fe609353994da c8b003fc7a91790bf1270250dc676e1228284222 414813-8w2m/_g props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/lang/rexx-regutil/files/patch-regunicode.c copyroot: 0 / id: h-414814.0.r414814/7145 type: file count: 0 text: 414814 3447 496 479 221d2288eab9fe103ffebc5c67bbfe67 9bd8ec9dab2ee0a0eb7494215c697bcae205418e 414813-8w2m/_i props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/lang/rexx-regutil/files/patch-regutil.c copyroot: 0 / id: j-414814.0.r414814/7433 type: file count: 0 text: 414814 3956 513 496 b36845aab1ed2c3dfe5aec9f41dec534 a71fa25bc38243e9abecf1b841a334b4d3bb8ddc 414813-8w2m/_k props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/lang/rexx-regutil/files/patch-rxproto.h copyroot: 0 / id: l-414814.0.r414814/7721 type: file count: 0 text: 414814 4482 320 303 381bd9943525819e8c80f698bb0da55c 05715351be6026a748b12aa693cbee78961a8ec0 414813-8w2m/_m props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/lang/rexx-regutil/files/patch-rxsupport.c copyroot: 0 / id: g-264001.0.r414814/8011 type: file pred: g-264001.0.r340872/1463786 count: 3 text: 414814 4815 226 681 32fa57d101f0ad654f08a87443efe185 785ec50a8db40e7fd8f30c70cbdf8d11ed6d200a 414813-8w2m/_n props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/lang/rexx-regutil/files/regutil.1.in copyroot: 0 / PLAIN K 18 patch-Makefile.inc V 28 file b-264001.0.r414814/5375 K 15 patch-inifile.c V 28 file 7-414814.0.r414814/5698 K 18 patch-regfilesys.c V 28 file 9-414814.0.r414814/5986 K 14 patch-regini.c V 28 file b-414814.0.r414814/6278 K 15 patch-regstem.c V 28 file d-414814.0.r414814/6565 K 18 patch-regunicode.c V 28 file f-414814.0.r414814/6853 K 15 patch-regutil.c V 28 file h-414814.0.r414814/7145 K 15 patch-rxproto.h V 28 file j-414814.0.r414814/7433 K 17 patch-rxsupport.c V 28 file l-414814.0.r414814/7721 K 12 regutil.1.in V 28 file g-264001.0.r414814/8011 END ENDREP id: a-264001.0.r414814/8903 type: dir pred: a-264001.0.r340872/1464298 count: 5 text: 414814 8329 561 0 0b1a811d8be6af8bff256f63c9046e7e cpath: /head/lang/rexx-regutil/files copyroot: 0 / PLAIN K 8 Makefile V 28 file 5-264001.0.r414814/5070 K 8 distinfo V 31 file 8-264001.0.r340717/7124342 K 5 files V 27 dir a-264001.0.r414814/8903 K 9 pkg-descr V 31 file i-264001.0.r340718/7663296 END ENDREP id: 4-264001.0.r414814/9300 type: dir pred: 4-264001.0.r412347/435662 count: 17 text: 414814 9092 195 0 96cd283988caf6135c2c24509dbe74f1 cpath: /head/lang/rexx-regutil copyroot: 0 / PLAIN K 5 Gofer V 25 dir 2-909.0.r371587/20364 K 8 Makefile V 23 file 3-15.0.r413883/767 K 4 abcl V 26 dir 4-168699.0.r397466/998 K 10 adacontrol V 29 dir 4-323392.0.r414332/449469 K 5 afnix V 26 dir 4-39147.0.r414460/1697 K 12 alchemist.el V 27 dir 4-390618.0.r413012/1662 K 8 algol68g V 26 dir 4-260883.0.r414070/966 K 5 alisp V 28 dir 4-89650.0.r401096/652387 K 11 angelscript V 29 dir 4-324616.0.r413746/823002 K 5 arena V 29 dir 4-165505.0.r412347/326755 K 4 asis V 29 dir 4-323389.0.r414332/450210 K 5 asn1c V 28 dir 4-119385.0.r371587/23201 K 6 atlast V 24 dir 2-8677.0.r345249/670 K 3 ats V 29 dir 4-283527.0.r412347/328579 K 4 awka V 29 dir 4-43359.0.r405891/1048276 K 7 bas2tap V 28 dir 4-195429.0.r380306/91158 K 8 basic256 V 29 dir 4-283355.0.r412347/329315 K 7 beignet V 29 dir 1f-397198.0.r412405/13335 K 4 bf2c V 28 dir 4-89524.0.r410613/576337 K 6 bigloo V 28 dir 4-73600.0.r414014/609297 K 3 bsh V 26 dir g-53793.0.r409296/1042 K 7 bwbasic V 24 dir 2-2047.0.r408376/568 K 1 c V 29 dir 4-383790.0.r412347/331430 K 3 ccl V 27 dir 4-247065.0.r400996/4034 K 5 cdent V 29 dir 4-253196.0.r412347/332074 K 6 ceylon V 27 dir 4-361333.0.r414697/1344 K 8 cfortran V 29 dir 4-223812.0.r374492/565031 K 12 chibi-scheme V 27 dir 4-383717.0.r405692/3895 K 7 chicken V 26 dir 4-78219.0.r398209/1199 K 4 cint V 29 dir 4-198050.0.r413746/823740 K 3 cjs V 30 dir v8-372768.0.r412347/333506 K 11 clang-devel V 29 dir x-243274.0.r412347/334111 K 7 clang33 V 36 dir i-243274.1-320628.r412347/334931 K 7 clang34 V 36 dir i-243274.1-334531.r412347/335783 K 7 clang35 V 36 dir i-243274.1-363768.r412347/336636 K 7 clang36 V 36 dir i-243274.1-377636.r412347/337484 K 7 clang37 V 36 dir x-243274.1-396049.r412347/338161 K 7 clang38 V 36 dir x-243274.1-408640.r412347/338848 K 7 clojure V 27 dir 4-201700.0.r414594/1088 K 15 clojure-mode.el V 28 dir 4-224790.0.r385637/55142 K 6 clover V 29 dir 2p-397198.0.r412510/58283 K 5 cmucl V 27 dir 2-7340.0.r412347/340916 K 11 cmucl-extra V 28 dir 4-73371.0.r412347/341610 K 5 cocor V 25 dir 4-73388.0.r387771/987 K 7 cparser V 29 dir 4-223322.0.r412347/342306 K 14 csharp-mode.el V 29 dir 4-165762.0.r387529/283270 K 6 cython V 27 dir 4-222650.0.r412088/1159 K 14 diveintopython V 27 dir 4-41970.0.r371587/35409 K 3 dlv V 26 dir 4-192545.0.r368524/793 K 4 dmd1 V 34 dir 4-265368.0-351280.r396690/1186 K 4 dmd2 V 29 dir g-265368.0.r413746/824589 K 7 duktape V 26 dir 4-373582.0.r413635/995 K 3 ecl V 29 dir 4-114633.0.r413746/825279 K 4 elan V 29 dir 4-152225.0.r412347/343737 K 6 elixir V 27 dir 4-362657.0.r414407/1699 K 14 elixir-mode.el V 27 dir 4-390617.0.r413634/1039 K 3 elk V 27 dir 2-1112.0.r412347/345150 K 16 emacs-lisp-intro V 29 dir 2-10709.0.r386312/1437121 K 6 erlang V 26 dir 2-15596.0.r414767/3012 K 11 erlang-java V 27 dir 4-379504.0.r414599/3255 K 11 erlang-riak V 27 dir 4-397706.0.r408299/2355 K 16 erlang-runtime15 V 35 dir 2-15596.0-317410.r412347/347347 K 16 erlang-runtime16 V 33 dir 2-15596.0-317415.r414767/4610 K 16 erlang-runtime17 V 33 dir 2-15596.0-350789.r414767/6254 K 16 erlang-runtime18 V 33 dir 2-15596.0-390481.r414767/7899 K 9 erlang-wx V 27 dir e-379504.0.r414599/5405 K 8 execline V 28 dir 4-92085.0.r412347/351231 K 6 expect V 25 dir 2-383.0.r413727/30510 K 3 f2c V 28 dir 2-18115.0.r412347/351966 K 4 fasm V 26 dir 4-185688.0.r386179/950 K 6 ferite V 28 dir 4-48755.0.r412347/352695 K 4 ficl V 26 dir 4-95409.0.r410201/5626 K 3 fpc V 26 dir 4-51265.0.r404085/4028 K 8 fpc-base V 29 dir 4-106838.0.r412347/353293 K 8 fpc-docs V 29 dir 4-103327.0.r403082/588597 K 7 fpc-lua V 29 dir 4-259374.0.r412347/353939 K 8 fpc-rexx V 29 dir 4-259382.0.r412347/354588 K 15 fpc-rtl-console V 30 dir 7u-403082.0.r403082/592541 K 13 fpc-rtl-extra V 30 dir 80-403082.0.r403082/593383 K 14 fpc-rtl-objpas V 30 dir 86-403082.0.r403082/594226 K 15 fpc-rtl-unicode V 30 dir 8c-403082.0.r403082/595072 K 7 fpc-tcl V 29 dir 4-165955.0.r403082/595960 K 9 fpc-units V 29 dir 4-165963.0.r404086/288079 K 9 fpc-utils V 29 dir 2-168608.0.r403082/597474 K 6 fsharp V 29 dir 4-233574.0.r412347/355283 K 8 gambit-c V 27 dir e-182819.0.r412396/1433 K 6 gauche V 28 dir 4-65934.0.r412347/355972 K 4 gawk V 28 dir 2-14148.0.r412347/356696 K 3 gcc V 25 dir n-9316.0.r414734/1803 K 7 gcc-aux V 29 dir 4-301801.0.r412347/358515 K 9 gcc-ecj45 V 26 dir 4-310694.0.r384982/521 K 5 gcc46 V 26 dir 9j-9316.0.r414734/2522 K 5 gcc47 V 26 dir a3-9316.0.r414734/3240 K 5 gcc48 V 26 dir an-9316.0.r414734/3956 K 5 gcc49 V 33 dir an-9316.0-315178.r414368/1169 K 4 gcc5 V 33 dir an-9316.0-365695.r413188/6777 K 8 gcc5-aux V 29 dir 4-381294.0.r412347/363489 K 10 gcc5-devel V 33 dir an-9316.0-384947.r414647/1563 K 8 gcc6-aux V 34 dir 4-381294.0-403127.r414141/1323 K 10 gcc6-devel V 33 dir an-9316.0-384331.r414723/1167 K 10 gcc7-devel V 33 dir an-9316.0-413883.r414542/1164 K 3 gcl V 26 dir 2-956.0.r412347/367113 K 6 gforth V 28 dir 4-34082.0.r412347/367842 K 3 ghc V 28 dir 2-23008.0.r413184/433218 K 3 gjs V 30 dir ff-244923.0.r412347/369750 K 9 gnat_util V 29 dir 4-323388.0.r414332/450955 K 15 gnatdroid-armv7 V 29 dir 4-281378.0.r412347/370448 K 18 gnatdroid-binutils V 29 dir 4-281288.0.r412347/371205 K 22 gnatdroid-binutils-x86 V 27 dir f-402635.0.r410118/2441 K 17 gnatdroid-sysroot V 27 dir 4-281235.0.r411236/5143 K 21 gnatdroid-sysroot-x86 V 27 dir n-402635.0.r411236/6476 K 13 gnatdroid-x86 V 28 dir 11-402635.0.r411236/7090 K 9 gnu-cobol V 35 dir 4-64104.0-353174.r412347/371969 K 12 gnustep-base V 28 dir r-18728.0.r412347/372752 K 2 go V 29 dir 2-248419.0.r413776/376593 K 4 go14 V 33 dir 2-248419.0-394910.r402537/695 K 7 gprolog V 25 dir 4-44911.0.r394761/562 K 6 groovy V 27 dir 4-129464.0.r413092/1169 K 7 gscheme V 30 dir 4-177497.0.r405891/1049667 K 5 guile V 27 dir 2-2131.0.r412347/374833 K 6 guile2 V 29 dir 4-355255.0.r413746/826864 K 7 harbour V 27 dir 4-98525.0.r414019/82051 K 15 haskell-mode.el V 34 dir 4-103137.0-411004.r413795/1175 K 3 hla V 26 dir 4-214196.0.r412567/783 K 4 hope V 28 dir 4-48875.0.r412347/376980 K 12 hs-brainfuck V 29 dir 4-247098.0.r394918/983351 K 11 hs-unlambda V 29 dir 4-247100.0.r394918/984326 K 3 huc V 27 dir 4-96863.0.r371587/58875 K 4 hugs V 27 dir 2-8779.0.r412347/377706 K 3 icc V 28 dir 4-56705.0.r412347/378433 K 3 ici V 27 dir 2-15439.0.r371587/61007 K 4 icon V 25 dir 2-1298.0.r382329/1799 K 9 intel2gas V 28 dir 2-19416.0.r401096/653124 K 8 intercal V 28 dir 2-10547.0.r399346/590737 K 2 io V 29 dir 4-147215.0.r414014/610088 K 4 itcl V 25 dir 2-188.0.r413727/31219 K 5 itcl4 V 28 dir 4-366511.0.r413727/32811 K 21 jakarta-commons-jelly V 29 dir 4-140673.0.r386097/711287 K 6 jimtcl V 26 dir 4-341712.0.r403652/670 K 5 jruby V 28 dir 4-48007.0.r412347/379908 K 11 js_of_ocaml V 29 dir 4-349330.0.r412347/380593 K 6 jython V 28 dir 4-40996.0.r412347/381287 K 4 kawa V 28 dir 4-57655.0.r412347/381920 K 7 kturtle V 30 dir c2-283641.0.r381052/669103 K 10 lafontaine V 27 dir 4-65712.0.r371587/68144 K 3 lci V 29 dir 4-377881.0.r387986/496950 K 3 lfe V 29 dir 4-395524.0.r403254/411232 K 5 libhx V 26 dir 4-236402.0.r384277/927 K 6 libjit V 29 dir 4-107945.0.r413746/828258 K 8 libobjc2 V 29 dir 4-283935.0.r404743/549070 K 6 librep V 28 dir 2-23023.0.r412347/382602 K 22 libstdc++_stldoc_4.2.2 V 30 dir 4-205799.0.r386312/1444778 K 14 linux-c6-tcl85 V 30 dir dw-368845.0.r413168/578040 K 16 linux-f10-libg2c V 29 dir 4-167011.0.r397461/162196 K 15 linux-f10-tcl85 V 26 dir 4-231702.0.r388548/546 K 7 linux-j V 28 dir 4-51787.0.r400848/650012 K 7 lua-ada V 29 dir 4-389905.0.r414332/451692 K 11 lua-mode.el V 29 dir 4-103683.0.r401096/653831 K 5 lua51 V 33 dir 4-309973.0-355360.r409263/752 K 5 lua52 V 27 dir 4-309973.0.r409263/1504 K 5 lua53 V 27 dir 7-377213.0.r409263/2221 K 6 luajit V 26 dir 7-289477.0.r413312/595 K 8 malbolge V 28 dir 4-301017.0.r395395/94118 K 5 maude V 29 dir 4-158902.0.r412347/384083 K 4 mawk V 26 dir 2-16169.0.r385905/1165 K 3 mdk V 28 dir 4-40716.0.r412347/384767 K 11 micropython V 29 dir 4-356895.0.r412347/385407 K 10 mit-scheme V 27 dir 2-1202.0.r412347/386142 K 5 mixal V 26 dir 2-5088.0.r371587/77564 K 5 mlton V 29 dir 2-150108.0.r412347/386879 K 4 mmix V 28 dir 4-34829.0.r412347/387606 K 7 modula3 V 29 dir 4-338413.0.r412347/388335 K 4 mono V 26 dir 4-63383.0.r413017/1446 K 10 mono-basic V 29 dir 4-236512.0.r387082/370176 K 9 moscow_ml V 27 dir 2-3442.0.r413746/828993 K 4 mosh V 29 dir 4-218727.0.r412347/390579 K 5 mtasc V 29 dir 4-219973.0.r412347/391321 K 6 munger V 29 dir 4-123447.0.r414014/610779 K 4 nawk V 26 dir 2-11712.0.r372409/2446 K 3 nbc V 29 dir 4-213151.0.r412347/392659 K 4 nbfc V 29 dir 4-213890.0.r374492/567137 K 6 nesasm V 28 dir 4-198903.0.r371587/82680 K 7 newlisp V 29 dir 4-172946.0.r412347/393391 K 13 newlisp-devel V 36 dir 4-172946.0-313772.r413746/829817 K 5 nhc98 V 26 dir 1l-51940.0.r377491/618 K 6 nickle V 27 dir 4-41507.0.r371587/85689 K 3 nim V 36 dir 4-333788.0-383175.r413746/830662 K 3 nml V 27 dir 4-46419.0.r371587/87148 K 3 nqc V 25 dir 2-20726.0.r402480/691 K 4 nwcc V 28 dir 4-201502.0.r371587/87830 K 2 nx V 28 dir 4-333508.0.r413727/33533 K 5 ocaml V 27 dir 2-5189.0.r413746/831413 K 14 ocaml-autoconf V 26 dir 4-251436.0.r361856/760 K 11 ocaml-nox11 V 29 dir 4-102263.0.r413746/831958 K 3 ofc V 29 dir 4-166219.0.r412347/395002 K 5 ohugs V 28 dir 4-76948.0.r412347/395734 K 4 onyx V 28 dir 2-45214.0.r412347/396463 K 4 oo2c V 28 dir 4-30006.0.r412347/397188 K 9 opendylan V 26 dir 4-203941.0.r396490/703 K 3 p2c V 24 dir 2-164.0.r410087/6572 K 18 p5-Data-JavaScript V 27 dir 4-48613.0.r380306/94140 K 8 p5-Error V 26 dir 2-29774.0.r388097/1470 K 9 p5-Expect V 28 dir 2-26066.0.r412347/397878 K 15 p5-ExtUtils-F77 V 26 dir 2-23645.0.r405950/1059 K 16 p5-Interpolation V 29 dir 4-150644.0.r412347/398594 K 7 p5-JSAN V 29 dir 4-180684.0.r412347/399310 K 26 p5-JavaScript-SpiderMonkey V 29 dir 4-139352.0.r412347/400081 K 20 p5-JavaScript-Squish V 29 dir 4-144931.0.r396892/849620 K 26 p5-JavaScript-Value-Escape V 27 dir 4-274317.0.r389582/1166 K 17 p5-List-MoreUtils V 29 dir 4-132339.0.r412347/400806 K 8 p5-Marpa V 29 dir 4-285695.0.r412347/401518 K 11 p5-Marpa-PP V 29 dir 4-285696.0.r412347/402221 K 11 p5-Marpa-XS V 29 dir 4-285697.0.r412347/402929 K 14 p5-Modern-Perl V 29 dir 4-252285.0.r412347/403630 K 13 p5-Parse-Perl V 29 dir 4-265054.0.r412347/404346 K 13 p5-Perl6-Subs V 29 dir 4-153027.0.r412347/405064 K 11 p5-Promises V 26 dir 4-378069.0.r404304/550 K 21 p5-Pugs-Compiler-Rule V 29 dir 4-169273.0.r412347/405791 K 25 p5-Quantum-Superpositions V 29 dir 4-164142.0.r412347/406528 K 20 p5-Scalar-List-Utils V 26 dir 4-51840.0.r412812/1125 K 9 p5-Switch V 28 dir 4-42006.0.r412347/407288 K 6 p5-Tcl V 25 dir 2-6948.0.r411589/1025 K 13 p5-Test-XPath V 29 dir 4-253232.0.r412347/407999 K 12 p5-Try-Catch V 27 dir 4-391259.0.r407435/1018 K 11 p5-Try-Tiny V 29 dir 4-240668.0.r412347/408707 K 17 p5-Try-Tiny-Retry V 29 dir 4-364793.0.r412347/409418 K 11 p5-TryCatch V 29 dir 4-253190.0.r412347/410132 K 8 p5-ePerl V 25 dir 2-7531.0.r383885/1105 K 13 p5-signatures V 29 dir 4-238876.0.r412347/410841 K 5 p5-v6 V 29 dir 4-169285.0.r412347/411550 K 6 parrot V 27 dir 4-133434.0.r412461/2075 K 6 pbasic V 25 dir 2-2103.0.r363266/5559 K 3 pcc V 26 dir 4-199646.0.r395322/576 K 9 pecl-perl V 29 dir 4-186385.0.r409110/474435 K 11 perl5-devel V 33 dir 1f-1419.0-384103.r414453/1302 K 8 perl5.18 V 33 dir 1f-1419.0-324662.r414002/1819 K 8 perl5.20 V 32 dir 1f-1419.0-355497.r414041/785 K 8 perl5.22 V 32 dir 1f-1419.0-387481.r414356/774 K 11 petite-chez V 27 dir 5-234360.0.r398767/1218 K 3 pfe V 28 dir 4-34438.0.r413746/832691 K 9 phantomjs V 29 dir 4-272954.0.r412347/416728 K 5 pharo V 29 dir 4-296452.0.r412347/417379 K 3 phc V 29 dir 4-167718.0.r371587/116618 K 11 php-mode.el V 26 dir 4-61701.0.r393296/1067 K 5 php55 V 34 dir u-81722.10-321684.r414511/1348 K 16 php55-extensions V 34 dir 4-114187.11-321684.r412081/812 K 5 php56 V 33 dir u-81722.10-367268.r414512/849 K 16 php56-extensions V 35 dir 4-114187.12-367268.r412081/1533 K 5 php70 V 33 dir u-81722.x-408932.r414509/1355 K 16 php70-extensions V 33 dir 4-114187.z-408932.r408945/569 K 7 php_doc V 25 dir 4-41872.0.r408074/649 K 5 picoc V 27 dir 4-260484.0.r365030/2065 K 6 pike78 V 29 dir 4-234153.0.r412347/422203 K 6 polyml V 27 dir 4-140373.0.r413374/1452 K 4 ptoc V 28 dir 2-10325.0.r371587/118205 K 4 pure V 29 dir 4-271378.0.r412347/423634 K 10 py-clojure V 28 dir 4-353721.0.r371288/24933 K 10 py-mx-base V 28 dir 2-19008.0.r394508/717170 K 9 py-prolog V 28 dir 4-83793.0.r412347/424328 K 10 py-qt5-qml V 30 dir 3j-403693.0.r412347/424987 K 4 pypy V 29 dir 4-287302.0.r413746/834598 K 11 pypy3-devel V 36 dir 4-287302.0-324602.r413746/835420 K 6 python V 27 dir 2-2042.0.r412347/427643 K 15 python-doc-html V 26 dir 2-19180.0.r407843/8515 K 17 python-doc-pdf-a4 V 29 dir 2-19181.0.r340722/3834679 K 21 python-doc-pdf-letter V 29 dir 2-19182.0.r340722/3835245 K 15 python-doc-text V 30 dir 4-275799.0.r340722/3835812 K 14 python-mode.el V 29 dir 4-147020.0.r371587/122983 K 12 python-tools V 29 dir 4-365326.0.r399684/589415 K 7 python2 V 27 dir 6-324864.0.r386379/1807 K 8 python27 V 26 dir 5l-2042.0.r414029/4431 K 7 python3 V 27 dir i-324864.0.r386379/2396 K 8 python33 V 33 dir 73-2042.0-309312.r414029/6745 K 8 python34 V 27 dir d-350610.0.r414029/8701 K 8 python35 V 35 dir d-350610.0-396397.r414029/10817 K 4 qore V 29 dir 4-244193.0.r413746/836156 K 7 qscheme V 28 dir 4-62108.0.r412347/432523 K 7 qt5-qml V 30 dir 60-346930.0.r413746/836805 K 5 quack V 35 dir 4-92616.0-394326.r412347/433253 K 6 racket V 29 dir m-216546.0.r412347/434028 K 14 racket-minimal V 37 dir 14-216546.0-341390.r412347/434858 K 6 ratfor V 27 dir 2-32030.0.r403676/97113 K 8 rexx-imc V 24 dir 2-3847.0.r388632/753 K 11 rexx-regina V 28 dir 4-93554.0.r413746/837548 K 12 rexx-regutil V 27 dir 4-264001.0.r414814/9300 K 12 rexx-wrapper V 28 dir 4-93563.0.r412347/436410 K 5 rhino V 29 dir 4-206297.0.r412347/437155 K 8 rubinius V 29 dir 4-262839.0.r412347/437897 K 6 ruby20 V 34 dir 40-210636.0-312871.r414410/790 K 6 ruby21 V 35 dir 40-210636.0-344909.r414570/4955 K 6 ruby22 V 35 dir 40-210636.0-379473.r414571/4899 K 6 ruby23 V 35 dir 40-210636.0-405313.r414651/8612 K 6 runawk V 29 dir 4-252135.0.r412347/442239 K 4 rust V 27 dir 4-289669.0.r413503/1602 K 12 rust-nightly V 26 dir 4-392106.0.r412409/549 K 5 s9fes V 29 dir 4-230036.0.r405874/500095 K 18 sagittarius-scheme V 27 dir 4-360853.0.r412893/1449 K 20 sather-specification V 29 dir 4-169984.0.r386097/715494 K 15 sather-tutorial V 29 dir 4-169986.0.r386097/716215 K 4 sbcl V 28 dir 4-73159.0.r412347/445278 K 5 scala V 26 dir 4-233950.0.r414661/955 K 10 scala-docs V 26 dir 4-306314.0.r397312/962 K 8 scheme48 V 25 dir 2-736.0.r382211/20402 K 3 scm V 26 dir 2-329.0.r413746/841048 K 4 sdcc V 29 dir 4-108778.0.r412347/446649 K 10 sdcc-devel V 29 dir i-108778.0.r412347/447334 K 3 see V 29 dir 6-133435.0.r412347/448075 K 5 seed7 V 27 dir 4-216938.0.r412725/1003 K 4 siod V 28 dir 2-18176.0.r397461/163636 K 4 sisc V 28 dir 4-78210.0.r371587/144286 K 7 sketchy V 29 dir 4-135413.0.r401096/656678 K 4 slib V 25 dir 2-12844.0.r402685/778 K 10 slib-guile V 28 dir 9-95811.0.r412347/448717 K 11 slib-guile2 V 35 dir 9-95811.0-370066.r412347/449419 K 5 slisp V 25 dir 4-47091.0.r345787/544 K 9 smalltalk V 26 dir 2-925.0.r412347/450190 K 5 smlnj V 32 dir f-11924.0-363509.r406601/659 K 7 snobol4 V 27 dir 4-179157.0.r377801/3274 K 5 spark V 29 dir 7-390479.0.r412347/450926 K 14 spidermonkey17 V 35 dir 4-79724.0-303570.r412347/451690 K 15 spidermonkey170 V 36 dir 4-305994.0-315532.r412347/452554 K 15 spidermonkey185 V 29 dir 4-305994.0.r412347/453353 K 14 spidermonkey24 V 36 dir 4-305994.0-336683.r412347/454177 K 3 spl V 29 dir 4-55419.0.r405891/1051143 K 6 squeak V 26 dir 5-110728.0.r413193/641 K 8 squirrel V 27 dir 7-195571.0.r356127/1271 K 6 stalin V 29 dir 4-243256.0.r412347/455715 K 8 starlogo V 28 dir 6-24230.0.r371587/151802 K 6 stldoc V 28 dir 4-56852.0.r371587/152498 K 6 swi-pl V 27 dir 2-4155.0.r412347/456397 K 7 tcbasic V 27 dir 4-384187.0.r386785/1500 K 3 tcc V 27 dir 4-223624.0.r393585/3361 K 10 tcl-manual V 28 dir 4-51858.0.r400848/651543 K 11 tcl-wrapper V 29 dir 4-188523.0.r412347/457038 K 5 tcl84 V 28 dir 1f-7628.0.r394508/720657 K 5 tcl85 V 28 dir 4-183590.0.r408982/10619 K 5 tcl86 V 27 dir u-183590.0.r413497/1930 K 4 tclX V 27 dir 2-7879.0.r413646/324259 K 6 tinypy V 29 dir 4-231456.0.r397461/164282 K 5 tolua V 27 dir 4-122062.0.r402742/1039 K 7 tolua++ V 28 dir 4-154200.0.r393445/62030 K 14 tuareg-mode.el V 28 dir 4-207676.0.r385637/60161 K 5 twelf V 29 dir 4-149566.0.r412347/457686 K 3 ucc V 26 dir 4-219172.0.r380727/718 K 5 urweb V 29 dir 4-294290.0.r412347/458421 K 2 v8 V 27 dir 4-274006.0.r406703/2428 K 8 v8-devel V 36 dir 4-274006.0-337829.r412347/459227 K 4 vala V 29 dir 4-195359.0.r408881/805662 K 11 visualworks V 28 dir 4-62087.0.r371587/161025 K 10 whitespace V 29 dir 4-163999.0.r412347/459963 K 3 x10 V 29 dir 4-288064.0.r412347/460704 K 7 yabasic V 26 dir 4-24050.0.r399419/1385 K 3 yap V 29 dir 4-322261.0.r412347/461433 K 9 yap-devel V 29 dir 4-330001.0.r412347/462169 K 6 yorick V 27 dir 2-8794.0.r410613/577754 K 7 ypsilon V 30 dir 2-218073.0.r386312/1466349 END ENDREP id: 1-15.0.r414814/26607 type: dir pred: 1-15.0.r414767/25254 count: 14882 text: 414814 9483 17111 0 6f5634cbffe18d03a3ac65506bc8cc60 cpath: /head/lang copyroot: 0 / PLAIN K 10 .arcconfig V 26 file 1-354154.0.r413714/42 K 14 .gitattributes V 27 file 1-411777.0.r411777/210 K 10 .gitignore V 26 file 1-348322.0.r376072/79 K 7 CHANGES V 26 file 1-99373.0.r414163/222 K 15 CONTRIBUTING.md V 27 file 1-348323.0.r348323/344 K 9 COPYRIGHT V 26 file 1-146787.0.r404934/49 K 4 GIDs V 27 file 1-168311.0.r413967/994 K 8 Keywords V 27 dir 1-314142.0.r399974/1114 K 5 LEGAL V 24 file 1-748.0.r413939/359 K 5 MOVED V 26 file 1-69878.0.r414718/281 K 8 Makefile V 22 file 1-6.0.r413203/219 K 2 Mk V 22 dir 1-5.0.r414688/2517 K 6 README V 25 file 1-2408.0.r340854/956 K 9 Templates V 24 dir 1-2932.0.r414724/906 K 5 Tools V 26 dir 3-15302.0.r414399/3029 K 4 UIDs V 28 file 4-168311.0.r413967/1274 K 8 UPDATING V 28 file 1-102685.0.r414646/5023 K 13 accessibility V 27 dir 1-42583.0.r414136/78879 K 6 arabic V 27 dir 1-38973.0.r414753/41113 K 9 archivers V 25 dir 1-242.0.r414623/12733 K 5 astro V 25 dir 1-301.0.r414014/26129 K 5 audio V 25 dir 1-148.0.r414805/43618 K 10 benchmarks V 23 dir 1-62.0.r414538/4599 K 7 biology V 25 dir 1-9066.0.r414784/8524 K 3 cad V 25 dir 1-276.0.r414332/27734 K 7 chinese V 25 dir 1-3770.0.r414787/8087 K 5 comms V 24 dir 1-76.0.r414480/10853 K 10 converters V 26 dir 1-1561.0.r414194/10114 K 9 databases V 25 dir 1-771.0.r414786/54728 K 9 deskutils V 26 dir 1-2098.0.r414807/16338 K 5 devel V 25 dir 1-73.0.r414812/309325 K 3 dns V 26 dir 1-6145.0.r414763/11706 K 7 editors V 24 dir 4-6.0.r414753/127868 K 9 emulators V 24 dir 1-181.0.r414806/9512 K 7 finance V 26 dir 1-4110.0.r414675/12453 K 6 french V 28 dir 1-25673.0.r414753/129805 K 3 ftp V 24 dir 1-199.0.r414606/5593 K 5 games V 25 dir 1-104.0.r414718/59651 K 6 german V 27 dir 1-7451.0.r414753/132234 K 8 graphics V 24 dir 1-94.0.r414777/67279 K 6 hebrew V 28 dir 3-31142.0.r414753/133575 K 9 hungarian V 29 dir 1p-38973.0.r414753/135092 K 3 irc V 23 dir 1-42.0.r414531/9483 K 8 japanese V 26 dir 1-410.0.r414753/151148 K 4 java V 26 dir 1-2798.0.r414705/94324 K 6 korean V 27 dir 1-5873.0.r414753/153985 K 4 lang V 24 dir 1-15.0.r414814/26607 K 4 mail V 24 dir 1-57.0.r414793/43138 K 4 math V 25 dir 1-162.0.r414813/38842 K 4 misc V 24 dir 7-35.0.r414633/26388 K 10 multimedia V 25 dir d-333.0.r414781/24862 K 3 net V 24 dir 1-22.0.r414804/74230 K 6 net-im V 30 dir 15-11144.0.r414136/1418357 K 8 net-mgmt V 26 dir r-1011.0.r414674/20432 K 7 net-p2p V 27 dir g-29106.0.r414682/10808 K 4 news V 24 dir 1-145.0.r414595/4905 K 4 palm V 28 dir 1-6646.0.r412348/2426745 K 6 polish V 29 dir tv-38973.0.r414753/155886 K 10 ports-mgmt V 25 dir 1-5132.0.r414722/4999 K 10 portuguese V 28 dir 1-17842.0.r414753/158434 K 5 print V 24 dir 1-79.0.r414744/14873 K 7 russian V 25 dir 1-1559.0.r414809/3516 K 7 science V 26 dir n-5356.0.r414285/13101 K 8 security V 25 dir 1-269.0.r414792/60790 K 6 shells V 25 dir w-6.0.r413746/1259625 K 8 sysutils V 25 dir b-339.0.r414798/62103 K 8 textproc V 25 dir 1-322.0.r414776/96313 K 9 ukrainian V 28 dir g-39704.0.r414753/163106 K 10 vietnamese V 27 dir 1-4812.0.r414753/164907 K 3 www V 26 dir 1-114.0.r414788/140522 K 3 x11 V 24 dir 1-16.0.r414799/25174 K 10 x11-clocks V 24 dir 1-931.0.r413140/5620 K 11 x11-drivers V 30 dir 1-157567.0.r412351/1831680 K 6 x11-fm V 26 dir 1-691.0.r413438/471261 K 9 x11-fonts V 25 dir 1-543.0.r414655/11472 K 11 x11-servers V 28 dir 1n-710.0.r413746/1660837 K 10 x11-themes V 27 dir 1-14410.0.r414476/12660 K 12 x11-toolkits V 26 dir 1-120.0.r414332/924140 K 6 x11-wm V 24 dir 1-40.0.r413582/10592 END ENDREP id: 2-1.0.r414814/30261 type: dir pred: 2-1.0.r414813/42498 count: 411665 text: 414814 26774 3474 0 6a358c3cdf3a93b5852f8f28fb7d2805 props: 7322 2587 45 0 7a04b33bf8e35fd5c3d111baaf403dc5 cpath: /head copyroot: 0 / PLAIN K 8 branches V 24 dir 0-1.0.r414783/143970 K 4 head V 23 dir 2-1.0.r414814/30261 K 8 projects V 30 dir 0-377393.0.r378744/3577692 K 8 svnadmin V 22 dir 3-1.0.r413041/1283 K 4 tags V 22 dir 8-1.0.r411747/5071 END ENDREP id: 0.0.r414814/30702 type: dir pred: 0.0.r414813/42940 count: 414814 text: 414814 30477 212 0 6fd15a8ccca894fe6c1e4ff6baa7e032 props: 341041 7130 346 0 8b695b9f61597e4917effffba3bbfaa3 cpath: / copyroot: 0 / minfo-cnt: 32 5-264001.0.t414813-8w2m modify-file true false /head/lang/rexx-regutil/Makefile b-264001.0.t414813-8w2m modify-file true false /head/lang/rexx-regutil/files/patch-Makefile.inc _7.0.t414813-8w2m add-file true true /head/lang/rexx-regutil/files/patch-inifile.c _9.0.t414813-8w2m add-file true true /head/lang/rexx-regutil/files/patch-regfilesys.c _b.0.t414813-8w2m add-file true true /head/lang/rexx-regutil/files/patch-regini.c _d.0.t414813-8w2m add-file true true /head/lang/rexx-regutil/files/patch-regstem.c _f.0.t414813-8w2m add-file true true /head/lang/rexx-regutil/files/patch-regunicode.c _h.0.t414813-8w2m add-file true true /head/lang/rexx-regutil/files/patch-regutil.c _j.0.t414813-8w2m add-file true true /head/lang/rexx-regutil/files/patch-rxproto.h _l.0.t414813-8w2m add-file true true /head/lang/rexx-regutil/files/patch-rxsupport.c e-264001.0.r340719/1549066 delete-file false false /head/lang/rexx-regutil/files/pkg-message.in g-264001.0.t414813-8w2m modify-file true false /head/lang/rexx-regutil/files/regutil.1.in k-264001.0.r371587/130974 delete-file false false /head/lang/rexx-regutil/pkg-plist 30702 30926