Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Florian Franzmann (1e55c6b807009b4063613bfc17d5dda257b2d60e)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Florian Franzmann <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Florian Franzmann (1e55c6b807009b4063613bfc17d5dda257b2d60e)
  • Date: Fri, 2 Apr 2021 20:38:40 +0000

GIT changes to master grimoire by Florian Franzmann
<siflfran AT hawo.stw.uni-erlangen.de>:

ChangeLog | 1 +
editors/emacs/CONFIGURE | 5 ++++-
editors/emacs/DEPENDS | 16 +++++++++++-----
editors/emacs/HISTORY | 7 +++++++
graphics-libs/libotf/DEPENDS | 1 +
graphics-libs/libotf/DETAILS | 13 +++++++++++++
graphics-libs/libotf/HISTORY | 3 +++
graphics/imagemagick/DETAILS | 4 ++--
graphics/imagemagick/HISTORY | 3 +++
i18n/m17n-db/DETAILS | 6 +++---
i18n/m17n-db/HISTORY | 3 +++
i18n/m17n-lib/DETAILS | 6 +++---
i18n/m17n-lib/HISTORY | 3 +++
libs/jansson/DETAILS | 4 ++--
libs/jansson/HISTORY | 3 +++
python-pypi/pillow/DETAILS | 4 ++--
python-pypi/pillow/HISTORY | 3 +++
17 files changed, 67 insertions(+), 18 deletions(-)

New commits:
commit 1e55c6b807009b4063613bfc17d5dda257b2d60e
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

graphics/imagemagick: version 7.0.11-5

commit b26dde1af7ec0ef70e1dc206199058bc9b3e8fd8
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

editors/emacs: Add dependency on desktop-file-utils

commit 64375885d0deed9e8e0c0b9e97e04bcbb25e2e59
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

editors/emacs: Add optional dependency on m17n-lib

commit 99f982b0d510fec96d2db4200c78ac188a2b0db0
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

editors/emacs: Make support for wide int configurable

commit 265dbbcae1bac9970394b25ccda1eb8e54b292f1
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

python-pypi/pillow: version 8.2.0

commit 3f317ad9384a492c9c6ef523646e90cd0629e42c
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

i18n/m17n-lib: version 1.8.0

commit e4f41096da78212cd170fcd2ca1138aafd48da9b
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

i18n/m17n-db: version 1.8.0

commit 632fed6715a402b2e60113bfc1b194a9e2827540
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

libs/jansson: version 2.13.1

commit b8ed16b2f88284560fe76d1ceecb2c4a51427915
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

editors/emacs: depend on jansson instead of json-c

commit 4f98a6429eb44843cabda6f5e60d02a6de7e6e67
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

editors/emacs: add optional dependency on libotf

commit 6183732a41f38a7231b851e338f6ac724583c1cb
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

graphics-libs/libotf: new spell, a library for handling otf fonts

diff --git a/ChangeLog b/ChangeLog
index 3ce9d5b..dd8a606 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
2021-04-02 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* graphics-libs/py3cairo: spell deprecated [duplicate spell]
+ * graphics-libs/libotf: new spell, a library for handling otf fonts

2021-03-30 Ismael Luceno <ismael AT sourcemage.org>
* libs/libvdpau-va-gl: new spell, VDPAU driver with OpenGL/VA-API
diff --git a/editors/emacs/CONFIGURE b/editors/emacs/CONFIGURE
index 081abd1..445f623 100755
--- a/editors/emacs/CONFIGURE
+++ b/editors/emacs/CONFIGURE
@@ -2,4 +2,7 @@ config_query_list EMACS_XTOOLKIT "Select the X toolkit:" \
gtk gtk3 lucid motif no &&

config_query_option EMACS_OPTS "Enable dynamic modules support?" n \
- "--with-modules" "--without-modules"
+ "--with-modules" "--without-modules" &&
+
+config_query_option EMACS_OPTS "Enable wide integer support?" y \
+ "--with-wide-int" "--without-wide-int"
diff --git a/editors/emacs/DEPENDS b/editors/emacs/DEPENDS
index d741253..dd39a6f 100755
--- a/editors/emacs/DEPENDS
+++ b/editors/emacs/DEPENDS
@@ -27,6 +27,7 @@ if [[ "$EMACS_XTOOLKIT" != "no" ]]; then
depends libxrandr &&
depends libxinerama &&
depends libxfixes &&
+ depends desktop-file-utils &&

optional_depends "harfbuzz" \
"--with-harfbuzz" \
@@ -78,10 +79,15 @@ if [[ "$EMACS_XTOOLKIT" != "no" ]]; then
"--without-xft" \
"for XFT anti-aliased font support" &&

- #optional_depends libotf \
- # --with-libotf \
- # --without-libotf \
- # "for OpenType font support" &&
+ optional_depends libotf \
+ --with-libotf \
+ --without-libotf \
+ "for OpenType font support" &&
+
+ optional_depends m17n-lib \
+ --with-m17n-flt \
+ --without-m17n-flt \
+ "use m17n-flt for text shaping" &&

optional_depends "cairo" \
"--with-cairo" \
@@ -99,7 +105,7 @@ optional_depends "gmp" \
"--without-gmp" \
"for GMP support" &&

-optional_depends "json-c" \
+optional_depends "jansson" \
"--with-json" \
"--without-json" \
"for json support" &&
diff --git a/editors/emacs/HISTORY b/editors/emacs/HISTORY
index b672aca..090d26a 100644
--- a/editors/emacs/HISTORY
+++ b/editors/emacs/HISTORY
@@ -1,3 +1,10 @@
+2021-04-02 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * DEPENDS: add optional dependency on libotf
+ * DEPENDS: depend on jansson instead of json-c
+ * CONFIGURE: make support for wide int configurable
+ * DEPENDS: add optional dependency on m17n-lib
+ * DEPENDS: add dependency on desktop-file-utils
+
2021-03-14 Ismael Luceno <ismael AT sourcemage.org>
* BUILD: fixed build with -ffast-math

diff --git a/graphics-libs/libotf/DEPENDS b/graphics-libs/libotf/DEPENDS
new file mode 100755
index 0000000..9eea587
--- /dev/null
+++ b/graphics-libs/libotf/DEPENDS
@@ -0,0 +1 @@
+depends gcc
diff --git a/graphics-libs/libotf/DETAILS b/graphics-libs/libotf/DETAILS
new file mode 100755
index 0000000..7b57730
--- /dev/null
+++ b/graphics-libs/libotf/DETAILS
@@ -0,0 +1,13 @@
+ SPELL=libotf
+ VERSION=0.9.16
+ SOURCE="${SPELL}-${VERSION}.tar.gz"
+ SOURCE_URL[0]=http://download.savannah.gnu.org/releases/m17n/${SOURCE}
+
SOURCE_HASH=sha512:0f68c45c1224f02dc0f1a8e9915dd9c1c70d71259b4e2f7bbd4fbec6426e58d4a26e4cbf28dbb8ed051ba6f532f99fc4e74b4ddf97a93ec947fa6260c875d0b4
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE="https://www.nongnu.org/m17n/";
+ LICENSE[0]=LGPL
+ ENTERED=20210402
+ SHORT="a library for handling otf fonts"
+cat << EOF
+A library for handling OpenType fonts.
+EOF
diff --git a/graphics-libs/libotf/HISTORY b/graphics-libs/libotf/HISTORY
new file mode 100644
index 0000000..b6a640f
--- /dev/null
+++ b/graphics-libs/libotf/HISTORY
@@ -0,0 +1,3 @@
+2021-04-02 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * DEPENDS, DETAILS: spell created
+
diff --git a/graphics/imagemagick/DETAILS b/graphics/imagemagick/DETAILS
index d2b0eb6..39b51a6 100755
--- a/graphics/imagemagick/DETAILS
+++ b/graphics/imagemagick/DETAILS
@@ -1,7 +1,7 @@
SPELL=imagemagick
SPELLX=ImageMagick
- VERSION=7.0.11-3
-
SOURCE_HASH=sha512:76746e48885231cc37cde782c00172b1675afc1ac004818fbdbc05a545eb93853b38ea8db1e6e1db59139ade53c5228292b75d7ad631fb7c00fcb4ea77f489f8
+ VERSION=7.0.11-5
+
SOURCE_HASH=sha512:4b977be2b317f57e433aef040a02d277db3a854cc390c1cd21eadd1b0d5c8c3fc9946310ebde127289d104a19f345a4dc84c907b93b83ff8293b227ac259f475
SECURITY_PATCH=6
SOURCE=$SPELLX-$VERSION.tar.gz
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELLX-$VERSION"
diff --git a/graphics/imagemagick/HISTORY b/graphics/imagemagick/HISTORY
index 7c4de51..c08afc1 100644
--- a/graphics/imagemagick/HISTORY
+++ b/graphics/imagemagick/HISTORY
@@ -1,3 +1,6 @@
+2021-04-02 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * DETAILS: version 7.0.11-5
+
2021-03-13 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DETAILS: version 7.0.11-3

diff --git a/i18n/m17n-db/DETAILS b/i18n/m17n-db/DETAILS
index ab5eb14..58da021 100755
--- a/i18n/m17n-db/DETAILS
+++ b/i18n/m17n-db/DETAILS
@@ -1,8 +1,8 @@
SPELL=m17n-db
- VERSION=1.5.4
+ VERSION=1.8.0
SOURCE="${SPELL}-${VERSION}.tar.gz"
- SOURCE_URL[0]="http://www.m17n.org/m17n-lib-download/${SOURCE}";
-
SOURCE_HASH=sha512:32a13eccf8335999c2b42c13f3d77e54087280bf2235447343bd16da71fe3e60a7bf8698d04d2e49ac227246219a0386320bbc995e78b50f43c01778796f9b4f
+ SOURCE_URL[0]="http://download.savannah.gnu.org/releases/m17n/${SOURCE}";
+
SOURCE_HASH=sha512:b21abfdcb5eb42e71fbd5edd1a99eca4a05df14f5a57eac7cdd3dc657337bd143a419f4b3f3dd0b74b82c827ede4d3666dd213af9041593cef50118ee43898d5
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
WEB_SITE="http://www.m17n.org/m17n-lib-en/";
LICENSE[0]=GPL
diff --git a/i18n/m17n-db/HISTORY b/i18n/m17n-db/HISTORY
index 3355afe..ac9a8a0 100644
--- a/i18n/m17n-db/HISTORY
+++ b/i18n/m17n-db/HISTORY
@@ -1,3 +1,6 @@
+2021-04-02 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * DETAILS: version 1.8.0
+
2009-05-24 Justin Boffemmyer <flux AT sourcemage.org>
* DETAILS: updated to 1.5.4

diff --git a/i18n/m17n-lib/DETAILS b/i18n/m17n-lib/DETAILS
index 29fd104..1f7fb49 100755
--- a/i18n/m17n-lib/DETAILS
+++ b/i18n/m17n-lib/DETAILS
@@ -1,8 +1,8 @@
SPELL=m17n-lib
- VERSION=1.5.4
+ VERSION=1.8.0
SOURCE="${SPELL}-${VERSION}.tar.gz"
- SOURCE_URL[0]="http://www.m17n.org/m17n-lib-download/${SOURCE}";
-
SOURCE_HASH=sha512:8a0a350acb12abf71fc3641dab14a3a5d8e5afc09c71fda0508ded0d989ba835ad467ab4ef3460150e3aaee8ad5c84f55d31e2e1b1514703e3918504e6dca3f0
+ SOURCE_URL[0]=http://download.savannah.gnu.org/releases/m17n/${SOURCE}
+
SOURCE_HASH=sha512:8aba862888393232172c03cdf52531e29ea969c4327e6f69879ecf7438eafee32782f509ec292b3e1b7cd3202e2764984d7a59e85cdb87a7c8bfcbac5b0ee6fd
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
WEB_SITE="http://www.m17n.org/m17n-lib-en/";
LICENSE[0]=GPL
diff --git a/i18n/m17n-lib/HISTORY b/i18n/m17n-lib/HISTORY
index 6d73b39..92109bc 100644
--- a/i18n/m17n-lib/HISTORY
+++ b/i18n/m17n-lib/HISTORY
@@ -1,3 +1,6 @@
+2021-04-02 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * DETAILS: version 1.8.0
+
2010-10-21 Bor Kraljič <pyrobor AT ver.si>
* DEPENDS: fixed optional_depends to libxft

diff --git a/libs/jansson/DETAILS b/libs/jansson/DETAILS
index d900906..f5919a8 100755
--- a/libs/jansson/DETAILS
+++ b/libs/jansson/DETAILS
@@ -1,6 +1,6 @@
SPELL=jansson
- VERSION=2.12
-
SOURCE_HASH=sha512:6ed665a441c789cdf7eb22b6e69d02575746c81b00e0a81ced90d30aaf2badc93fac32e5841fd4e07751a27726a327a63fe28bb0689c6bef5b6164b435bbc30d
+ VERSION=2.13.1
+
SOURCE_HASH=sha512:057f0eda43e4162569888d739f4d78d1d02fce8359400d8f66fdc6e440b0405cb457e1126820dc8ce51e9c4a7f4b7effc640caf1d54307c78c0c47c3fc093011
SOURCE="${SPELL}-${VERSION}.tar.bz2"
SOURCE_URL[0]=http://www.digip.org/${SPELL}/releases/${SOURCE}
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
diff --git a/libs/jansson/HISTORY b/libs/jansson/HISTORY
index a595eab..da0b23b 100644
--- a/libs/jansson/HISTORY
+++ b/libs/jansson/HISTORY
@@ -1,3 +1,6 @@
+2021-04-02 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * DETAILS: version 2.13.1
+
2018-12-15 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: version 2.12, fixed long description

diff --git a/python-pypi/pillow/DETAILS b/python-pypi/pillow/DETAILS
index 22de6f6..07374ca 100755
--- a/python-pypi/pillow/DETAILS
+++ b/python-pypi/pillow/DETAILS
@@ -1,9 +1,9 @@
SPELL=pillow
SPELLX=Pillow
- VERSION=8.1.2
+ VERSION=8.2.0
SOURCE="${SPELLX}-${VERSION}.tar.gz"

SOURCE_URL[0]=https://github.com/python-pillow/Pillow/archive/$VERSION.tar.gz
-
SOURCE_HASH=sha512:32ffedf8cc8f2c21c241f41938d0521626ea05206d1a762305ac38abedecdf9bc8a6e5e2ded7565340e54797a4395acefb3b4d939ebdde8fc9583a1998bae34d
+
SOURCE_HASH=sha512:40e97a54689ca04349d17b69b0e95bb3ef4fde0b60c6c55a2ec76034a5c2a9ebee0b310f68de1636db08786d9b2ad444bf10ac3b42a31404847cc165aa8392ac
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELLX}-${VERSION}"
WEB_SITE="https://python-pillow.org/";
LICENSE[0]=PIL
diff --git a/python-pypi/pillow/HISTORY b/python-pypi/pillow/HISTORY
index 71e052e..fc7278d 100644
--- a/python-pypi/pillow/HISTORY
+++ b/python-pypi/pillow/HISTORY
@@ -1,3 +1,6 @@
+2021-04-02 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * DETAILS: version 8.2.0
+
2021-03-14 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DETAILS: version 8.1.2




  • [SM-Commit] GIT changes to master grimoire by Florian Franzmann (1e55c6b807009b4063613bfc17d5dda257b2d60e), Florian Franzmann, 04/02/2021

Archive powered by MHonArc 2.6.24.

Top of Page