Skip to Content.
Sympa Menu

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

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 (a8eedca104bcf3b9376563e080b60f4c49e15e3a)
  • Date: Sat, 18 Dec 2021 13:25:48 +0000

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

utils/aqemu/DEPENDS | 2 +-
utils/aqemu/DETAILS | 10 +++++-----
utils/aqemu/HISTORY | 5 +++++
utils/aqemu/PRE_BUILD | 3 +++
utils/aqemu/patches/0001-stdexcept.patch | 25 +++++++++++++++++++++++++
x11-libs/wine/DETAILS | 2 +-
x11-libs/wine/HISTORY | 3 +++
7 files changed, 43 insertions(+), 7 deletions(-)

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

aqemu 0.9.4

diff --git a/utils/aqemu/DEPENDS b/utils/aqemu/DEPENDS
index bcf7fea..946d54a 100755
--- a/utils/aqemu/DEPENDS
+++ b/utils/aqemu/DEPENDS
@@ -1,5 +1,5 @@
depends -sub CXX gcc &&
-depends qt4 &&
+depends QT &&
depends QEMU &&
depends cmake &&

diff --git a/utils/aqemu/DETAILS b/utils/aqemu/DETAILS
index d4b30b8..6c57193 100755
--- a/utils/aqemu/DETAILS
+++ b/utils/aqemu/DETAILS
@@ -1,9 +1,9 @@
SPELL=aqemu
- VERSION=0.8.2
- SOURCE="${SPELL}-${VERSION}.tar.bz2"
-
SOURCE_URL[0]=http://downloads.sourceforge.net/sourceforge/$SPELL/${VERSION/.0/}/${SOURCE}
-
SOURCE_HASH=sha512:45f27f82ca307ffc50ea26a57631b47236fd04915274bb00a0720e65859e183d56c3243e0e31d71e5280d0941a9c80c1457b09d393e5c4d4deeb1fea4159459d
-SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION/.0/}"
+ VERSION=0.9.4
+ SOURCE="$SPELL-$VERSION.tar.gz"
+
SOURCE_URL[0]=https://github.com/TBK/$SPELL/archive/refs/tags/v$VERSION.tar.gz
+
SOURCE_HASH=sha512:e10e2c558572e6194abadeb46034a59d1b5837efe77012c2ef2d4c5ae610e7a7b09e2315e6d5fd8a12fd7f9db34068a15926b0dbe8f91db6a0d4f48eea722a9d
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
WEB_SITE="http://sourceforge.net/projects/aqemu/";
LICENSE[0]="GPLv2"
ENTERED=20090714
diff --git a/utils/aqemu/HISTORY b/utils/aqemu/HISTORY
index 5b9995c..577c98b 100644
--- a/utils/aqemu/HISTORY
+++ b/utils/aqemu/HISTORY
@@ -1,3 +1,8 @@
+2021-12-18 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS: switched qt4 dep to QT
+ * DETAILS: updated spell to 0.9.4
+ * PRE_BUILD, patches/0001-stdexcept.patch: fixed missing include
+
2015-05-25 Thomas Orgis <sobukus AT sourcemage.org>
* DETAILS: remove SOURCEFORGE_URL usage (automated)

diff --git a/utils/aqemu/PRE_BUILD b/utils/aqemu/PRE_BUILD
new file mode 100755
index 0000000..c230ad1
--- /dev/null
+++ b/utils/aqemu/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+apply_patch_dir patches
diff --git a/utils/aqemu/patches/0001-stdexcept.patch
b/utils/aqemu/patches/0001-stdexcept.patch
new file mode 100644
index 0000000..401f45d
--- /dev/null
+++ b/utils/aqemu/patches/0001-stdexcept.patch
@@ -0,0 +1,25 @@
+From fe1fd5c856a79d9f0704ad2b973caf786272dbd4 Mon Sep 17 00:00:00 2001
+From: Nathan Owens <ndowens AT artixlinux.org>
+Date: Sat, 21 Nov 2020 19:08:35 -0600
+Subject: [PATCH] stdexcept
+
+---
+ src/docopt/docopt_value.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git src/docopt/docopt_value.h src/docopt/docopt_value.h
+index ddb8a8e..99aa545 100644
+--- a/src/docopt/docopt_value.h
++++ b/src/docopt/docopt_value.h
+@@ -13,7 +13,7 @@
+ #include <iosfwd>
+ #include <string>
+ #include <vector>
+-
++#include <stdexcept>
+ namespace docopt {
+
+ /// A generic type to hold the various types that can be produced by docopt.
+--
+2.29.2
+
diff --git a/x11-libs/wine/DETAILS b/x11-libs/wine/DETAILS
index 8108d9a..b8cd2db 100755
--- a/x11-libs/wine/DETAILS
+++ b/x11-libs/wine/DETAILS
@@ -1,7 +1,7 @@
. "$GRIMOIRE/FUNCTIONS"
SPELL=wine
case "$WINE_BRANCH" in
-(devel) VERSION=6.21 ;;
+(devel) VERSION=6.23 ;;
(stable) VERSION=6.0.1 ;;
esac; case "$WINE_BRANCH" in
(scm)
diff --git a/x11-libs/wine/HISTORY b/x11-libs/wine/HISTORY
index d09656d..376fc2a 100644
--- a/x11-libs/wine/HISTORY
+++ b/x11-libs/wine/HISTORY
@@ -1,3 +1,6 @@
+2021-12-06 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated (devel) to 6.23
+
2021-11-12 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: updated (devel) to 6.21
* 0001-dnsapi-Work-around-missing-ns_name_skip.patch:



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (a8eedca104bcf3b9376563e080b60f4c49e15e3a), Ismael Luceno, 12/18/2021

Archive powered by MHonArc 2.6.24.

Top of Page