Skip to Content.
Sympa Menu

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

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 (358b46ba81d9c7bfaa4e668b1c7d269ac209ab69)
  • Date: Wed, 8 Feb 2023 02:38:08 +0000

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

fonts-x11/cmvnd-fonts/BUILD | 5 ++---
fonts-x11/cmvnd-fonts/HISTORY | 4 ++++
fonts-x11/cmvnd-fonts/INSTALL | 8 --------
fonts-x11/cmvnd-fonts/Makefile | 20 ++++++++++++++++++++
gnome2-apps/glade3/DETAILS | 4 ++--
gnome2-apps/glade3/HISTORY | 3 +++
gnome2-apps/gnumeric/DETAILS | 4 ++--
gnome2-apps/gnumeric/HISTORY | 3 +++
8 files changed, 36 insertions(+), 15 deletions(-)

New commits:
commit 358b46ba81d9c7bfaa4e668b1c7d269ac209ab69
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

gnumeric 5.12.55

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

cmvnd-fonts: Add Make-based build system

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

glade3 3.40.0

diff --git a/fonts-x11/cmvnd-fonts/BUILD b/fonts-x11/cmvnd-fonts/BUILD
index 07b52d7..ffe0af6 100755
--- a/fonts-x11/cmvnd-fonts/BUILD
+++ b/fonts-x11/cmvnd-fonts/BUILD
@@ -1,3 +1,2 @@
-for f in *.bdf spectrum-fonts/*.bdf; do
- bdftopcf $f | gzip -9 > ${f%%.bdf}.pcf.gz
-done
+ln -s "$SPELL_DIRECTORY"/Makefile . &&
+${MAKE:-make} -j "$MAKE_NJOBS" prefix="$INSTALL_ROOT"/usr
diff --git a/fonts-x11/cmvnd-fonts/HISTORY b/fonts-x11/cmvnd-fonts/HISTORY
index 06b73a7..a41c94c 100644
--- a/fonts-x11/cmvnd-fonts/HISTORY
+++ b/fonts-x11/cmvnd-fonts/HISTORY
@@ -1,2 +1,6 @@
+2023-02-07 Ismael Luceno <ismael AT sourcemage.org>
+ * BUILD, Makefile: added Make-based build system
+ * INSTALL: removed, no longer needed
+
2023-02-05 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS, DEPENDS, BUILD, INSTALL: created spell, version 1.2.0
diff --git a/fonts-x11/cmvnd-fonts/INSTALL b/fonts-x11/cmvnd-fonts/INSTALL
deleted file mode 100755
index 6d2d02e..0000000
--- a/fonts-x11/cmvnd-fonts/INSTALL
+++ /dev/null
@@ -1,8 +0,0 @@
-local PCF_DIR="${INSTALL_ROOT}/usr/share/fonts/X11/misc" &&
-
-if [ ! -d "${PCF_DIR}" ]; then
- mkdir -p "${PCF_DIR}"
-fi &&
-
-install -vm 0644 *.pcf.gz spectrum-fonts/*.pcf.gz "${PCF_DIR}" &&
-install -vm 0644 *.otb spectrum-fonts/*.otb "${PCF_DIR}"
diff --git a/fonts-x11/cmvnd-fonts/Makefile b/fonts-x11/cmvnd-fonts/Makefile
new file mode 100644
index 0000000..d611f3e
--- /dev/null
+++ b/fonts-x11/cmvnd-fonts/Makefile
@@ -0,0 +1,20 @@
+sources != find -name \*.bdf -o -name \*.otb
+fonts := ${sources:.bdf=.pcf.gz}
+all: ${fonts} config.mk
+
+.bdf.pcf.gz:
+ bdftopcf $< | gzip -9 > $@.tmp
+ mv $@.tmp $@
+
+install:
+ install -d ${fontsdir}
+ install -m444 ${fonts} ${fontsdir}
+
+.PHONY: all install
+.SUFFIXES: .pcf.gz .bdf
+prefix = /usr/local
+datarootdir = ${prefix}/share
+fontsdir = ${datarootdir}/fonts/misc
+-include config.mk
+config.mk:
+ @>>$@ echo fontsdir = ${fontsdir}
diff --git a/gnome2-apps/glade3/DETAILS b/gnome2-apps/glade3/DETAILS
index 3a45e97..c48f6a6 100755
--- a/gnome2-apps/glade3/DETAILS
+++ b/gnome2-apps/glade3/DETAILS
@@ -1,11 +1,11 @@
. "$GRIMOIRE"/MESON_FUNCTIONS
SPELL=glade3
- VERSION=3.38.1
+ VERSION=3.40.0
BRANCH=${VERSION%.*}
SOURCE=glade-$VERSION.tar.xz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/glade-$VERSION
SOURCE_URL[0]=$GNOME_URL/sources/glade/$BRANCH/$SOURCE
-
SOURCE_HASH=sha512:ecfe549ae7d2e99e4fdaafbd6ce59a50ae1aa38d14551c38039de5101dee99f947967ea1ed082d57fd8c5b7ef5e60fb410549f47411d89a038abf263f264782b
+
SOURCE_HASH=sha512:6b018f882e9d155a4b2256c0b4c72743f971c8d730a53f16faa240d01e14051f5b6ce04e355dcc78e1679579fb091facaa06acdda6297c5b8efc642c42bb7b4e
LICENSE[0]="GPL"
WEB_SITE=http://glade.gnome.org/
ENTERED=20060506
diff --git a/gnome2-apps/glade3/HISTORY b/gnome2-apps/glade3/HISTORY
index 5d34cca..386b3c6 100644
--- a/gnome2-apps/glade3/HISTORY
+++ b/gnome2-apps/glade3/HISTORY
@@ -1,3 +1,6 @@
+2023-02-07 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 3.40.0
+
2022-05-28 Florian Franzmann <bwlf AT bandrate.org>
* DEPENDS: use MESON_DEPENDS

diff --git a/gnome2-apps/glade3/PRE_BUILD b/gnome2-apps/glade3/PRE_BUILD
old mode 100644
new mode 100755
diff --git a/gnome2-apps/gnumeric/DETAILS b/gnome2-apps/gnumeric/DETAILS
index 9c3c791..b2b8da7 100755
--- a/gnome2-apps/gnumeric/DETAILS
+++ b/gnome2-apps/gnumeric/DETAILS
@@ -1,9 +1,9 @@
SPELL=gnumeric
- VERSION=1.12.53
+ VERSION=1.12.55
SOURCE=$SPELL-$VERSION.tar.xz
BRANCH=`echo $VERSION|cut -d . -f 1,2`
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
-
SOURCE_HASH=sha512:6e9d7b12f9448c75d39985984fac9880c61583fbac10ad9070f5ec7a5bd573874d79e13372d9a185616a5cdb5f53d3f67aeda6ca4bae33e3f5ca0a2160045d7b
+
SOURCE_HASH=sha512:04127a353d5109e3a31d9a3bd42d6d177366cc6c5d900516b4c8a7a8fcaecc71bd4e2e94876719246841070964b393af97988cafbd6313cea135c1757889e878
SOURCE_URL[0]=$GNOME_URL/sources/$SPELL/$BRANCH/$SOURCE
LICENSE[0]=GPL
WEB_SITE=https://projects.gnome.org/gnumeric/
diff --git a/gnome2-apps/gnumeric/HISTORY b/gnome2-apps/gnumeric/HISTORY
index d3c53ba..274da7a 100644
--- a/gnome2-apps/gnumeric/HISTORY
+++ b/gnome2-apps/gnumeric/HISTORY
@@ -1,3 +1,6 @@
+2023-02-07 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 1.12.55
+
2022-09-23 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: updated spell to 1.12.53
* DEPENDS: added version checks



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (358b46ba81d9c7bfaa4e668b1c7d269ac209ab69), Ismael Luceno, 02/07/2023

Archive powered by MHonArc 2.6.24.

Top of Page