comp.lang.ada
 help / color / mirror / Atom feed
* ANN: BUSH 0.9.2 released
@ 2003-02-15  1:22 Ken O. Burtch
  2003-02-15 12:04 ` Georg Bauhaus
                   ` (2 more replies)
  0 siblings, 3 replies; 17+ messages in thread
From: Ken O. Burtch @ 2003-02-15  1:22 UTC (permalink / raw)




BUSH 0.9.2 has been released.  It is available at the PegaSoft website:

      http://www.pegasoft.ca/bush.html

BUSH, the AdaScript Business Shell, is a Linux shell for designing
secure, reliable shell scripts that
can be later compiled as a fast executable programs.  BUSH comes with 10
built-in packages including numerics,
string processing, and measurement conversions.  (It plays WAV, AU and
audio CD's, too.)

We're looking for people to help port BUSH to UNIX.

New to this version:

     * --exec / -e -- Run a command line script. 
     * --import-all / -i -- BUSH no longer automatically imports all
environment variables on startup. Use this
        option to import all environment variables. 
     * sound package -- Play WAV, AU and audio CDs 
     * units package -- Conversion between common measurements 
     * arrays -- single-dimension arrays implemented 
     * pragma annotate( "text" ); -- Python-style embedded comments 
     * pragma depreciated( "newscript" ); -- mark a script as obsolete 
     * pragma unchecked_import( shell, var ); -- import an environment
variable with no error if it doesn't
        exist 
     * command_line.environment.environment_count and
        command_line.environment.environment_value functions 
     * command line redirection: <, >, >>, 2>, 2>> and 2>&1 now work
with shell commands 
     * "in" and "not in" operators supported 
     * based numeric literals (that is, octal, hex, etc. numbers) 
     * bitwise operations fix:  "int or 64" now works ("64 or int"
worked before) 
     * cd command: now allows Bourne shell quoting in path 
     * numerics.md5: RSA message digest 5 signature function 
     * return fix: return command no longer puts BUSH into syntax check
mode 
     * hang fix: fixed command pipelines which could hang if there were
background processes running 
     * phanton variables fixes: shell parameters no longer declared as
"new" type variables 
     * single char options: single character options can be combined
after one minus
     * export variables bug fixed
     * upgraded for GNAT (GCC Ada) 3.15

-- 
Ken O. Burtch: http://www.pegasoft.ca               : Pegasoft
System Manager in a Box / Business Shell            : R.R.#1
Bio: 36;Bsc,UI,Lang,Games;Toons,Elves,SF,Pizza;Xian : Jordan Station, ON
````````````````````````````````````````````````````` Canada L0R 1S0



^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: ANN: BUSH 0.9.2 released
  2003-02-15  1:22 ANN: BUSH 0.9.2 released Ken O. Burtch
@ 2003-02-15 12:04 ` Georg Bauhaus
  2003-02-17 21:45   ` Ken O. Burtch
  2003-02-16  2:16 ` Eric G. Miller
  2003-02-25 18:37 ` BUSH on SourceForge Ken O. Burtch
  2 siblings, 1 reply; 17+ messages in thread
From: Georg Bauhaus @ 2003-02-15 12:04 UTC (permalink / raw)


Ken O. Burtch <kburtch@sympatico.ca> wrote:
: 
: 
: BUSH 0.9.2 has been released.

For those who see the message that wc.ads must be compiled because
there is no wc.ali, here is a patch for Makefile, adding a '.' in
-I for ADAVOX-0.51, which is missing I think.


--- Makefile	2003-02-15 12:59:15.000000000 +0100
+++ bush-0.9.2-src/Makefile	2003-02-14 18:12:31.000000000 +0100
@@ -16 +16 @@
-	gnatbind -x -I./adacgi-1.6/ -I./apq-1.92/ -I./ADAVOX-0.51/bc -I./ADAVOX-0.51/wc -I./ADAVOX-0.51/main bush.ali
+	gnatbind -x -I./adacgi-1.6/ -I./apq-1.92/ -I./ADAVOX-0.51/bc -I./ADAVOX-0.51/wc -I/ADAVOX-0.51/main bush.ali



^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: ANN: BUSH 0.9.2 released
  2003-02-15  1:22 ANN: BUSH 0.9.2 released Ken O. Burtch
  2003-02-15 12:04 ` Georg Bauhaus
@ 2003-02-16  2:16 ` Eric G. Miller
  2003-02-17 21:44   ` Ken O. Burtch
  2003-02-25 18:37 ` BUSH on SourceForge Ken O. Burtch
  2 siblings, 1 reply; 17+ messages in thread
From: Eric G. Miller @ 2003-02-16  2:16 UTC (permalink / raw)


In article <3E4D963C.673E0E32@sympatico.ca>, Ken O. Burtch wrote:
> 
> 
> BUSH 0.9.2 has been released.  It is available at the PegaSoft website:
[snip]
> New to this version:
> 
[snip]
>      * pragma depreciated( "newscript" ); -- mark a script as obsolete 

ITYM, "pragma deprecated ("newscript");"

I realize that deprecate/depreciate are nearly synonymous, but it seems
that folks usually use "deprecate" to mark an interface obsolete and a
candidate for removal from future versions.

For example (http://www.rfc-editor.org/overview.html):
"""
 RFC Categories

   Each RFC has a "category" or "status" designation. The possible
   categories (see RFC 2026 "The Internet Standards Process -- Revision
   3") are:

...

   * HISTORIC

      These are former standards that have been actively deprecated.
"""

When I see "depreciate", I think of capital investments and tax
deductions... ;-)

-- 
echo ">gra.fcw@2ztr< eryyvZ .T pveR" | rot13 | reverse



^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: ANN: BUSH 0.9.2 released
  2003-02-16  2:16 ` Eric G. Miller
@ 2003-02-17 21:44   ` Ken O. Burtch
  2003-02-19 21:53     ` Ken O. Burtch
  2003-02-23 21:06     ` Faust
  0 siblings, 2 replies; 17+ messages in thread
From: Ken O. Burtch @ 2003-02-17 21:44 UTC (permalink / raw)



I will make "deprecate" an alias for "depreciate".

"Eric G. Miller" wrote:
> 
> In article <3E4D963C.673E0E32@sympatico.ca>, Ken O. Burtch wrote:
> >
> >
> > BUSH 0.9.2 has been released.  It is available at the PegaSoft website:
> [snip]
> > New to this version:
> >
> [snip]
> >      * pragma depreciated( "newscript" ); -- mark a script as obsolete
> 
> ITYM, "pragma deprecated ("newscript");"


-- 
Ken O. Burtch: http://www.pegasoft.ca               : Pegasoft
System Manager in a Box / Business Shell            : R.R.#1
Bio: 36;Bsc,UI,Lang,Games;Toons,Elves,SF,Pizza;Xian : Jordan Station, ON
````````````````````````````````````````````````````` Canada L0R 1S0



^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: ANN: BUSH 0.9.2 released
  2003-02-15 12:04 ` Georg Bauhaus
@ 2003-02-17 21:45   ` Ken O. Burtch
  0 siblings, 0 replies; 17+ messages in thread
From: Ken O. Burtch @ 2003-02-17 21:45 UTC (permalink / raw)



I will update the makefile.

Ken B>

Georg Bauhaus wrote:
> 
> Ken O. Burtch <kburtch@sympatico.ca> wrote:
> :
> :
> : BUSH 0.9.2 has been released.
> 
> For those who see the message that wc.ads must be compiled because
> there is no wc.ali, here is a patch for Makefile, adding a '.' in
> -I for ADAVOX-0.51, which is missing I think.
> 
> --- Makefile    2003-02-15 12:59:15.000000000 +0100
> +++ bush-0.9.2-src/Makefile     2003-02-14 18:12:31.000000000 +0100
> @@ -16 +16 @@
> -       gnatbind -x -I./adacgi-1.6/ -I./apq-1.92/ -I./ADAVOX-0.51/bc -I./ADAVOX-0.51/wc -I./ADAVOX-0.51/main bush.ali
> +       gnatbind -x -I./adacgi-1.6/ -I./apq-1.92/ -I./ADAVOX-0.51/bc -I./ADAVOX-0.51/wc -I/ADAVOX-0.51/main bush.ali

-- 
Ken O. Burtch: http://www.pegasoft.ca               : Pegasoft
System Manager in a Box / Business Shell            : R.R.#1
Bio: 36;Bsc,UI,Lang,Games;Toons,Elves,SF,Pizza;Xian : Jordan Station, ON
````````````````````````````````````````````````````` Canada L0R 1S0



^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: ANN: BUSH 0.9.2 released
  2003-02-17 21:44   ` Ken O. Burtch
@ 2003-02-19 21:53     ` Ken O. Burtch
  2003-02-19 22:37       ` Georg Bauhaus
                         ` (2 more replies)
  2003-02-23 21:06     ` Faust
  1 sibling, 3 replies; 17+ messages in thread
From: Ken O. Burtch @ 2003-02-19 21:53 UTC (permalink / raw)



I asked around.  It appears that "depreciate" might be a Canadian
regionalism.  I had never heard of "deprecate" until this post.

KB

"Ken O. Burtch" wrote:
> 
> I will make "deprecate" an alias for "depreciate".
> 
> "Eric G. Miller" wrote:
> >
> > ITYM, "pragma deprecated ("newscript");"


-- 
Ken O. Burtch: http://www.pegasoft.ca               : Pegasoft
System Manager in a Box / Business Shell            : R.R.#1
Bio: 36;Bsc,UI,Lang,Games;Toons,Elves,SF,Pizza;Xian : Jordan Station, ON
````````````````````````````````````````````````````` Canada L0R 1S0



^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: ANN: BUSH 0.9.2 released
  2003-02-19 21:53     ` Ken O. Burtch
@ 2003-02-19 22:37       ` Georg Bauhaus
  2003-02-20 21:57         ` Simon Wright
  2003-02-20  3:52       ` Christopher Browne
  2003-02-20 10:09       ` Ken Thomas
  2 siblings, 1 reply; 17+ messages in thread
From: Georg Bauhaus @ 2003-02-19 22:37 UTC (permalink / raw)


Ken O. Burtch <kburtch@sympatico.ca> wrote:
: 
: I asked around.  It appears that "depreciate" might be a Canadian
: regionalism.  I had never heard of "deprecate" until this post.
: 
FWIW, my dictionaries have an entry for each of them, apparently
deprecate is formal and means saying no! for moral reasons,
whereas depreciate means turning ones nose up at something because
it's worth it.

My 2 Euro cent (continental, add grains of salt :-)
georg



^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: ANN: BUSH 0.9.2 released
  2003-02-19 21:53     ` Ken O. Burtch
  2003-02-19 22:37       ` Georg Bauhaus
@ 2003-02-20  3:52       ` Christopher Browne
  2003-02-20 10:09       ` Ken Thomas
  2 siblings, 0 replies; 17+ messages in thread
From: Christopher Browne @ 2003-02-20  3:52 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1045 bytes --]

After a long battle with technology,"Ken O. Burtch" <kburtch@sympatico.ca>, an earthling, wrote:
> I asked around.  It appears that "depreciate" might be a Canadian
> regionalism.  I had never heard of "deprecate" until this post.

It's certainly in a number of dictionaries, RFCs, and such...

<a href="http://www.quinion.com/words/topicalwords/tw-dep1.htm">Topical Words: Deprecate</a>
<a href="http://java.sun.com/j2se/1.4/docs/guide/misc/deprecation/deprecation.html">How and When to Deprecate APIs</a>
<a href="http://www.bartleby.com/62/50/D0405000.html">deprecate. Rogets II: The New Thesaurus, Third Edition. 1995.</a>
<a href="http://www.bartleby.com/61/54/D0145400.html">deprecate. The American Heritage� Dictionary of the English Language</a>

It's also in the OED, meaning it's not just something the "dumb
'Murricans" made up :-).
-- 
If this was helpful, <http://svcs.affero.net/rm.php?r=cbbrowne> rate me
http://www3.sympatico.ca/cbbrowne/sap.html
"Who needs perl when you can write dc and sokoban in sed?"
-- Peter S Tillier



^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: ANN: BUSH 0.9.2 released
  2003-02-19 21:53     ` Ken O. Burtch
  2003-02-19 22:37       ` Georg Bauhaus
  2003-02-20  3:52       ` Christopher Browne
@ 2003-02-20 10:09       ` Ken Thomas
  2003-02-20 14:03         ` Britt Snodgrass
  2 siblings, 1 reply; 17+ messages in thread
From: Ken Thomas @ 2003-02-20 10:09 UTC (permalink / raw)


The Oxford English Dictionary gives for "deprecate"

1. trans. To pray against (evil); to pray for deliverance from; to seek to
avert by prayer. arch.

and similar others.

Ken Thomas

"Ken O. Burtch" <kburtch@sympatico.ca> wrote in message
news:3E53FCE9.9C4E7273@sympatico.ca...
>
> I asked around.  It appears that "depreciate" might be a Canadian
> regionalism.  I had never heard of "deprecate" until this post.
>
> KB
>
> "Ken O. Burtch" wrote:
> >
> > I will make "deprecate" an alias for "depreciate".
> >
> > "Eric G. Miller" wrote:
> > >
> > > ITYM, "pragma deprecated ("newscript");"
>
>
> --
> Ken O. Burtch: http://www.pegasoft.ca               : Pegasoft
> System Manager in a Box / Business Shell            : R.R.#1
> Bio: 36;Bsc,UI,Lang,Games;Toons,Elves,SF,Pizza;Xian : Jordan Station, ON
> ````````````````````````````````````````````````````` Canada L0R 1S0





^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: ANN: BUSH 0.9.2 released
  2003-02-20 10:09       ` Ken Thomas
@ 2003-02-20 14:03         ` Britt Snodgrass
  0 siblings, 0 replies; 17+ messages in thread
From: Britt Snodgrass @ 2003-02-20 14:03 UTC (permalink / raw)


"Ken Thomas" <kst@ecs.soton.ac.uk> wrote in message
news:3e54a95f@news.ecs.soton.ac.uk...
> The Oxford English Dictionary gives for "deprecate"
>
> 1. trans. To pray against (evil); to pray for deliverance from; to seek to
> avert by prayer. arch.
>

In that case, I deprecate curly braces, {}.

Britt





^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: ANN: BUSH 0.9.2 released
  2003-02-19 22:37       ` Georg Bauhaus
@ 2003-02-20 21:57         ` Simon Wright
  0 siblings, 0 replies; 17+ messages in thread
From: Simon Wright @ 2003-02-20 21:57 UTC (permalink / raw)


Georg Bauhaus <sb463ba@d2-hrz.uni-duisburg.de> writes:

> Ken O. Burtch <kburtch@sympatico.ca> wrote:
> : 
> : I asked around.  It appears that "depreciate" might be a Canadian
> : regionalism.  I had never heard of "deprecate" until this post.
> : 
> FWIW, my dictionaries have an entry for each of them, apparently
> deprecate is formal and means saying no! for moral reasons,
> whereas depreciate means turning ones nose up at something because
> it's worth it.

The thing is, the Java word for what you want to do is "deprecate" (my
dictionary says "to argue earnestly agains some evil", whereas I think
Ken's intent was to just mark an interface as to be avoided). I didn't
know "depreciate" had a transitive use at all (to undervalue or
disparage).



^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: ANN: BUSH 0.9.2 released
  2003-02-17 21:44   ` Ken O. Burtch
  2003-02-19 21:53     ` Ken O. Burtch
@ 2003-02-23 21:06     ` Faust
  2003-02-24  6:26       ` Hyman Rosen
  1 sibling, 1 reply; 17+ messages in thread
From: Faust @ 2003-02-23 21:06 UTC (permalink / raw)


Does it drop bombs on the innocent ?
-- 

natsu-gusa ya   / tsuwamono-domo-ga   / yume no ato
summer grasses  / strong ones         / dreams site
 
Summer grasses,
All that remains
Of soldier's dreams
(Basho trans. Stryk)



^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: ANN: BUSH 0.9.2 released
  2003-02-23 21:06     ` Faust
@ 2003-02-24  6:26       ` Hyman Rosen
  2003-02-24 19:52         ` Christopher Browne
  0 siblings, 1 reply; 17+ messages in thread
From: Hyman Rosen @ 2003-02-24  6:26 UTC (permalink / raw)


Faust wrote:
> Does it drop bombs on the innocent ?

On the unlucky, at any rate.




^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: ANN: BUSH 0.9.2 released
  2003-02-24  6:26       ` Hyman Rosen
@ 2003-02-24 19:52         ` Christopher Browne
  0 siblings, 0 replies; 17+ messages in thread
From: Christopher Browne @ 2003-02-24 19:52 UTC (permalink / raw)


FYI...

<http://bush.soureforge.net/> and
<https://sourceforge.net/project/bush/> have CVS and releases of
versions 0.1, 0.9, 0.9.1, 0.9.2...
-- 
If this was helpful, <http://svcs.affero.net/rm.php?r=cbbrowne> rate me
http://www.ntlug.org/~cbbrowne/internet.html
BIOS = Bugs Inherited from Older Systems
-- simon@otago.ac.nz



^ permalink raw reply	[flat|nested] 17+ messages in thread

* BUSH on SourceForge
  2003-02-15  1:22 ANN: BUSH 0.9.2 released Ken O. Burtch
  2003-02-15 12:04 ` Georg Bauhaus
  2003-02-16  2:16 ` Eric G. Miller
@ 2003-02-25 18:37 ` Ken O. Burtch
  2003-02-26  8:19   ` Preben Randhol
  2 siblings, 1 reply; 17+ messages in thread
From: Ken O. Burtch @ 2003-02-25 18:37 UTC (permalink / raw)



Someone (not me) has set up a BUSH project on SourceForge.  You can
download the sources using CVS and submit changes and bug fixes.  The
project link is

   http://sourceforge.net/projects/bush/

Many hands make light work.

-- 
Ken O. Burtch: http://www.pegasoft.ca               : Pegasoft
System Manager in a Box / Business Shell            : R.R.#1
Bio: 36;Bsc,UI,Lang,Games;Toons,Elves,SF,Pizza;Xian : Jordan Station, ON
````````````````````````````````````````````````````` Canada L0R 1S0



^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: BUSH on SourceForge
  2003-02-25 18:37 ` BUSH on SourceForge Ken O. Burtch
@ 2003-02-26  8:19   ` Preben Randhol
  2003-02-27 16:05     ` Ken O. Burtch
  0 siblings, 1 reply; 17+ messages in thread
From: Preben Randhol @ 2003-02-26  8:19 UTC (permalink / raw)


Ken O. Burtch wrote:
> 
> Someone (not me) has set up a BUSH project on SourceForge.  You can

I hope you have approved this :-)

For me there is only one thing that BUSH lacks before I can use it and
that is support for (at least) the full ASCII table. At the moment it
only supports English alphabeth and this makes it hard to use. But after
what I have understood it is not so easy to change this?

-- 
Preben Randhol ---------------- http://www.pvv.org/~randhol/ --
"Violence is the last refuge of the incompetent", Isaac Asimov



^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: BUSH on SourceForge
  2003-02-26  8:19   ` Preben Randhol
@ 2003-02-27 16:05     ` Ken O. Burtch
  0 siblings, 0 replies; 17+ messages in thread
From: Ken O. Burtch @ 2003-02-27 16:05 UTC (permalink / raw)



BUSH uses the upper ASCII characters to represent language tokens and
byte code.  Support for a full 256 ASCII characters is possible but I
was not able to add it to the latest release.

Ken B.

Preben Randhol wrote:
> 
> Ken O. Burtch wrote:
> >
> > Someone (not me) has set up a BUSH project on SourceForge.  You can
> 
> I hope you have approved this :-)
> 
> For me there is only one thing that BUSH lacks before I can use it and
> that is support for (at least) the full ASCII table. At the moment it
> only supports English alphabeth and this makes it hard to use. But after
> what I have understood it is not so easy to change this?
> 
> --
> Preben Randhol ---------------- http://www.pvv.org/~randhol/ --
> "Violence is the last refuge of the incompetent", Isaac Asimov

-- 
Ken O. Burtch: http://www.pegasoft.ca               : Pegasoft
System Manager in a Box / Business Shell            : R.R.#1
Bio: 36;Bsc,UI,Lang,Games;Toons,Elves,SF,Pizza;Xian : Jordan Station, ON
````````````````````````````````````````````````````` Canada L0R 1S0



^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2003-02-27 16:05 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-02-15  1:22 ANN: BUSH 0.9.2 released Ken O. Burtch
2003-02-15 12:04 ` Georg Bauhaus
2003-02-17 21:45   ` Ken O. Burtch
2003-02-16  2:16 ` Eric G. Miller
2003-02-17 21:44   ` Ken O. Burtch
2003-02-19 21:53     ` Ken O. Burtch
2003-02-19 22:37       ` Georg Bauhaus
2003-02-20 21:57         ` Simon Wright
2003-02-20  3:52       ` Christopher Browne
2003-02-20 10:09       ` Ken Thomas
2003-02-20 14:03         ` Britt Snodgrass
2003-02-23 21:06     ` Faust
2003-02-24  6:26       ` Hyman Rosen
2003-02-24 19:52         ` Christopher Browne
2003-02-25 18:37 ` BUSH on SourceForge Ken O. Burtch
2003-02-26  8:19   ` Preben Randhol
2003-02-27 16:05     ` Ken O. Burtch

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox