mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
Upgrade to 2.1.1293.
PR: ports/120082 Submitted by: maintainer
This commit is contained in:
parent
6653ee67f4
commit
b6543b73df
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=206359
@ -6,12 +6,12 @@
|
||||
#
|
||||
|
||||
PORTNAME= see
|
||||
PORTVERSION= 2.0.1131
|
||||
PORTREVISION= 3
|
||||
DISTVERSION= 2.1.1293
|
||||
CATEGORIES= lang devel
|
||||
MASTER_SITES= http://www.powerband.net.au/~david.leonard/ \
|
||||
http://freshmeat.net/redir/see/45974/url_tgz/
|
||||
MASTER_SITES= ${MASTER_SITES_LOCAL}
|
||||
MASTER_SITE_SUBDIR= vanilla
|
||||
PKGNAMESUFFIX= -devel
|
||||
DISTNAME= ${PORTNAME}-${DISTVERSION}_snapshot
|
||||
|
||||
MAINTAINER= numisemis@yahoo.com
|
||||
COMMENT= Simple ECMAScript Engine (SEE)
|
||||
@ -22,9 +22,6 @@ OPTIONS= GC "Use Boehm-Weiser garbage collection package" on \
|
||||
|
||||
CONFLICTS= see-[0-9]*
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
||||
LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX}
|
||||
|
||||
USE_LDCONFIG= yes
|
||||
USE_PERL5_BUILD=yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (see-2.0.1131.tar.gz) = 02d8e5d7581acde2212969217d5bab96
|
||||
SHA256 (see-2.0.1131.tar.gz) = 0d398fd5f7a2e86ddbe361a80d9658bf0f0f6c11dad186953c3c064c56d12d93
|
||||
SIZE (see-2.0.1131.tar.gz) = 948647
|
||||
MD5 (see-2.1.1293_snapshot.tar.gz) = 65fb2bff5b49a95bf2907e6d636a1137
|
||||
SHA256 (see-2.1.1293_snapshot.tar.gz) = 086627e7fd71fe872f7f649ffc3c5121f9c653cbf1fab91a32eefc7b4d264cdb
|
||||
SIZE (see-2.1.1293_snapshot.tar.gz) = 1037724
|
||||
|
@ -1,20 +0,0 @@
|
||||
--- libsee/input_utf8.c.orig Wed Jan 18 12:40:19 2006
|
||||
+++ libsee/input_utf8.c Tue Dec 12 08:48:44 2006
|
||||
@@ -63,7 +63,7 @@
|
||||
|
||||
struct input_utf8 {
|
||||
struct SEE_input inp;
|
||||
- const char * s;
|
||||
+ const unsigned char * s;
|
||||
};
|
||||
|
||||
static SEE_unicode_t
|
||||
@@ -141,7 +141,7 @@
|
||||
inpu->inp.inputclass = &input_utf8_class;
|
||||
inpu->inp.filename = NULL;
|
||||
inpu->inp.first_lineno = 1;
|
||||
- inpu->s = s;
|
||||
+ inpu->s = (const unsigned char *)s;
|
||||
SEE_INPUT_NEXT((struct SEE_input *)inpu); /* prime */
|
||||
return (struct SEE_input *)inpu;
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
--- libsee/obj_Date.c.orig Sun May 7 06:43:55 2006
|
||||
+++ libsee/obj_Date.c Tue Sep 5 09:11:09 2006
|
||||
@@ -335,7 +335,7 @@
|
||||
struct SEE_interpreter *interp;
|
||||
SEE_number_t t;
|
||||
{
|
||||
- return t + LocalTZA(interp) + DaylightSavingTA(interp, t);
|
||||
+ return t + LocalTZA(interp) - DaylightSavingTA(interp, t);
|
||||
}
|
||||
|
||||
/*
|
Loading…
Reference in New Issue
Block a user