From owner-svn-ports-head@freebsd.org Mon Mar 29 18:50:28 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1BAB857F9B6; Mon, 29 Mar 2021 18:50:28 +0000 (UTC) (envelope-from nc@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F8M8h0LF0z4WrK; Mon, 29 Mar 2021 18:50:28 +0000 (UTC) (envelope-from nc@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F268D1859A; Mon, 29 Mar 2021 18:50:27 +0000 (UTC) (envelope-from nc@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 12TIoRhq001040; Mon, 29 Mar 2021 18:50:27 GMT (envelope-from nc@FreeBSD.org) Received: (from nc@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 12TIoRAq001038; Mon, 29 Mar 2021 18:50:27 GMT (envelope-from nc@FreeBSD.org) Message-Id: <202103291850.12TIoRAq001038@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nc set sender to nc@FreeBSD.org using -f From: Neel Chauhan Date: Mon, 29 Mar 2021 18:50:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r569496 - head/lang/mecrisp-stellaris X-SVN-Group: ports-head X-SVN-Commit-Author: nc X-SVN-Commit-Paths: head/lang/mecrisp-stellaris X-SVN-Commit-Revision: 569496 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Mar 2021 18:50:28 -0000 Author: nc Date: Mon Mar 29 18:50:27 2021 New Revision: 569496 URL: https://svnweb.freebsd.org/changeset/ports/569496 Log: lang/mecrisp-stellaris: Update to 2.5.8 Also, statisfy portclippy where possible PR: 254542 Submitted by: Robert Clausecker (maintainer) Modified: head/lang/mecrisp-stellaris/Makefile head/lang/mecrisp-stellaris/distinfo Modified: head/lang/mecrisp-stellaris/Makefile ============================================================================== --- head/lang/mecrisp-stellaris/Makefile Mon Mar 29 18:14:41 2021 (r569495) +++ head/lang/mecrisp-stellaris/Makefile Mon Mar 29 18:50:27 2021 (r569496) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mecrisp-stellaris -DISTVERSION= 2.5.6 +DISTVERSION= 2.5.8 CATEGORIES= lang MASTER_SITES= SF/mecrisp @@ -11,16 +11,21 @@ COMMENT= Native code Forth system for ARM LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING -ONLY_FOR_ARCHS= armv7 -ONLY_FOR_ARCHS_REASON= written in ARM Thumb2 assembly +ONLY_FOR_ARCHS= armv6 armv7 +ONLY_FOR_ARCHS_REASON= written in ARM assembly +BUILD_DEPENDS= binutils>2.33:devel/binutils + +AFLAGS.armv6= -march=armv6 --defsym m0core=1 +MAKE_ENV+= AFLAGS="${AFLAGS.${ARCH}}" + # stripping eats our hand-crafted ELF binaries, so don't do that # the binaries are free of symbols or stuff like that anyway STRIP= # definitions assuming we build on ARM -BINARY_ALIAS= arm-none-eabi-as=${AS} \ - arm-none-eabi-ld=${LD} \ - arm-none-eabi-objcopy=${OBJCOPY} +BINARY_ALIAS= arm-none-eabi-as=${LOCALBASE}/bin/${AS} \ + arm-none-eabi-ld=${LOCALBASE}/bin/${LD} \ + arm-none-eabi-objcopy=${LOCALBASE}/bin/${OBJCOPY} OPTIONS_DEFINE= EXTRAS OPTIONS_DEFAULT= EXTRAS @@ -33,9 +38,9 @@ EXTRAS_VARS_OFF= PROGRAM=mecrisp-stellaris-freebsd # Can't use the release script as it tries to build a bunch of stuff # that won't build correctly. This does the relevant parts manually. do-build: - cd ${WRKSRC}/mecrisp-stellaris-source/freebsd-ra && ${SETENV} ${MAKE_ENV} ${SH} assemble + cd ${WRKSRC}/mecrisp-stellaris-source/freebsd-ra && ${SETENV} ${MAKE_ENV} ${SH} -v assemble ${CP} ${WRKSRC}/mecrisp-stellaris-source/freebsd-ra/mecrisp-stellaris-freebsd ${WRKSRC}/freebsd-ra/ - cd ${WRKSRC}/freebsd-ra && ${SETENV} ${MAKE_ENV} ${SH} buildcore-freebsd + cd ${WRKSRC}/freebsd-ra && ${SETENV} ${MAKE_ENV} ${SH} -v buildcore-freebsd do-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: head/lang/mecrisp-stellaris/distinfo ============================================================================== --- head/lang/mecrisp-stellaris/distinfo Mon Mar 29 18:14:41 2021 (r569495) +++ head/lang/mecrisp-stellaris/distinfo Mon Mar 29 18:50:27 2021 (r569496) @@ -1,3 +1,3 @@ -TIMESTAMP = 1614603481 -SHA256 (mecrisp-stellaris-2.5.6.tar.gz) = 59459eb6d9b3a6bb02d6c9c09e48bafb6ba633938ff419c0bdc447315cae6e86 -SIZE (mecrisp-stellaris-2.5.6.tar.gz) = 5628263 +TIMESTAMP = 1616415161 +SHA256 (mecrisp-stellaris-2.5.8.tar.gz) = 52d82dc938b4b4b15bba6e77d20112525789e23ac982e464f9ae9274d404784e +SIZE (mecrisp-stellaris-2.5.8.tar.gz) = 5809418