mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
Update to 0.9.9.13.
PR: ports/173401 Submitted by: Fernando <fernando.apesteguia@gmail.com> (maintainer) Feature safe: yes
This commit is contained in:
parent
217d145ff9
commit
07c079837d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=307033
@ -2,7 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= basic256
|
||||
PORTVERSION= 0.9.9.1
|
||||
PORTVERSION= 0.9.9.13
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= SF
|
||||
MASTER_SITE_SUBDIR= kidbasic/${PORTNAME}
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (basic256_0.9.9.1.tgz) = cb959497b8576c790731eea0898855612f444f7a84bc743a9aae14680f40e372
|
||||
SIZE (basic256_0.9.9.1.tgz) = 7938684
|
||||
SHA256 (basic256_0.9.9.13.tgz) = 253ac4c3c2685180fcb6259758823648becfdeb5c518f401cbf155af6e57a680
|
||||
SIZE (basic256_0.9.9.13.tgz) = 8042979
|
||||
|
@ -1,12 +0,0 @@
|
||||
--- Stack.cpp.orig 2012-10-09 17:42:07.000000000 +0200
|
||||
+++ Stack.cpp 2012-10-09 17:42:30.000000000 +0200
|
||||
@@ -53,7 +53,8 @@
|
||||
int Stack::height()
|
||||
{
|
||||
// return the height of the stack in elements
|
||||
- return ((unsigned int) top - (unsigned int) bottom)/sizeof(stackval);
|
||||
+ // magic of pointer math returns number of elements
|
||||
+ return ((int) (top - bottom));
|
||||
}
|
||||
|
||||
void
|
@ -6,6 +6,7 @@ share/basic256/Examples/arrays.kbs
|
||||
share/basic256/Examples/ballaccel.kbs
|
||||
share/basic256/Examples/ballaccel_2.kbs
|
||||
share/basic256/Examples/ballanim.kbs
|
||||
share/basic256/Examples/ballanim_2.kbs
|
||||
share/basic256/Examples/basic256_icon.kbs
|
||||
share/basic256/Examples/basic256_icon_V1.kbs
|
||||
share/basic256/Examples/card_suites.kbs
|
||||
@ -76,10 +77,12 @@ share/basic256/Examples/testing/beautifytest.kbs
|
||||
share/basic256/Examples/testing/counttest.kbs
|
||||
share/basic256/Examples/testing/explodetest.kbs
|
||||
share/basic256/Examples/testing/fontdemo.kbs
|
||||
share/basic256/Examples/testing/global_array_test.kbs
|
||||
share/basic256/Examples/testing/input_numeric_test.kbs
|
||||
share/basic256/Examples/testing/input_string_test.kbs
|
||||
share/basic256/Examples/testing/instrtest.kbs
|
||||
share/basic256/Examples/testing/random_one.kbs
|
||||
share/basic256/Examples/testing/readbinary_test.kbs
|
||||
share/basic256/Examples/testing/replacetest.kbs
|
||||
share/basic256/Examples/testing/tes_oo.kbs
|
||||
share/basic256/Examples/testing/test_dountil.kbs
|
||||
@ -92,6 +95,9 @@ share/basic256/Examples/testing/testimagesave.kbs
|
||||
share/basic256/Examples/testing/testlineio.kbs
|
||||
share/basic256/Examples/testing/testmath.kbs
|
||||
share/basic256/Examples/testing/testmodulo.kbs
|
||||
share/basic256/Examples/testing/testplusplus.kbs
|
||||
share/basic256/Examples/testing/testplusplus2.kbs
|
||||
share/basic256/Examples/testing/testsubroutinebyref.kbs
|
||||
share/basic256/Examples/testing/testtextfont.kbs
|
||||
share/basic256/Examples/testing/testtime.kbs
|
||||
share/basic256/Examples/testing/uaarray.kbs
|
||||
|
Loading…
Reference in New Issue
Block a user