Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (ca2ed954d99bd5424821c8001f720447383d0056)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pavel Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (ca2ed954d99bd5424821c8001f720447383d0056)
  • Date: Fri, 17 Sep 2021 01:33:05 +0000

GIT changes to master grimoire by Pavel Vinogradov <public AT sourcemaage.org>:

ChangeLog | 6 ++++++
python-pypi/python-cryptography/BUILD | 2 ++
python-pypi/python-cryptography/DEPENDS | 12 ++++++------
python-pypi/python-cryptography/DETAILS | 4 ++--
python-pypi/python-cryptography/HISTORY | 5 +++++
python-pypi/semantic_version/DEPENDS | 1 +
python-pypi/semantic_version/DETAILS | 14 ++++++++++++++
python-pypi/semantic_version/HISTORY | 3 +++
python-pypi/setuptools-rust/BUILD | 1 +
python-pypi/setuptools-rust/DEPENDS | 4 ++++
python-pypi/setuptools-rust/DETAILS | 17 +++++++++++++++++
python-pypi/setuptools-rust/HISTORY | 3 +++
python-pypi/setuptools/DETAILS | 4 ++--
python-pypi/setuptools/HISTORY | 3 +++
python-pypi/wheel/BUILD | 1 +
python-pypi/wheel/DEPENDS | 2 ++
python-pypi/wheel/DETAILS | 22 ++++++++++++++++++++++
python-pypi/wheel/HISTORY | 3 +++
18 files changed, 97 insertions(+), 10 deletions(-)

New commits:
commit ca2ed954d99bd5424821c8001f720447383d0056
Author: Pavel Vinogradov <public AT sourcemaage.org>
Commit: Pavel Vinogradov <public AT sourcemaage.org>

python-pypi/python-cryptography: version 3.4.8

commit b034a4093e7541918431b884e0312e7fe1446e39
Author: Pavel Vinogradov <public AT sourcemaage.org>
Commit: Pavel Vinogradov <public AT sourcemaage.org>

python-pypi/semantic_version: new spell, a library implementing the
'SemVer' scheme

commit 249dd489835e37e115d9e163dc4cca973889ff30
Author: Pavel Vinogradov <public AT sourcemaage.org>
Commit: Pavel Vinogradov <public AT sourcemaage.org>

python-pypi/setuptools-rust: new spell, setuptools plugin for Rust
extensions

commit 65cad209421f6c17d9e500bf89cca83f41b01d60
Author: Pavel Vinogradov <public AT sourcemaage.org>
Commit: Pavel Vinogradov <public AT sourcemaage.org>

python-pypi/wheel: new spell, a built-package format for Python

commit f101d27b4c827f800d33e0636b3623722ad04023
Author: Pavel Vinogradov <public AT sourcemaage.org>
Commit: Pavel Vinogradov <public AT sourcemaage.org>

python-pypi/setuptools: version 58.0.4

diff --git a/ChangeLog b/ChangeLog
index a1bd9cd..3a616e2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2021-09-16 Pavel Vinogradov <public AT sourcemage.org>
+ * python-pypi/wheel: new spell, a built-package format for Python
+ * python-pypi/setuptools-rust: new spell, setuptools plugin for Rust
extensions
+ * python-pypi/semantic_version: new spell, a library implementing the
'SemVer'
+ scheme
+
2021-09-16 Treeve Jelbert <treeve AT sourcemage.org>
* xorg.gpg: add "Povilas Kanapickas <povilas AT radix.lt>"

diff --git a/python-pypi/python-cryptography/BUILD
b/python-pypi/python-cryptography/BUILD
new file mode 100755
index 0000000..da64be9
--- /dev/null
+++ b/python-pypi/python-cryptography/BUILD
@@ -0,0 +1,2 @@
+export CRYPTOGRAPHY_DONT_BUILD_RUST=1 &&
+default_build_python3
diff --git a/python-pypi/python-cryptography/DEPENDS
b/python-pypi/python-cryptography/DEPENDS
index 19de592..9f799d5 100755
--- a/python-pypi/python-cryptography/DEPENDS
+++ b/python-pypi/python-cryptography/DEPENDS
@@ -1,11 +1,11 @@
-depends PYTHON &&
+depends python3 &&
depends pycparser &&
+depends semantic_version &&
depends SSL &&
depends SETUPTOOLS &&
depends cffi &&
-depends pyasn1 &&
-depends six &&
+depends pyasn1

-if is_depends_enabled $SPELL python; then
- depends enum34
-fi
+# Future versions may require these
+#depends rust &&
+#depends setuptools-rust
diff --git a/python-pypi/python-cryptography/DETAILS
b/python-pypi/python-cryptography/DETAILS
index 1003d01..78bcbc7 100755
--- a/python-pypi/python-cryptography/DETAILS
+++ b/python-pypi/python-cryptography/DETAILS
@@ -1,10 +1,10 @@
SPELL=python-cryptography
SPELLX=cryptography
- VERSION=3.3.2
+ VERSION=3.4.8
+
SOURCE_HASH=sha512:b0d64a573b488af3e453fc1885bbafb65f8a2260e81cf64830f981589afca0bd7be052a5f5b8ed83dd78d9638da37c680f3705cbf2d47d5b28fb5a5454f1cea5
SECURITY_PATCH=1
SOURCE=$SPELLX-$VERSION.tar.gz
SOURCE_URL[0]=https://pypi.io/packages/source/c/$SPELLX/$SOURCE
-
SOURCE_HASH=sha512:55f6ee13342b3209b1fcb310f4c4d33d22856ee785cb2347e6ad36c34e9b42f6e0d5bece8e458b09663a5b78e34c4567fe7a211b51ca71f55ccc93e3f62dc5e4
SOURCE_HINTS="no-check-certificate"
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELLX-$VERSION"
LICENSE[0]=BSD
diff --git a/python-pypi/python-cryptography/HISTORY
b/python-pypi/python-cryptography/HISTORY
index e15b99c..fd71381 100644
--- a/python-pypi/python-cryptography/HISTORY
+++ b/python-pypi/python-cryptography/HISTORY
@@ -1,3 +1,8 @@
+2021-09-16 Pavel Vinogradov <public AT sourcemage.org>
+ * DETAILS: version 3.4.8
+ * BUILD: added to disable rust requirement
+ * DEPENDS: PYTHON -> python3, added semantic_version and commented
rust deps
+
2021-05-11 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 3.3.2
* DEPENDS: return back global PYTHON
diff --git a/python-pypi/semantic_version/DEPENDS
b/python-pypi/semantic_version/DEPENDS
new file mode 100755
index 0000000..e4ea57a
--- /dev/null
+++ b/python-pypi/semantic_version/DEPENDS
@@ -0,0 +1 @@
+depends PYTHON
diff --git a/python-pypi/semantic_version/DETAILS
b/python-pypi/semantic_version/DETAILS
new file mode 100755
index 0000000..3c5df20
--- /dev/null
+++ b/python-pypi/semantic_version/DETAILS
@@ -0,0 +1,14 @@
+ SPELL=semantic_version
+ VERSION=2.8.5
+
SOURCE_HASH=sha512:2ab59024c148239d78de062ff3a357f81a33fd066b6be8b6f9ef0753841a4945829b1c11899cfbda6c3ff09e00aa3b689e1fb6f8b9a92bbb3c2a62dd713b6049
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE_URL[0]=https://pypi.io/packages/source/s/${SPELL}/${SOURCE}
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ WEB_SITE=https://github.com/rbarrois/python-semanticversion
+ LICENSE[0]="BSD"
+ ENTERED=20210916
+ SHORT="A library implementing the 'SemVer' scheme"
+cat << EOF
+This small python library provides a few tools to handle SemVer in Python.
+It follows strictly the 2.0.0 version of the SemVer scheme.
+EOF
diff --git a/python-pypi/semantic_version/HISTORY
b/python-pypi/semantic_version/HISTORY
new file mode 100644
index 0000000..87a0cb3
--- /dev/null
+++ b/python-pypi/semantic_version/HISTORY
@@ -0,0 +1,3 @@
+2021-09-16 Pavel Vinogradov <public AT sourcemage.org>
+ * DEPENDS, DETAILS: created
+
diff --git a/python-pypi/setuptools-rust/BUILD
b/python-pypi/setuptools-rust/BUILD
new file mode 100755
index 0000000..78e28e3
--- /dev/null
+++ b/python-pypi/setuptools-rust/BUILD
@@ -0,0 +1 @@
+default_build_python3
diff --git a/python-pypi/setuptools-rust/DEPENDS
b/python-pypi/setuptools-rust/DEPENDS
new file mode 100755
index 0000000..f3b7022
--- /dev/null
+++ b/python-pypi/setuptools-rust/DEPENDS
@@ -0,0 +1,4 @@
+depends python3 &&
+depends python-toml &&
+depends setuptools &&
+depends wheel
diff --git a/python-pypi/setuptools-rust/DETAILS
b/python-pypi/setuptools-rust/DETAILS
new file mode 100755
index 0000000..fb16e34
--- /dev/null
+++ b/python-pypi/setuptools-rust/DETAILS
@@ -0,0 +1,17 @@
+ SPELL=setuptools-rust
+ VERSION=0.12.1
+
SOURCE_HASH=sha512:02dc2e2c91533ae847cfe7be0e7b0816fb376405f979c9767ba415c0223aa57429f1c038eb6c06ac9ec3950738b55026fbc6d4c8a8d938cf58a975d40d84cdb8
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE_URL[0]=https://pypi.io/packages/source/s/${SPELL}/${SOURCE}
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ WEB_SITE=https://github.com/PyO3/setuptools-rust
+ LICENSE[0]="MIT"
+ ENTERED=20210916
+ SHORT="Setuptools plugin for Rust extensions"
+cat << EOF
+setuptools-rust is a plugin for setuptools to build Rust Python extensions
+implemented with PyO3 or rust-cpython.
+
+Compile and distribute Python extensions written in Rust as easily as if
+they were written in C.
+EOF
diff --git a/python-pypi/setuptools-rust/HISTORY
b/python-pypi/setuptools-rust/HISTORY
new file mode 100644
index 0000000..94600a2
--- /dev/null
+++ b/python-pypi/setuptools-rust/HISTORY
@@ -0,0 +1,3 @@
+2021-09-16 Pavel Vinogradov <public AT sourcemage.org>
+ * BUILD, DEPENDS, DETAILS: created
+
diff --git a/python-pypi/setuptools/DETAILS b/python-pypi/setuptools/DETAILS
index f43defc..5dfba90 100755
--- a/python-pypi/setuptools/DETAILS
+++ b/python-pypi/setuptools/DETAILS
@@ -1,6 +1,6 @@
SPELL=setuptools
- VERSION=57.4.0
-
SOURCE_HASH=sha512:7fcc297ea3e6310f2ec8ba5bf0d509e3f4acbce6bde7e5f0fe1b022c147cf88a047471bd4aa278724e86ebc6be800015fb935c7a31dbb6a0801a2d380ddd89f2
+ VERSION=58.0.4
+
SOURCE_HASH=sha512:dedef56118025026d7245e695f729ca9c41e66fe16947910ae27965d3f9666b1806438b94fb38ebf2e523d9799d0a57e2518ef56a708916cc9e65d27250bd199
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=https://pypi.io/packages/source/s/${SPELL}/${SOURCE}
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
diff --git a/python-pypi/setuptools/HISTORY b/python-pypi/setuptools/HISTORY
index 83f40d6..f7d9598 100644
--- a/python-pypi/setuptools/HISTORY
+++ b/python-pypi/setuptools/HISTORY
@@ -1,3 +1,6 @@
+2021-09-16 Pavel Vinogradov <public AT sourcemage.org>
+ * DETAILS: version 58.0.4
+
2021-07-25 Florian Franzmann <bwlf AT bandrate.org>
* DETAILS: version 57.4.0

diff --git a/python-pypi/wheel/BUILD b/python-pypi/wheel/BUILD
new file mode 100755
index 0000000..78e28e3
--- /dev/null
+++ b/python-pypi/wheel/BUILD
@@ -0,0 +1 @@
+default_build_python3
diff --git a/python-pypi/wheel/DEPENDS b/python-pypi/wheel/DEPENDS
new file mode 100755
index 0000000..dc490e8
--- /dev/null
+++ b/python-pypi/wheel/DEPENDS
@@ -0,0 +1,2 @@
+depends python3 &&
+depends setuptools
diff --git a/python-pypi/wheel/DETAILS b/python-pypi/wheel/DETAILS
new file mode 100755
index 0000000..55708c6
--- /dev/null
+++ b/python-pypi/wheel/DETAILS
@@ -0,0 +1,22 @@
+ SPELL=wheel
+ VERSION=0.37.0
+
SOURCE_HASH=sha512:3e0eda4284787ae00155d48a0ba13e62131143dbe53a982b783235c3ad62a203e9527c6c812361a39cad6b5e4527e85f2255ff7c9b94c476304c8c0d776887ea
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE_URL[0]=https://pypi.io/packages/source/w/${SPELL}/${SOURCE}
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ WEB_SITE=https://github.com/pypa/wheel
+ LICENSE[0]="MIT"
+ ENTERED=20210916
+ SHORT="A built-package format for Python"
+cat << EOF
+This library is the reference implementation of the Python wheel packaging
+standard, as defined in PEP 427.
+
+It has two different roles:
+ A setuptools extension for building wheels that provides the bdist_wheel
+ setuptools command
+ A command line tool for working with wheel files
+
+It should be noted that wheel is not intended to be used as a library, and as
+such there is no stable, public API.
+EOF
diff --git a/python-pypi/wheel/HISTORY b/python-pypi/wheel/HISTORY
new file mode 100644
index 0000000..94600a2
--- /dev/null
+++ b/python-pypi/wheel/HISTORY
@@ -0,0 +1,3 @@
+2021-09-16 Pavel Vinogradov <public AT sourcemage.org>
+ * BUILD, DEPENDS, DETAILS: created
+



  • [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (ca2ed954d99bd5424821c8001f720447383d0056), Pavel Vinogradov, 09/16/2021

Archive powered by MHonArc 2.6.24.

Top of Page