Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (96e787d067141661288bf3cbb95a33ca31849d12)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (96e787d067141661288bf3cbb95a33ca31849d12)
  • Date: Wed, 21 Dec 2022 20:44:06 +0000

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

python-pypi/python-icalendar/DETAILS | 6 +-
python-pypi/python-icalendar/HISTORY | 3 +
python-pypi/pytz/DETAILS | 4 -
python-pypi/pytz/HISTORY | 4 +
python-pypi/pytz/patches/pytz-2020.5-system-zoneinfo.patch | 33
-------------
5 files changed, 12 insertions(+), 38 deletions(-)

New commits:
commit 96e787d067141661288bf3cbb95a33ca31849d12
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

pytz 2022.7

commit 9280e220c212dde8f962a53a0d456d3e761d4416
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

python-icalendar 5.0.3

diff --git a/python-pypi/python-icalendar/DETAILS
b/python-pypi/python-icalendar/DETAILS
index 01e05ae..5a3a652 100755
--- a/python-pypi/python-icalendar/DETAILS
+++ b/python-pypi/python-icalendar/DETAILS
@@ -1,8 +1,8 @@
SPELL=python-icalendar
- VERSION=4.1.0
+ VERSION=5.0.3
SOURCE="${SPELL#python-}-${VERSION}.tar.gz"
-
SOURCE_URL[0]=https://github.com/collective/icalendar/archive/refs/tags/${VERSION}.tar.gz
-
SOURCE_HASH=sha512:a59c84f1376749d06d42a66f49af9ad7521cb8a0751c86fc3bffbda0bc2932936d1ebc44d73498156f702d92279b3c5e085a0ab2f528799116da6e2b4c40ebff
+
SOURCE_URL[0]=https://github.com/collective/icalendar/archive/refs/tags/v${VERSION}.tar.gz
+
SOURCE_HASH=sha512:3e26a4843cd7e5974bbf013d147f13822ba2113a14af5d1e258e657f76fc7a91536c4ddce8bbfb33fb90e138625e983e26d9d7b5ee15f7d6efb9c9d248f593df
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SOURCE%.tar.gz}"
WEB_SITE="https://icalendar.readthedocs.io/";
LICENSE[0]="BSD-2-Clause"
diff --git a/python-pypi/python-icalendar/HISTORY
b/python-pypi/python-icalendar/HISTORY
index cf01626..c505d77 100644
--- a/python-pypi/python-icalendar/HISTORY
+++ b/python-pypi/python-icalendar/HISTORY
@@ -1,2 +1,5 @@
+2022-12-21 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 5.0.3
+
2022-08-18 Ismael Luceno <ismael AT sourcemage.org>
* DEPENDS, DETAILS: spell created
diff --git a/python-pypi/pytz/DETAILS b/python-pypi/pytz/DETAILS
index 4c1d8d3..2c1cab1 100755
--- a/python-pypi/pytz/DETAILS
+++ b/python-pypi/pytz/DETAILS
@@ -1,8 +1,8 @@
SPELL=pytz
- VERSION=2021.3
+ VERSION=2022.7
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=https://pypi.io/packages/source/p/${SPELL}/${SOURCE}
-
SOURCE_HASH=sha512:c45099f319592976b7715d9973496a2c7438a1b958ef8b90a1ad1fb97e7035624fe6191796727d4b7edf3236271bea4d864e25d1d92431e8cf767ac798448882
+
SOURCE_HASH=sha512:48bad8a88e124c0935bf307713659228100c5c38230b3ee7f0aa92e46a1a305c4cebef388208dc7090ba59f51c4816f78789a091d69541615e885a9ad61c475b
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
WEB_SITE=http://pytz.sourceforge.net/
LICENSE[0]=BSD
diff --git a/python-pypi/pytz/HISTORY b/python-pypi/pytz/HISTORY
index d22824a..ab4d341 100644
--- a/python-pypi/pytz/HISTORY
+++ b/python-pypi/pytz/HISTORY
@@ -1,3 +1,7 @@
+2022-12-21 Ismael Luceno <ismael AT sourcemage.org>
+ * patches/pytz-2020.5-system-zoneinfo.patch: removed, no longer needed
+ * DETAILS: updated spell to 2022.7
+
2021-10-02 Florian Franzmann <bwlf AT bandrate.org>
* DETAILS: version 2021.3

diff --git a/python-pypi/pytz/patches/pytz-2020.5-system-zoneinfo.patch
b/python-pypi/pytz/patches/pytz-2020.5-system-zoneinfo.patch
deleted file mode 100644
index 94bad7e..0000000
--- a/python-pypi/pytz/patches/pytz-2020.5-system-zoneinfo.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-diff --git a/pytz/__init__.py b/pytz/__init__.py
-index a1f75b6..f2a2330 100644
---- a/pytz/__init__.py
-+++ b/pytz/__init__.py
-@@ -92,8 +92,7 @@ def open_resource(name):
- if zoneinfo_dir is not None:
- filename = os.path.join(zoneinfo_dir, *name_parts)
- else:
-- filename = os.path.join(os.path.dirname(__file__),
-- 'zoneinfo', *name_parts)
-+ filename = os.path.join('/usr/share/zoneinfo', *name_parts)
- if not os.path.exists(filename):
- # http://bugs.launchpad.net/bugs/383171 - we avoid using this
- # unless absolutely necessary to help when a broken version of
-diff --git a/setup.py b/setup.py
-index e31ff2b..ba6926b 100644
---- a/setup.py
-+++ b/setup.py
-@@ -15,14 +15,8 @@ me = 'Stuart Bishop'
- memail = 'stuart AT stuartbishop.net'
- packages = ['pytz']
- resources = ['zone.tab', 'locales/pytz.pot']
--for dirpath, dirnames, filenames in os.walk(os.path.join('pytz',
'zoneinfo')):
-- # remove the 'pytz' part of the path
-- basepath = dirpath.split(os.path.sep, 1)[1]
-- resources.extend([os.path.join(basepath, filename) for filename in
filenames])
- package_data = {'pytz': resources}
-
--assert len(resources) > 10, 'zoneinfo files not found!'
--
- setup(
- name='pytz',
- version=pytz.VERSION,



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (96e787d067141661288bf3cbb95a33ca31849d12), Ismael Luceno, 12/21/2022

Archive powered by MHonArc 2.6.24.

Top of Page