Skip to content

Commit 1414916

Browse files
committed
Add additional run-time dependencies of jsonschema
1 parent 0e1c325 commit 1414916

25 files changed

+214
-1
lines changed

build/pkgs/attrs/SPKG.rst

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
attrs
2+
=====
3+
4+
Description
5+
-----------
6+
7+
attrs is the Python package that will bring back the joy of writing classes
8+
by relieving you from the drudgery of implementing object protocols
9+
(aka dunder methods).
10+
11+
License
12+
-------
13+
14+
MIT License
15+
16+
17+
Upstream Contact
18+
----------------
19+
20+
Home page: https://www.attrs.org
21+
22+
Dependencies
23+
------------
24+
25+
Python

build/pkgs/attrs/checksums.ini

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
tarball=attrs-VERSION.tar.gz
2+
sha1=5cad208b39fe854745c35b75f667eaf6400e2720
3+
md5=5b2db50fcc31be34d32798183c9bd062
4+
cksum=2725988683
5+
upstream_url=https://pypi.io/packages/source/a/attrs/attrs-VERSION.tar.gz

build/pkgs/attrs/dependencies

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
$(PYTHON) vcversioner | $(PYTHON_TOOLCHAIN)
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.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
19.3.0

build/pkgs/attrs/spkg-install.in

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
if [ -z "$SAGE_LOCAL" ]; then
2+
echo >&2 "SAGE_LOCAL undefined ... exiting"
3+
echo >&2 "Maybe run 'sage --sh'?"
4+
exit 1
5+
fi
6+
7+
cd src
8+
9+
sdh_pip_install .
10+
11+
if [ $? -ne 0 ]; then
12+
echo "Error installing attrs ... exiting"
13+
exit 1
14+
fi

build/pkgs/attrs/type

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
standard
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
importlib_metadata
2+
==================
3+
4+
Description
5+
-----------
6+
7+
importlib_metadata is a library to access the metadata for a Python package.
8+
It is intended to be ported to Python 3.8.
9+
10+
License
11+
-------
12+
13+
Apache Software License
14+
15+
16+
Upstream Contact
17+
----------------
18+
19+
Home page: http://importlib-metadata.readthedocs.io/
20+
21+
Dependencies
22+
------------
23+
24+
Python, Setuptools, zipp
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
tarball=importlib_metadata-VERSION.tar.gz
2+
sha1=bdb2154fb65f956c30cc2766413215f04120929f
3+
md5=4505ea85600cca1e693a4f8f5dd27ba8
4+
cksum=608862478
5+
upstream_url=https://pypi.io/packages/source/i/importlib_metadata/importlib_metadata-VERSION.tar.gz
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
$(PYTHON) vcversioner | $(PYTHON_TOOLCHAIN)
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.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.7.0

0 commit comments

Comments
 (0)