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

@@ -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"
COPYRIGHT="2016 Matt Zucker"
LICENSE="MIT"
REVISION="2"
REVISION="3"
SOURCE_URI="https://github.com/mzucker/noteshrink/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="2a29c09768973e688b693b61337c6c49384e8123cf88824dba335cc8c4ed2ca8"
@@ -39,6 +39,7 @@ INSTALL()
{
mkdir -p $binDir
sed 's|#!/usr/bin/env python|#!/bin/python3|' noteshrink.py > $binDir/noteshrink
chmod +x $binDir/noteshrink
}