Skip to Content.
Sympa Menu

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

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 (80e4948ee87fef9f403f323b05b3a85f287fbe54)
  • Date: Fri, 12 Apr 2024 15:27:20 +0000

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

ChangeLog | 7 +++++++
emulators/dosemu/BUILD | 10 ++++++++++
emulators/dosemu/DEPENDS | 43 +++++++++++++++++++++++++++++++++++++++++++
emulators/dosemu/DETAILS | 21 +++++++++++++++++++++
emulators/dosemu/HISTORY | 27 +++++++++++++++++++++++++++
emulators/dosemu/PREPARE | 1 +
emulators/dosemu/PRE_BUILD | 7 +++++++
libs/dosemu/BUILD | 10 ----------
libs/dosemu/DEPENDS | 43 -------------------------------------------
libs/dosemu/DETAILS | 21 ---------------------
libs/dosemu/HISTORY | 24 ------------------------
libs/dosemu/PREPARE | 1 -
libs/dosemu/PRE_BUILD | 7 -------
13 files changed, 116 insertions(+), 106 deletions(-)

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

Update ChangeLog

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

dosemu: Move into emulators section

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

dosemu: Update WEB_SITE and LICENSE

diff --git a/ChangeLog b/ChangeLog
index 5cc9965..d932498 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2024-04-12 Ismael Luceno <ismael AT sourcemage.org>
+ * emulators/bochs: moved from utils/bochs
+ * emulators/bochs-snapshot: moved from utils/bochs-snapshot
+ * emulators/dosemu: moved from libs/dosemu
+ * emulators/hercules: moved from utils/hercules
+ * emulators/qemu: moved from utils/qemu
+
2024-04-05 Treeve Jelbert <treeve AT sourcemage.org>
* move splix to openprinting

diff --git a/emulators/dosemu/BUILD b/emulators/dosemu/BUILD
new file mode 100755
index 0000000..63e4d4d
--- /dev/null
+++ b/emulators/dosemu/BUILD
@@ -0,0 +1,10 @@
+disable_pic &&
+# remove -O3, as requested by project
+CFLAGS=${CFLAGS/-O3/-O2} &&
+if [[ "$FREEDOS" == "y" ]];then
+OPTS="--with-fdtarball=$SOURCE2 $OPTS"
+else
+OPTS="--with-fdtarball=none $OPTS"
+fi &&
+default_build
+
diff --git a/emulators/dosemu/DEPENDS b/emulators/dosemu/DEPENDS
new file mode 100755
index 0000000..7b83246
--- /dev/null
+++ b/emulators/dosemu/DEPENDS
@@ -0,0 +1,43 @@
+depends bison &&
+depends flex &&
+
+optional_depends sdl \
+ "" \
+ "" \
+ "low level functions"&&
+
+optional_depends libsndfile \
+ "--without-sndfile" \
+ "--without-sndfile" \
+ "sound support" &&
+
+optional_depends libx11 \
+ "--with-x" \
+ "--without-x" \
+ "x11 support" &&
+if is_depends_enabled $SPELL libx11;then
+ depends libice &&
+ depends libxext &&
+ depends bdftopcf &&
+ depends mkfontdir &&
+ depends libxxf86vm
+fi &&
+optional_depends gpm \
+ "--with-gpm" \
+ "--without-gpm" \
+ "mouse support" &&
+
+optional_depends slang \
+ "" \
+ "" \
+ "terminal support" &&
+
+optional_depends svgalib \
+ "--with-svgalib" \
+ "--without-svgalib" \
+ "svga support" &&
+
+optional_depends alsa-lib \
+ "--with-alsa" \
+ "--without-alsa" \
+ "alsa sound support"
diff --git a/emulators/dosemu/DETAILS b/emulators/dosemu/DETAILS
new file mode 100755
index 0000000..9bda72c
--- /dev/null
+++ b/emulators/dosemu/DETAILS
@@ -0,0 +1,21 @@
+ SPELL=dosemu
+ VERSION=1.4.0
+
SOURCE_HASH=sha512:fdeb48c9d2051eed101919dbf7e9c698c6035770e94bb3b77cf2addf55373526f573ee48cfdac48b263281169c6ae5c44c811e53cd1865614c10c551e12a6794
+ SOURCE=$SPELL-$VERSION.tgz
+ SOURCE_URL[0]=http://downloads.sourceforge.net/sourceforge/$SPELL/$SOURCE
+if [[ "$FREEDOS" == "y" ]];then
+ SOURCE2=dosemu-freedos-1.0-bin.tgz
+ SOURCE2_URL[0]=http://downloads.sourceforge.net/sourceforge/$SPELL/$SOURCE2
+
SOURCE2_HASH=sha512:d0c4235ceac55de63ce5f72e51b7d57a82b8104f4bf2df6f4dc25c9889d3337b40d75665c2dfc98492ec7123e0959a725f5c7579e145895024bd80a07036e3bd
+fi
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ WEB_SITE=https://dosemu.sourceforge.net/
+ LICENSE[0]=GPL-2.0-or-later
+ ENTERED=20070506
+ KEYWORDS="dos emulator"
+ SHORT="dos emulator"
+cat << EOF
+DOSEMU is a PC Emulator application that allows Linux to run a DOS
+operating system in a virtual x86 machine. This allows you to run
+many DOS applications.
+EOF
diff --git a/emulators/dosemu/HISTORY b/emulators/dosemu/HISTORY
new file mode 100644
index 0000000..4264eb0
--- /dev/null
+++ b/emulators/dosemu/HISTORY
@@ -0,0 +1,27 @@
+2024-04-12 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated WEB_SITE and LICENSE
+
+2015-05-25 Thomas Orgis <sobukus AT sourcemage.org>
+ * DETAILS: remove SOURCEFORGE_URL usage (automated)
+
+2009-10-11 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: xrog-libs => libx11 and friends
+
+2008-03-18 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Switch X11-LIBS to the one and only xorg-libs
+
+2007-08-11 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
+ * BUILD: disable_pic needs to be used
+ * PRE_BUILD: use [[ ]]
+ * DETAILS: minor lineup issue
+
+2007-07-19 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
+ * DETAILS: delinting
+
+2007-06-18 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: fix type in web_site
+
+2007-05-06 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.4.0
+ spell created
+
diff --git a/emulators/dosemu/PREPARE b/emulators/dosemu/PREPARE
new file mode 100755
index 0000000..b38c7e4
--- /dev/null
+++ b/emulators/dosemu/PREPARE
@@ -0,0 +1 @@
+config_query FREEDOS "install FreeDOS?" y
diff --git a/emulators/dosemu/PRE_BUILD b/emulators/dosemu/PRE_BUILD
new file mode 100755
index 0000000..2986852
--- /dev/null
+++ b/emulators/dosemu/PRE_BUILD
@@ -0,0 +1,7 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+if [[ "$FREEDOS" == "y" ]];then
+# unpack_file 2
+ verify_file 2 &&
+ ln -s $SOURCE_CACHE/$SOURCE2
+fi
diff --git a/libs/dosemu/BUILD b/libs/dosemu/BUILD
deleted file mode 100755
index 63e4d4d..0000000
--- a/libs/dosemu/BUILD
+++ /dev/null
@@ -1,10 +0,0 @@
-disable_pic &&
-# remove -O3, as requested by project
-CFLAGS=${CFLAGS/-O3/-O2} &&
-if [[ "$FREEDOS" == "y" ]];then
-OPTS="--with-fdtarball=$SOURCE2 $OPTS"
-else
-OPTS="--with-fdtarball=none $OPTS"
-fi &&
-default_build
-
diff --git a/libs/dosemu/DEPENDS b/libs/dosemu/DEPENDS
deleted file mode 100755
index 7b83246..0000000
--- a/libs/dosemu/DEPENDS
+++ /dev/null
@@ -1,43 +0,0 @@
-depends bison &&
-depends flex &&
-
-optional_depends sdl \
- "" \
- "" \
- "low level functions"&&
-
-optional_depends libsndfile \
- "--without-sndfile" \
- "--without-sndfile" \
- "sound support" &&
-
-optional_depends libx11 \
- "--with-x" \
- "--without-x" \
- "x11 support" &&
-if is_depends_enabled $SPELL libx11;then
- depends libice &&
- depends libxext &&
- depends bdftopcf &&
- depends mkfontdir &&
- depends libxxf86vm
-fi &&
-optional_depends gpm \
- "--with-gpm" \
- "--without-gpm" \
- "mouse support" &&
-
-optional_depends slang \
- "" \
- "" \
- "terminal support" &&
-
-optional_depends svgalib \
- "--with-svgalib" \
- "--without-svgalib" \
- "svga support" &&
-
-optional_depends alsa-lib \
- "--with-alsa" \
- "--without-alsa" \
- "alsa sound support"
diff --git a/libs/dosemu/DETAILS b/libs/dosemu/DETAILS
deleted file mode 100755
index 7a7a3a1..0000000
--- a/libs/dosemu/DETAILS
+++ /dev/null
@@ -1,21 +0,0 @@
- SPELL=dosemu
- VERSION=1.4.0
-
SOURCE_HASH=sha512:fdeb48c9d2051eed101919dbf7e9c698c6035770e94bb3b77cf2addf55373526f573ee48cfdac48b263281169c6ae5c44c811e53cd1865614c10c551e12a6794
- SOURCE=$SPELL-$VERSION.tgz
- SOURCE_URL[0]=http://downloads.sourceforge.net/sourceforge/$SPELL/$SOURCE
-if [[ "$FREEDOS" == "y" ]];then
- SOURCE2=dosemu-freedos-1.0-bin.tgz
- SOURCE2_URL[0]=http://downloads.sourceforge.net/sourceforge/$SPELL/$SOURCE2
-
SOURCE2_HASH=sha512:d0c4235ceac55de63ce5f72e51b7d57a82b8104f4bf2df6f4dc25c9889d3337b40d75665c2dfc98492ec7123e0959a725f5c7579e145895024bd80a07036e3bd
-fi
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
- WEB_SITE=http://dosemu.sourceforge.net/
- LICENSE[0]=GPL
- ENTERED=20070506
- KEYWORDS="dos emulator"
- SHORT="dos emulator"
-cat << EOF
-DOSEMU is a PC Emulator application that allows Linux to run a DOS
-operating system in a virtual x86 machine. This allows you to run
-many DOS applications.
-EOF
diff --git a/libs/dosemu/HISTORY b/libs/dosemu/HISTORY
deleted file mode 100644
index b23723e..0000000
--- a/libs/dosemu/HISTORY
+++ /dev/null
@@ -1,24 +0,0 @@
-2015-05-25 Thomas Orgis <sobukus AT sourcemage.org>
- * DETAILS: remove SOURCEFORGE_URL usage (automated)
-
-2009-10-11 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: xrog-libs => libx11 and friends
-
-2008-03-18 Eric Sandall <sandalle AT sourcemage.org>
- * DEPENDS: Switch X11-LIBS to the one and only xorg-libs
-
-2007-08-11 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * BUILD: disable_pic needs to be used
- * PRE_BUILD: use [[ ]]
- * DETAILS: minor lineup issue
-
-2007-07-19 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * DETAILS: delinting
-
-2007-06-18 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: fix type in web_site
-
-2007-05-06 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 1.4.0
- spell created
-
diff --git a/libs/dosemu/PREPARE b/libs/dosemu/PREPARE
deleted file mode 100755
index b38c7e4..0000000
--- a/libs/dosemu/PREPARE
+++ /dev/null
@@ -1 +0,0 @@
-config_query FREEDOS "install FreeDOS?" y
diff --git a/libs/dosemu/PRE_BUILD b/libs/dosemu/PRE_BUILD
deleted file mode 100755
index 2986852..0000000
--- a/libs/dosemu/PRE_BUILD
+++ /dev/null
@@ -1,7 +0,0 @@
-default_pre_build &&
-cd $SOURCE_DIRECTORY &&
-if [[ "$FREEDOS" == "y" ]];then
-# unpack_file 2
- verify_file 2 &&
- ln -s $SOURCE_CACHE/$SOURCE2
-fi


  • [[SM-Commit] ] GIT changes to master grimoire by Ismael Luceno (80e4948ee87fef9f403f323b05b3a85f287fbe54), Ismael Luceno, 04/12/2024

Archive powered by MHonArc 2.6.24.

Top of Page