Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (27dc53f16e2123f780250232d19fde934c989528)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Treeve Jelbert <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (27dc53f16e2123f780250232d19fde934c989528)
  • Date: Fri, 19 Jan 2024 16:48:48 +0000

GIT changes to master grimoire by Treeve Jelbert <treeve AT sourcemage.org>:

graphics-libs/ftgl/BUILD | 3 ---
graphics-libs/ftgl/CONFIGURE | 1 +
graphics-libs/ftgl/DEPENDS | 13 ++++---------
graphics-libs/ftgl/DETAILS | 11 ++++++-----
graphics-libs/ftgl/HISTORY | 7 +++++++
graphics-libs/ftgl/PRE_BUILD | 3 ++-
libs/gwenhywfar/DETAILS | 6 +++---
libs/gwenhywfar/HISTORY | 6 ++++++
python-pypi/psutil/DETAILS | 4 ++--
python-pypi/psutil/HISTORY | 3 +++
xorg-proto/wayland-protocols/DETAILS | 2 +-
xorg-proto/wayland-protocols/HISTORY | 3 +++
12 files changed, 38 insertions(+), 24 deletions(-)

New commits:
commit 27dc53f16e2123f780250232d19fde934c989528
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

wayland-protocols: => 1.33

commit d71246776b8446968db52d4057ec5741e2b86ed5
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

ftgl - use cmake , fix build

commit ddce1529047218f719c2060d72b200869a77b6dc
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

ftgl: => 2.4.0

commit 51a669d4930e9438eed976601842644704d410fd
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

gwenhywfar: => 5.10.2

commit aa34bae13806674ae50297bbaf9a8ec761524c04
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

psutil: => 5.9.7

diff --git a/graphics-libs/ftgl/BUILD b/graphics-libs/ftgl/BUILD
deleted file mode 100755
index 24627a3..0000000
--- a/graphics-libs/ftgl/BUILD
+++ /dev/null
@@ -1,3 +0,0 @@
-OPTS+=" --with-gl-inc=/usr/include" &&
-LIBS+=" -lm -lGL -lGLU" &&
-default_build
diff --git a/graphics-libs/ftgl/CONFIGURE b/graphics-libs/ftgl/CONFIGURE
new file mode 100755
index 0000000..b2f02c3
--- /dev/null
+++ b/graphics-libs/ftgl/CONFIGURE
@@ -0,0 +1 @@
+source $GRIMOIRE/CMAKE_CONFIGURE
diff --git a/graphics-libs/ftgl/DEPENDS b/graphics-libs/ftgl/DEPENDS
index 46b8ea2..7e35864 100755
--- a/graphics-libs/ftgl/DEPENDS
+++ b/graphics-libs/ftgl/DEPENDS
@@ -1,14 +1,9 @@
+source $GRIMOIRE/CMAKE_DEPENDS
depends bzip2 &&
depends -sub CXX gcc &&
depends freetype2 &&
depends libxext &&
depends zlib &&
-optional_depends doxygen \
- '' ac_cv_path_DOXYGEN=no \
- 'to build API documentation (HTML)' &&
-optional_depends texlive \
- '' ac_cv_path_LATEX=no \
- 'to build documentation (PDFs)' &&
-optional_depends GLUT \
- '' ac_cv_header_GL_glut_h=no \
- 'to build a demo program'
+optional_depends doxygen '' '' 'build API documentation (HTML)' &&
+optional_depends texlive '' '' 'build documentation (PDFs)' &&
+optional_depends GLUT '' '' 'build a demo program'
diff --git a/graphics-libs/ftgl/DETAILS b/graphics-libs/ftgl/DETAILS
index 9c4f4f5..3f16e99 100755
--- a/graphics-libs/ftgl/DETAILS
+++ b/graphics-libs/ftgl/DETAILS
@@ -1,10 +1,11 @@
+source $GRIMOIRE/CMAKE_FUNCTIONS
SPELL=ftgl
- VERSION=2.1.3-rc5
+ VERSION=2.4.0
+
SOURCE_HASH=sha512:5a0d05dbb32952e5aa81d2537d604192ca19710cd57289ae056acc5e3ae6d403d7f0ffc8cf6c1aada6c3c23a8df4a8d0eabb81433036ade810bca1894fdfde54
SOURCE=$SPELL-$VERSION.tar.gz
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-${VERSION/-rc5/~rc5}
-
SOURCE_URL[0]=http://downloads.sourceforge.net/sourceforge/${SPELL}/FTGL%20Source/${VERSION/-/%7E}/${SOURCE}
- WEB_SITE=http://ftgl.wiki.sourceforge.net/
-
SOURCE_HASH=sha512:77518c4546b53662b45a5c9af2418697b1a4a6250316c1e11ee71ccffc58ce03d5f19c901021b0e1cd05fec8444c84197e4bef77c662513dd6da8c29800cc3cd
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-${VERSION}
+ WEB_SITE=https://github.com/frankheckenbach/ftgl
+ SOURCE_URL[0]=$WEB_SITE/archive/refs/tags/v$VERSION.tar.gz
LICENSE[0]=GPL
ENTERED=20040709
KEYWORDS="opengl fonts graphics libs"
diff --git a/graphics-libs/ftgl/HISTORY b/graphics-libs/ftgl/HISTORY
index befadd2..01eb22a 100644
--- a/graphics-libs/ftgl/HISTORY
+++ b/graphics-libs/ftgl/HISTORY
@@ -1,3 +1,10 @@
+2024-01-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.4.0
+ new url
+ * PRE_BUILD: fix cmake syntax
+ * *: use cmake
+ * BUILD: deleted
+
2021-12-30 Ismael Luceno <ismael AT sourcemage.org>
* PRE_BUILD: Fixed build against musl
* DEPENDS: added optional dependency on doxyen
diff --git a/graphics-libs/ftgl/PRE_BUILD b/graphics-libs/ftgl/PRE_BUILD
index 3b26f4c..73aeecd 100755
--- a/graphics-libs/ftgl/PRE_BUILD
+++ b/graphics-libs/ftgl/PRE_BUILD
@@ -1,3 +1,4 @@
default_pre_build &&
cd "$SOURCE_DIRECTORY" &&
-sedit 's!maybe_os in$!& linux-musl*|\\!' .auto/config.sub
+sed -i 's/2.8/3.16/;s|${PROJECT_SOURCE_DIR}/||' CMakeLists.txt &&
+sed -i "/.h$/D" src/CMakeLists.txt
diff --git a/libs/gwenhywfar/DETAILS b/libs/gwenhywfar/DETAILS
index 2fcd670..d65f2f2 100755
--- a/libs/gwenhywfar/DETAILS
+++ b/libs/gwenhywfar/DETAILS
@@ -1,7 +1,7 @@
SPELL=gwenhywfar
- VERSION=5.9.0
- VX=415
-
SOURCE_HASH=sha512:b195e7c915a305ba3ae06cea3a71123389512b5dfdf3e4f140176ea2d4f39126fa4cc1d596aad7762598fe94992d1ea5810e9cbc449f02abe21da4d2f12b0c48
+ VERSION=5.10.2
+ VX=501
+
SOURCE_HASH=sha512:d7e414fbf5762dbbb5664d56110d2b41fb693de93b52757ded8b2b883faa73d8d81c1ea033872b7b7928c2849a7373a344613321a8689cc51a8e533cc805f0bf
SOURCE=${SPELL}-${VERSION}.tar.gz
SOURCE_DIRECTORY=${BUILD_DIRECTORY}/${SPELL}-${VERSION}

SOURCE_URL[0]=https://www.aquamaniac.de/rdm/attachments/download/$VX/$SOURCE
diff --git a/libs/gwenhywfar/HISTORY b/libs/gwenhywfar/HISTORY
index d31b976..0c6e988 100644
--- a/libs/gwenhywfar/HISTORY
+++ b/libs/gwenhywfar/HISTORY
@@ -1,3 +1,9 @@
+2024-01-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 5.10.2
+
+2024-01-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 5.10.2
+
2024-01-12 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 5.9.0
* DEPENDS CONFIGURE: add gtk3 support
diff --git a/python-pypi/psutil/DETAILS b/python-pypi/psutil/DETAILS
index a9f7d56..75be163 100755
--- a/python-pypi/psutil/DETAILS
+++ b/python-pypi/psutil/DETAILS
@@ -1,8 +1,8 @@
SPELL=psutil
- VERSION=5.9.4
+ VERSION=5.9.7
SOURCE=$SPELL-$VERSION.tar.gz

SOURCE_URL[0]=https://github.com/giampaolo/psutil/archive/release-${VERSION}.tar.gz
-
SOURCE_HASH=sha512:ea131f301e1464bde52493910631d3cb3c8ac6a8456c19218c24433d94c11eada1cb553496838ba42eff0d6ea2ed8be68115261439fdf6ea4a642fa3fc18dc1c
+
SOURCE_HASH=sha512:192fccc7f3cdcaf2f6c8ef29b9c839c43f3226a480d45bb20eff79a11970ee3d00cee18855c7f6a23f6284e3bb297999962d07f7d2ae1400b7847283d527f9dc
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-release-$VERSION"
WEB_SITE=https://github.com/giampaolo/psutil
LICENSE[0]=BSD
diff --git a/python-pypi/psutil/HISTORY b/python-pypi/psutil/HISTORY
index a6ccb22..a00f6c1 100644
--- a/python-pypi/psutil/HISTORY
+++ b/python-pypi/psutil/HISTORY
@@ -1,3 +1,6 @@
+2024-01-18 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 5.9.7
+
2022-11-12 Florian Franzmann <bwlf AT bandrate.org>
* DETAILS: version 5.9.4

diff --git a/xorg-proto/wayland-protocols/DETAILS
b/xorg-proto/wayland-protocols/DETAILS
index cc1c593..e0e33dd 100755
--- a/xorg-proto/wayland-protocols/DETAILS
+++ b/xorg-proto/wayland-protocols/DETAILS
@@ -1,6 +1,6 @@
source $GRIMOIRE/MESON_FUNCTIONS
SPELL=wayland-protocols
- VERSION=1.32
+ VERSION=1.33
SOURCE=$SPELL-$VERSION.tar.xz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
WEB_SITE=https://wayland.freedesktop.org
diff --git a/xorg-proto/wayland-protocols/HISTORY
b/xorg-proto/wayland-protocols/HISTORY
index 94a77d2..8d997a5 100644
--- a/xorg-proto/wayland-protocols/HISTORY
+++ b/xorg-proto/wayland-protocols/HISTORY
@@ -1,3 +1,6 @@
+2024-01-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.33
+
2024-01-17 Remko van der Vossen <wich AT sourcemage.org>
* DEPENDS: needs wayland for wayland-scanner




  • [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (27dc53f16e2123f780250232d19fde934c989528), Treeve Jelbert, 01/19/2024

Archive powered by MHonArc 2.6.24.

Top of Page