scipy: disable recipe for now. (#10720)

* noteshrink: fix missing executable permision.

Forgot to do this when combined the "sed" + "cp" lines I had before.

* scipy: disable recipe to avoid future hangs on the buildmasters.
This commit is contained in:
OscarL
2024-07-21 14:07:48 -03:00
committed by GitHub
parent 4b1f211148
commit c70561db3c
2 changed files with 5 additions and 4 deletions

View File

@@ -11,14 +11,14 @@ HOMEPAGE="https://www.scipy.org/"
COPYRIGHT=" 2001-2002 Enthought, Inc. COPYRIGHT=" 2001-2002 Enthought, Inc.
2003-2021 SciPy Developers" 2003-2021 SciPy Developers"
LICENSE="BSD (3-clause)" LICENSE="BSD (3-clause)"
REVISION="5" REVISION="6"
SOURCE_URI="https://github.com/scipy/scipy/releases/download/v$portVersion/scipy-$portVersion.tar.xz" SOURCE_URI="https://github.com/scipy/scipy/releases/download/v$portVersion/scipy-$portVersion.tar.xz"
CHECKSUM_SHA256="3851fdcb1e6877241c3377aa971c85af0d44f90c57f4dd4e54e1b2bbd742635e" CHECKSUM_SHA256="3851fdcb1e6877241c3377aa971c85af0d44f90c57f4dd4e54e1b2bbd742635e"
SOURCE_DIR="scipy-$portVersion" SOURCE_DIR="scipy-$portVersion"
PATCHES="scipy-$portVersion.patchset" PATCHES="scipy-$portVersion.patchset"
ARCHITECTURES="all !x86_gcc2" ARCHITECTURES="?all !x86_gcc2"
SECONDARY_ARCHITECTURES="x86" SECONDARY_ARCHITECTURES="?x86"
PROVIDES=" PROVIDES="
$portName = $portVersion $portName = $portVersion

View File

@@ -3,7 +3,7 @@ DESCRIPTION="Noteshrink is an utility that is used to convert scans of notes to
HOMEPAGE="https://mzucker.github.io/2016/09/20/noteshrink.html" HOMEPAGE="https://mzucker.github.io/2016/09/20/noteshrink.html"
COPYRIGHT="2016 Matt Zucker" COPYRIGHT="2016 Matt Zucker"
LICENSE="MIT" LICENSE="MIT"
REVISION="2" REVISION="3"
SOURCE_URI="https://github.com/mzucker/noteshrink/archive/$portVersion.tar.gz" SOURCE_URI="https://github.com/mzucker/noteshrink/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="2a29c09768973e688b693b61337c6c49384e8123cf88824dba335cc8c4ed2ca8" CHECKSUM_SHA256="2a29c09768973e688b693b61337c6c49384e8123cf88824dba335cc8c4ed2ca8"
@@ -39,6 +39,7 @@ INSTALL()
{ {
mkdir -p $binDir mkdir -p $binDir
sed 's|#!/usr/bin/env python|#!/bin/python3|' noteshrink.py > $binDir/noteshrink sed 's|#!/usr/bin/env python|#!/bin/python3|' noteshrink.py > $binDir/noteshrink
chmod +x $binDir/noteshrink
} }