Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 55f9e9d

Browse files
committed
Add appnope package
1 parent f5c0b16 commit 55f9e9d

File tree

7 files changed

+27
-1
lines changed

7 files changed

+27
-1
lines changed

build/pkgs/appnope/SPKG.txt

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
= appnope =
2+
3+
== Description ==
4+
5+
Disable App Nap on OS X 10.9

build/pkgs/appnope/checksums.ini

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
tarball=appnope-VERSION.tar.gz
2+
sha1=838158bf881f3e8538b7bfeff4ad289a6623cdda
3+
md5=932fbaa73792c9b06754755a774dcac5
4+
cksum=4167491137

build/pkgs/appnope/dependencies

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
$(PYTHON) | pip
2+
3+
----------
4+
All lines of this file are ignored except the first.
5+
It is copied by SAGE_ROOT/build/make/install into SAGE_ROOT/build/make/Makefile.
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.1.0

build/pkgs/appnope/spkg-install

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env bash
2+
3+
cd src
4+
5+
# Only install this package on OS X
6+
if python -c 'from sys import *; exit(0 if platform == "darwin" else 1)'; then
7+
$PIP_INSTALL . || exit $?
8+
else
9+
echo "Not OS X, skipping installation of package 'appnope'"
10+
fi

build/pkgs/appnope/type

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
standard

build/pkgs/ipython/dependencies

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$(PYTHON) jinja2 tornado pyzmq pickleshare simplegeneric traitlets | pip backports_shutil_get_terminal_size wcwidth prompt_toolkit pygments pexpect
1+
$(PYTHON) jinja2 tornado pyzmq pickleshare simplegeneric traitlets | pip backports_shutil_get_terminal_size wcwidth prompt_toolkit pygments pexpect appnope
22

33
----------
44
All lines of this file are ignored except the first.

0 commit comments

Comments
 (0)