[arch-commits] Commit in bochs/repos (3 files)

2020-03-20 Thread Anatol Pomozov via arch-commits
Date: Friday, March 20, 2020 @ 15:45:19
  Author: anatolik
Revision: 601758

archrelease: copy trunk to community-testing-x86_64

Added:
  bochs/repos/community-testing-x86_64/
  bochs/repos/community-testing-x86_64/PKGBUILD
(from rev 601757, bochs/trunk/PKGBUILD)
  bochs/repos/community-testing-x86_64/fix-build.patch
(from rev 601757, bochs/trunk/fix-build.patch)

-+
 PKGBUILD|   61 ++
 fix-build.patch |   21 ++
 2 files changed, 82 insertions(+)

Copied: bochs/repos/community-testing-x86_64/PKGBUILD (from rev 601757, 
bochs/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-03-20 15:45:19 UTC (rev 601758)
@@ -0,0 +1,61 @@
+# Maintainer: Kyle Keen 
+# Contributor: Tom Newsom 
+# Contributor: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.11
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
+arch=('x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
+source=("https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";
+"fix-build.patch")
+sha256sums=('63897b41fbbbdfb1c492d3c4dee1edb4224282a07bbdf442a4a68c19bcc18862'
+'3c6352bc9b32de00bc68b614b49879b4475ad37620b17573d69526241ef2ab3e')
+
+prepare() {
+cd "$srcdir/$pkgname-$pkgver"
+# 4.X kernel is basically 3.20
+sed -i 's/2\.6\*|3\.\*)/2.6*|3.*|4.*)/' configure*
+
+patch -p1 < ../fix-build.patch # https://sourceforge.net/p/bochs/bugs/1411/
+}
+
+build() {
+cd "$srcdir/$pkgname-$pkgver"
+
+./configure \
+--prefix=/usr \
+--without-wx \
+--with-x11 \
+--with-x \
+--with-term \
+--disable-docbook \
+--enable-cpu-level=6 \
+--enable-fpu \
+--enable-3dnow \
+--enable-disasm \
+--enable-smp \
+--enable-x86-64 \
+--enable-avx \
+   --enable-evex \
+--enable-long-phy-address \
+--enable-disasm \
+--enable-pcidev \
+--enable-usb \
+--enable-debugger
+#--with-sdl
+#--enable-x86-debugger
+#--enable-all-optimizations
+#--enable-plugins
+sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+make -j 1
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
+}

Copied: bochs/repos/community-testing-x86_64/fix-build.patch (from rev 601757, 
bochs/trunk/fix-build.patch)
===
--- community-testing-x86_64/fix-build.patch(rev 0)
+++ community-testing-x86_64/fix-build.patch2020-03-20 15:45:19 UTC (rev 
601758)
@@ -0,0 +1,21 @@
+Description: Fix the build with SMP enabled
+Origin: https://sourceforge.net/p/bochs/code/13778/
+
+Index: bochs/bx_debug/dbg_main.cc
+===
+--- bochs/bx_debug/dbg_main.cc (revision 13777)
 bochs/bx_debug/dbg_main.cc (working copy)
+@@ -1494,11 +1494,11 @@
+ {
+   char cpu_param_name[16];
+ 
+-  Bit32u index = BX_ITLB_INDEX_OF(laddr);
++  Bit32u index = BX_CPU(dbg_cpu)->ITLB.get_index_of(laddr);
+   sprintf(cpu_param_name, "ITLB.entry%d", index);
+   bx_dbg_show_param_command(cpu_param_name, 0);
+ 
+-  index = BX_DTLB_INDEX_OF(laddr, 0);
++  index = BX_CPU(dbg_cpu)->DTLB.get_index_of(laddr);
+   sprintf(cpu_param_name, "DTLB.entry%d", index);
+   bx_dbg_show_param_command(cpu_param_name, 0);
+ }


[arch-commits] Commit in bochs/trunk (PKGBUILD fix-build.patch)

2020-03-20 Thread Anatol Pomozov via arch-commits
Date: Friday, March 20, 2020 @ 15:44:59
  Author: anatolik
Revision: 601757

upgpkg: bochs 2.6.11-1

Added:
  bochs/trunk/fix-build.patch
Modified:
  bochs/trunk/PKGBUILD

-+
 PKGBUILD|   13 +
 fix-build.patch |   21 +
 2 files changed, 30 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-20 15:44:53 UTC (rev 601756)
+++ PKGBUILD2020-03-20 15:44:59 UTC (rev 601757)
@@ -3,20 +3,24 @@
 # Contributor: Kevin Piche 
 
 pkgname=bochs
-pkgver=2.6.9
-pkgrel=3
+pkgver=2.6.11
+pkgrel=1
 pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
 arch=('x86_64')
 url="http://bochs.sourceforge.net/";
 license=('LGPL')
 depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
-source=("https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('f6670c56ac49af36174e254e82528d5f')
+source=("https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";
+"fix-build.patch")
+sha256sums=('63897b41fbbbdfb1c492d3c4dee1edb4224282a07bbdf442a4a68c19bcc18862'
+'3c6352bc9b32de00bc68b614b49879b4475ad37620b17573d69526241ef2ab3e')
 
 prepare() {
 cd "$srcdir/$pkgname-$pkgver"
 # 4.X kernel is basically 3.20
 sed -i 's/2\.6\*|3\.\*)/2.6*|3.*|4.*)/' configure*
+
+patch -p1 < ../fix-build.patch # https://sourceforge.net/p/bochs/bugs/1411/
 }
 
 build() {
@@ -36,6 +40,7 @@
 --enable-smp \
 --enable-x86-64 \
 --enable-avx \
+   --enable-evex \
 --enable-long-phy-address \
 --enable-disasm \
 --enable-pcidev \

Added: fix-build.patch
===
--- fix-build.patch (rev 0)
+++ fix-build.patch 2020-03-20 15:44:59 UTC (rev 601757)
@@ -0,0 +1,21 @@
+Description: Fix the build with SMP enabled
+Origin: https://sourceforge.net/p/bochs/code/13778/
+
+Index: bochs/bx_debug/dbg_main.cc
+===
+--- bochs/bx_debug/dbg_main.cc (revision 13777)
 bochs/bx_debug/dbg_main.cc (working copy)
+@@ -1494,11 +1494,11 @@
+ {
+   char cpu_param_name[16];
+ 
+-  Bit32u index = BX_ITLB_INDEX_OF(laddr);
++  Bit32u index = BX_CPU(dbg_cpu)->ITLB.get_index_of(laddr);
+   sprintf(cpu_param_name, "ITLB.entry%d", index);
+   bx_dbg_show_param_command(cpu_param_name, 0);
+ 
+-  index = BX_DTLB_INDEX_OF(laddr, 0);
++  index = BX_CPU(dbg_cpu)->DTLB.get_index_of(laddr);
+   sprintf(cpu_param_name, "DTLB.entry%d", index);
+   bx_dbg_show_param_command(cpu_param_name, 0);
+ }


[arch-commits] Commit in bochs/trunk (PKGBUILD)

2019-01-10 Thread Felix Yan via arch-commits
Date: Friday, January 11, 2019 @ 07:54:22
  Author: felixonmars
Revision: 422290

Readline 8.0 rebuild

Modified:
  bochs/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-11 07:53:49 UTC (rev 422289)
+++ PKGBUILD2019-01-11 07:54:22 UTC (rev 422290)
@@ -4,7 +4,7 @@
 
 pkgname=bochs
 pkgver=2.6.9
-pkgrel=2
+pkgrel=3
 pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
 arch=('x86_64')
 url="http://bochs.sourceforge.net/";


[arch-commits] Commit in bochs/repos (2 files)

2019-01-10 Thread Felix Yan via arch-commits
Date: Friday, January 11, 2019 @ 07:54:40
  Author: felixonmars
Revision: 422291

archrelease: copy trunk to community-staging-x86_64

Added:
  bochs/repos/community-staging-x86_64/
  bochs/repos/community-staging-x86_64/PKGBUILD
(from rev 422290, bochs/trunk/PKGBUILD)

--+
 PKGBUILD |   56 
 1 file changed, 56 insertions(+)

Copied: bochs/repos/community-staging-x86_64/PKGBUILD (from rev 422290, 
bochs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-11 07:54:40 UTC (rev 422291)
@@ -0,0 +1,56 @@
+# Maintainer: Kyle Keen 
+# Contributor: Tom Newsom 
+# Contributor: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.9
+pkgrel=3
+pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
+arch=('x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
+source=("https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('f6670c56ac49af36174e254e82528d5f')
+
+prepare() {
+cd "$srcdir/$pkgname-$pkgver"
+# 4.X kernel is basically 3.20
+sed -i 's/2\.6\*|3\.\*)/2.6*|3.*|4.*)/' configure*
+}
+
+build() {
+cd "$srcdir/$pkgname-$pkgver"
+
+./configure \
+--prefix=/usr \
+--without-wx \
+--with-x11 \
+--with-x \
+--with-term \
+--disable-docbook \
+--enable-cpu-level=6 \
+--enable-fpu \
+--enable-3dnow \
+--enable-disasm \
+--enable-smp \
+--enable-x86-64 \
+--enable-avx \
+--enable-long-phy-address \
+--enable-disasm \
+--enable-pcidev \
+--enable-usb \
+--enable-debugger
+#--with-sdl
+#--enable-x86-debugger
+#--enable-all-optimizations
+#--enable-plugins
+sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+make -j 1
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
+}


[arch-commits] Commit in bochs/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-12-03 Thread Maxim Baz via arch-commits
Date: Tuesday, December 4, 2018 @ 00:30:40
  Author: maximbaz
Revision: 411037

archrelease: copy trunk to community-x86_64

Added:
  bochs/repos/community-x86_64/PKGBUILD
(from rev 411036, bochs/trunk/PKGBUILD)
Deleted:
  bochs/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  112 ++---
 1 file changed, 56 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-04 00:30:30 UTC (rev 411036)
+++ PKGBUILD2018-12-04 00:30:40 UTC (rev 411037)
@@ -1,56 +0,0 @@
-# Maintainer: Kyle Keen 
-# Contributor: Tom Newsom 
-# Contributor: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.6.9
-pkgrel=2
-pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
-arch=('x86_64')
-url="http://bochs.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('f6670c56ac49af36174e254e82528d5f')
-
-prepare() {
-cd "$srcdir/$pkgname-$pkgver"
-# 4.X kernel is basically 3.20
-sed -i 's/2\.6\*|3\.\*)/2.6*|3.*|4.*)/' configure*
-}
-
-build() {
-cd "$srcdir/$pkgname-$pkgver"
-
-./configure \
---prefix=/usr \
---without-wx \
---with-x11 \
---with-x \
---with-term \
---disable-docbook \
---enable-cpu-level=6 \
---enable-fpu \
---enable-3dnow \
---enable-disasm \
---enable-smp \
---enable-x86-64 \
---enable-avx \
---enable-long-phy-address \
---enable-disasm \
---enable-pcidev \
---enable-usb \
---enable-debugger
-#--with-sdl
-#--enable-x86-debugger
-#--enable-all-optimizations
-#--enable-plugins
-sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
-make -j 1
-}
-
-package() {
-cd "$srcdir/$pkgname-$pkgver"
-make DESTDIR="$pkgdir" install
-install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
-}

Copied: bochs/repos/community-x86_64/PKGBUILD (from rev 411036, 
bochs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-04 00:30:40 UTC (rev 411037)
@@ -0,0 +1,56 @@
+# Maintainer: Kyle Keen 
+# Contributor: Tom Newsom 
+# Contributor: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.9
+pkgrel=2
+pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
+arch=('x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
+source=("https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('f6670c56ac49af36174e254e82528d5f')
+
+prepare() {
+cd "$srcdir/$pkgname-$pkgver"
+# 4.X kernel is basically 3.20
+sed -i 's/2\.6\*|3\.\*)/2.6*|3.*|4.*)/' configure*
+}
+
+build() {
+cd "$srcdir/$pkgname-$pkgver"
+
+./configure \
+--prefix=/usr \
+--without-wx \
+--with-x11 \
+--with-x \
+--with-term \
+--disable-docbook \
+--enable-cpu-level=6 \
+--enable-fpu \
+--enable-3dnow \
+--enable-disasm \
+--enable-smp \
+--enable-x86-64 \
+--enable-avx \
+--enable-long-phy-address \
+--enable-disasm \
+--enable-pcidev \
+--enable-usb \
+--enable-debugger
+#--with-sdl
+#--enable-x86-debugger
+#--enable-all-optimizations
+#--enable-plugins
+sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+make -j 1
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
+}


[arch-commits] Commit in bochs/trunk (PKGBUILD)

2018-12-03 Thread Maxim Baz via arch-commits
Date: Tuesday, December 4, 2018 @ 00:30:30
  Author: maximbaz
Revision: 411036

bochs: use https sources

Modified:
  bochs/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-04 00:29:41 UTC (rev 411035)
+++ PKGBUILD2018-12-04 00:30:30 UTC (rev 411036)
@@ -10,7 +10,7 @@
 url="http://bochs.sourceforge.net/";
 license=('LGPL')
 depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
+source=("https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
 md5sums=('f6670c56ac49af36174e254e82528d5f')
 
 prepare() {


[arch-commits] Commit in bochs/repos (2 files)

2018-11-09 Thread Evangelos Foutras via arch-commits
Date: Friday, November 9, 2018 @ 23:01:00
  Author: foutrelis
Revision: 405153

archrelease: copy trunk to community-staging-x86_64

Added:
  bochs/repos/community-staging-x86_64/
  bochs/repos/community-staging-x86_64/PKGBUILD
(from rev 405152, bochs/trunk/PKGBUILD)

--+
 PKGBUILD |   56 
 1 file changed, 56 insertions(+)

Copied: bochs/repos/community-staging-x86_64/PKGBUILD (from rev 405152, 
bochs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-11-09 23:01:00 UTC (rev 405153)
@@ -0,0 +1,56 @@
+# Maintainer: Kyle Keen 
+# Contributor: Tom Newsom 
+# Contributor: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.9
+pkgrel=2
+pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
+arch=('x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('f6670c56ac49af36174e254e82528d5f')
+
+prepare() {
+cd "$srcdir/$pkgname-$pkgver"
+# 4.X kernel is basically 3.20
+sed -i 's/2\.6\*|3\.\*)/2.6*|3.*|4.*)/' configure*
+}
+
+build() {
+cd "$srcdir/$pkgname-$pkgver"
+
+./configure \
+--prefix=/usr \
+--without-wx \
+--with-x11 \
+--with-x \
+--with-term \
+--disable-docbook \
+--enable-cpu-level=6 \
+--enable-fpu \
+--enable-3dnow \
+--enable-disasm \
+--enable-smp \
+--enable-x86-64 \
+--enable-avx \
+--enable-long-phy-address \
+--enable-disasm \
+--enable-pcidev \
+--enable-usb \
+--enable-debugger
+#--with-sdl
+#--enable-x86-debugger
+#--enable-all-optimizations
+#--enable-plugins
+sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+make -j 1
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
+}


[arch-commits] Commit in bochs/trunk (PKGBUILD)

2018-11-09 Thread Evangelos Foutras via arch-commits
Date: Friday, November 9, 2018 @ 23:00:51
  Author: foutrelis
Revision: 405152

PIE/BUILDINFO rebuild

Modified:
  bochs/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-11-09 22:59:48 UTC (rev 405151)
+++ PKGBUILD2018-11-09 23:00:51 UTC (rev 405152)
@@ -4,7 +4,7 @@
 
 pkgname=bochs
 pkgver=2.6.9
-pkgrel=1
+pkgrel=2
 pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
 arch=('x86_64')
 url="http://bochs.sourceforge.net/";


[arch-commits] Commit in bochs/repos (4 files)

2017-04-21 Thread Kyle Keen
Date: Friday, April 21, 2017 @ 23:51:52
  Author: kkeen
Revision: 224304

archrelease: copy trunk to community-i686, community-x86_64

Added:
  bochs/repos/community-i686/PKGBUILD
(from rev 224303, bochs/trunk/PKGBUILD)
  bochs/repos/community-x86_64/PKGBUILD
(from rev 224303, bochs/trunk/PKGBUILD)
Deleted:
  bochs/repos/community-i686/PKGBUILD
  bochs/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  114 
 community-i686/PKGBUILD   |   57 --
 community-x86_64/PKGBUILD |   57 --
 3 files changed, 114 insertions(+), 114 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-04-21 23:51:26 UTC (rev 224303)
+++ community-i686/PKGBUILD 2017-04-21 23:51:52 UTC (rev 224304)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Tom Newsom 
-# Contributor: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.6.8
-pkgrel=4
-pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
-arch=('i686' 'x86_64')
-url="http://bochs.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('8a243e2b5f7562f32d2b26f3cebbba08')
-
-prepare() {
-cd "$srcdir/$pkgname-$pkgver"
-# 4.X kernel is basically 3.20
-sed -i 's/2\.6\*|3\.\*)/2.6*|3.*|4.*)/' configure*
-}
-
-build() {
-cd "$srcdir/$pkgname-$pkgver"
-
-./configure \
---prefix=/usr \
---without-wx \
---with-x11 \
---with-x \
---with-term \
---disable-docbook \
---enable-cpu-level=6 \
---enable-fpu \
---enable-3dnow \
---enable-disasm \
---enable-smp \
---enable-x86-64 \
---enable-avx \
---enable-long-phy-address \
---enable-disasm \
---enable-pcidev \
---enable-usb \
---enable-debugger
-#--with-sdl
-#--enable-x86-debugger
-#--enable-all-optimizations
-#--enable-plugins
-sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
-make -j 1
-}
-
-package() {
-cd "$srcdir/$pkgname-$pkgver"
-make DESTDIR="$pkgdir" install
-install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
-}

Copied: bochs/repos/community-i686/PKGBUILD (from rev 224303, 
bochs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-04-21 23:51:52 UTC (rev 224304)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Tom Newsom 
+# Contributor: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.9
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('f6670c56ac49af36174e254e82528d5f')
+
+prepare() {
+cd "$srcdir/$pkgname-$pkgver"
+# 4.X kernel is basically 3.20
+sed -i 's/2\.6\*|3\.\*)/2.6*|3.*|4.*)/' configure*
+}
+
+build() {
+cd "$srcdir/$pkgname-$pkgver"
+
+./configure \
+--prefix=/usr \
+--without-wx \
+--with-x11 \
+--with-x \
+--with-term \
+--disable-docbook \
+--enable-cpu-level=6 \
+--enable-fpu \
+--enable-3dnow \
+--enable-disasm \
+--enable-smp \
+--enable-x86-64 \
+--enable-avx \
+--enable-long-phy-address \
+--enable-disasm \
+--enable-pcidev \
+--enable-usb \
+--enable-debugger
+#--with-sdl
+#--enable-x86-debugger
+#--enable-all-optimizations
+#--enable-plugins
+sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+make -j 1
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-04-21 23:51:26 UTC (rev 224303)
+++ community-x86_64/PKGBUILD   2017-04-21 23:51:52 UTC (rev 224304)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Tom Newsom 
-# Contributor: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.6.8
-pkgrel=4
-pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
-arch=('i686' 'x86_64')
-url="http://bochs.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('8a243e2b5f7562f32d2b26f3cebbba08')
-
-prepare() {
-cd

[arch-commits] Commit in bochs/trunk (PKGBUILD)

2017-04-21 Thread Kyle Keen
Date: Friday, April 21, 2017 @ 23:51:26
  Author: kkeen
Revision: 224303

upgpkg: bochs 2.6.9-1

Modified:
  bochs/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-21 23:35:27 UTC (rev 224302)
+++ PKGBUILD2017-04-21 23:51:26 UTC (rev 224303)
@@ -4,8 +4,8 @@
 # Contributor: Kevin Piche 
 
 pkgname=bochs
-pkgver=2.6.8
-pkgrel=4
+pkgver=2.6.9
+pkgrel=1
 pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
 arch=('i686' 'x86_64')
 url="http://bochs.sourceforge.net/";
@@ -12,7 +12,7 @@
 license=('LGPL')
 depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
 
source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('8a243e2b5f7562f32d2b26f3cebbba08')
+md5sums=('f6670c56ac49af36174e254e82528d5f')
 
 prepare() {
 cd "$srcdir/$pkgname-$pkgver"


[arch-commits] Commit in bochs/repos (4 files)

2016-11-07 Thread Evangelos Foutras
Date: Monday, November 7, 2016 @ 17:37:17
  Author: foutrelis
Revision: 194933

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  bochs/repos/community-staging-i686/
  bochs/repos/community-staging-i686/PKGBUILD
(from rev 194932, bochs/trunk/PKGBUILD)
  bochs/repos/community-staging-x86_64/
  bochs/repos/community-staging-x86_64/PKGBUILD
(from rev 194932, bochs/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   57 
 community-staging-x86_64/PKGBUILD |   57 
 2 files changed, 114 insertions(+)

Copied: bochs/repos/community-staging-i686/PKGBUILD (from rev 194932, 
bochs/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-11-07 17:37:17 UTC (rev 194933)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Tom Newsom 
+# Contributor: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.8
+pkgrel=4
+pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('8a243e2b5f7562f32d2b26f3cebbba08')
+
+prepare() {
+cd "$srcdir/$pkgname-$pkgver"
+# 4.X kernel is basically 3.20
+sed -i 's/2\.6\*|3\.\*)/2.6*|3.*|4.*)/' configure*
+}
+
+build() {
+cd "$srcdir/$pkgname-$pkgver"
+
+./configure \
+--prefix=/usr \
+--without-wx \
+--with-x11 \
+--with-x \
+--with-term \
+--disable-docbook \
+--enable-cpu-level=6 \
+--enable-fpu \
+--enable-3dnow \
+--enable-disasm \
+--enable-smp \
+--enable-x86-64 \
+--enable-avx \
+--enable-long-phy-address \
+--enable-disasm \
+--enable-pcidev \
+--enable-usb \
+--enable-debugger
+#--with-sdl
+#--enable-x86-debugger
+#--enable-all-optimizations
+#--enable-plugins
+sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+make -j 1
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
+}

Copied: bochs/repos/community-staging-x86_64/PKGBUILD (from rev 194932, 
bochs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-11-07 17:37:17 UTC (rev 194933)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Tom Newsom 
+# Contributor: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.8
+pkgrel=4
+pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('8a243e2b5f7562f32d2b26f3cebbba08')
+
+prepare() {
+cd "$srcdir/$pkgname-$pkgver"
+# 4.X kernel is basically 3.20
+sed -i 's/2\.6\*|3\.\*)/2.6*|3.*|4.*)/' configure*
+}
+
+build() {
+cd "$srcdir/$pkgname-$pkgver"
+
+./configure \
+--prefix=/usr \
+--without-wx \
+--with-x11 \
+--with-x \
+--with-term \
+--disable-docbook \
+--enable-cpu-level=6 \
+--enable-fpu \
+--enable-3dnow \
+--enable-disasm \
+--enable-smp \
+--enable-x86-64 \
+--enable-avx \
+--enable-long-phy-address \
+--enable-disasm \
+--enable-pcidev \
+--enable-usb \
+--enable-debugger
+#--with-sdl
+#--enable-x86-debugger
+#--enable-all-optimizations
+#--enable-plugins
+sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+make -j 1
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
+}


[arch-commits] Commit in bochs/trunk (PKGBUILD)

2016-11-07 Thread Evangelos Foutras
Date: Monday, November 7, 2016 @ 17:37:09
  Author: foutrelis
Revision: 194932

readline 7.0 rebuild

Modified:
  bochs/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-07 17:35:35 UTC (rev 194931)
+++ PKGBUILD2016-11-07 17:37:09 UTC (rev 194932)
@@ -5,7 +5,7 @@
 
 pkgname=bochs
 pkgver=2.6.8
-pkgrel=3
+pkgrel=4
 pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
 arch=('i686' 'x86_64')
 url="http://bochs.sourceforge.net/";


[arch-commits] Commit in bochs/repos (4 files)

2015-12-06 Thread Antonio Rojas
Date: Monday, December 7, 2015 @ 02:59:37
  Author: arojas
Revision: 149510

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  bochs/repos/community-staging-i686/
  bochs/repos/community-staging-i686/PKGBUILD
(from rev 149509, bochs/trunk/PKGBUILD)
  bochs/repos/community-staging-x86_64/
  bochs/repos/community-staging-x86_64/PKGBUILD
(from rev 149509, bochs/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   57 
 community-staging-x86_64/PKGBUILD |   57 
 2 files changed, 114 insertions(+)

Copied: bochs/repos/community-staging-i686/PKGBUILD (from rev 149509, 
bochs/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-07 01:59:37 UTC (rev 149510)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Tom Newsom 
+# Contributor: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.8
+pkgrel=3
+pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('8a243e2b5f7562f32d2b26f3cebbba08')
+
+prepare() {
+cd "$srcdir/$pkgname-$pkgver"
+# 4.X kernel is basically 3.20
+sed -i 's/2\.6\*|3\.\*)/2.6*|3.*|4.*)/' configure*
+}
+
+build() {
+cd "$srcdir/$pkgname-$pkgver"
+
+./configure \
+--prefix=/usr \
+--without-wx \
+--with-x11 \
+--with-x \
+--with-term \
+--disable-docbook \
+--enable-cpu-level=6 \
+--enable-fpu \
+--enable-3dnow \
+--enable-disasm \
+--enable-smp \
+--enable-x86-64 \
+--enable-avx \
+--enable-long-phy-address \
+--enable-disasm \
+--enable-pcidev \
+--enable-usb \
+--enable-debugger
+#--with-sdl
+#--enable-x86-debugger
+#--enable-all-optimizations
+#--enable-plugins
+sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+make -j 1
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
+}

Copied: bochs/repos/community-staging-x86_64/PKGBUILD (from rev 149509, 
bochs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-07 01:59:37 UTC (rev 149510)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Tom Newsom 
+# Contributor: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.8
+pkgrel=3
+pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('8a243e2b5f7562f32d2b26f3cebbba08')
+
+prepare() {
+cd "$srcdir/$pkgname-$pkgver"
+# 4.X kernel is basically 3.20
+sed -i 's/2\.6\*|3\.\*)/2.6*|3.*|4.*)/' configure*
+}
+
+build() {
+cd "$srcdir/$pkgname-$pkgver"
+
+./configure \
+--prefix=/usr \
+--without-wx \
+--with-x11 \
+--with-x \
+--with-term \
+--disable-docbook \
+--enable-cpu-level=6 \
+--enable-fpu \
+--enable-3dnow \
+--enable-disasm \
+--enable-smp \
+--enable-x86-64 \
+--enable-avx \
+--enable-long-phy-address \
+--enable-disasm \
+--enable-pcidev \
+--enable-usb \
+--enable-debugger
+#--with-sdl
+#--enable-x86-debugger
+#--enable-all-optimizations
+#--enable-plugins
+sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+make -j 1
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
+}


[arch-commits] Commit in bochs/trunk (PKGBUILD)

2015-12-06 Thread Antonio Rojas
Date: Monday, December 7, 2015 @ 02:59:24
  Author: arojas
Revision: 149509

C++11 ABI rebuild

Modified:
  bochs/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-07 01:56:17 UTC (rev 149508)
+++ PKGBUILD2015-12-07 01:59:24 UTC (rev 149509)
@@ -5,7 +5,7 @@
 
 pkgname=bochs
 pkgver=2.6.8
-pkgrel=2
+pkgrel=3
 pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
 arch=('i686' 'x86_64')
 url="http://bochs.sourceforge.net/";


[arch-commits] Commit in bochs/repos (4 files)

2015-09-09 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 05:58:50
  Author: foutrelis
Revision: 139737

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  bochs/repos/community-staging-i686/
  bochs/repos/community-staging-i686/PKGBUILD
(from rev 139736, bochs/trunk/PKGBUILD)
  bochs/repos/community-staging-x86_64/
  bochs/repos/community-staging-x86_64/PKGBUILD
(from rev 139736, bochs/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   57 
 community-staging-x86_64/PKGBUILD |   57 
 2 files changed, 114 insertions(+)

Copied: bochs/repos/community-staging-i686/PKGBUILD (from rev 139736, 
bochs/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-10 03:58:50 UTC (rev 139737)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Tom Newsom 
+# Contributor: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.8
+pkgrel=2
+pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('8a243e2b5f7562f32d2b26f3cebbba08')
+
+prepare() {
+cd "$srcdir/$pkgname-$pkgver"
+# 4.X kernel is basically 3.20
+sed -i 's/2\.6\*|3\.\*)/2.6*|3.*|4.*)/' configure*
+}
+
+build() {
+cd "$srcdir/$pkgname-$pkgver"
+
+./configure \
+--prefix=/usr \
+--without-wx \
+--with-x11 \
+--with-x \
+--with-term \
+--disable-docbook \
+--enable-cpu-level=6 \
+--enable-fpu \
+--enable-3dnow \
+--enable-disasm \
+--enable-smp \
+--enable-x86-64 \
+--enable-avx \
+--enable-long-phy-address \
+--enable-disasm \
+--enable-pcidev \
+--enable-usb \
+--enable-debugger
+#--with-sdl
+#--enable-x86-debugger
+#--enable-all-optimizations
+#--enable-plugins
+sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+make -j 1
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
+}

Copied: bochs/repos/community-staging-x86_64/PKGBUILD (from rev 139736, 
bochs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-09-10 03:58:50 UTC (rev 139737)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Tom Newsom 
+# Contributor: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.8
+pkgrel=2
+pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('8a243e2b5f7562f32d2b26f3cebbba08')
+
+prepare() {
+cd "$srcdir/$pkgname-$pkgver"
+# 4.X kernel is basically 3.20
+sed -i 's/2\.6\*|3\.\*)/2.6*|3.*|4.*)/' configure*
+}
+
+build() {
+cd "$srcdir/$pkgname-$pkgver"
+
+./configure \
+--prefix=/usr \
+--without-wx \
+--with-x11 \
+--with-x \
+--with-term \
+--disable-docbook \
+--enable-cpu-level=6 \
+--enable-fpu \
+--enable-3dnow \
+--enable-disasm \
+--enable-smp \
+--enable-x86-64 \
+--enable-avx \
+--enable-long-phy-address \
+--enable-disasm \
+--enable-pcidev \
+--enable-usb \
+--enable-debugger
+#--with-sdl
+#--enable-x86-debugger
+#--enable-all-optimizations
+#--enable-plugins
+sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+make -j 1
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
+}


[arch-commits] Commit in bochs/trunk (PKGBUILD)

2015-09-09 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 05:58:42
  Author: foutrelis
Revision: 139736

ncurses 6.0 rebuild.

Modified:
  bochs/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 03:48:37 UTC (rev 139735)
+++ PKGBUILD2015-09-10 03:58:42 UTC (rev 139736)
@@ -5,7 +5,7 @@
 
 pkgname=bochs
 pkgver=2.6.8
-pkgrel=1
+pkgrel=2
 pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
 arch=('i686' 'x86_64')
 url="http://bochs.sourceforge.net/";


[arch-commits] Commit in bochs/repos (4 files)

2015-05-16 Thread Kyle Keen
Date: Saturday, May 16, 2015 @ 14:34:59
  Author: kkeen
Revision: 133577

archrelease: copy trunk to community-i686, community-x86_64

Added:
  bochs/repos/community-i686/PKGBUILD
(from rev 133576, bochs/trunk/PKGBUILD)
  bochs/repos/community-x86_64/PKGBUILD
(from rev 133576, bochs/trunk/PKGBUILD)
Deleted:
  bochs/repos/community-i686/PKGBUILD
  bochs/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  114 
 community-i686/PKGBUILD   |   51 ---
 community-x86_64/PKGBUILD |   51 ---
 3 files changed, 114 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-16 12:34:39 UTC (rev 133576)
+++ community-i686/PKGBUILD 2015-05-16 12:34:59 UTC (rev 133577)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Tom Newsom 
-# Contributor: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.6.7
-pkgrel=1
-pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
-arch=('i686' 'x86_64')
-url="http://bochs.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('8ae62e24c19dc862f5e8660a34ab31b2')
-
-build() {
-cd "$srcdir/$pkgname-$pkgver"
-
-./configure \
---prefix=/usr \
---without-wx \
---with-x11 \
---with-x \
---with-term \
---disable-docbook \
---enable-cpu-level=6 \
---enable-fpu \
---enable-3dnow \
---enable-disasm \
---enable-smp \
---enable-x86-64 \
---enable-avx \
---enable-long-phy-address \
---enable-disasm \
---enable-pcidev \
---enable-usb \
---enable-debugger
-#--with-sdl
-#--enable-x86-debugger
-#--enable-all-optimizations
-#--enable-plugins
-sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
-make -j 1
-}
-
-package() {
-cd "$srcdir/$pkgname-$pkgver"
-make DESTDIR="$pkgdir" install
-install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
-}

Copied: bochs/repos/community-i686/PKGBUILD (from rev 133576, 
bochs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-16 12:34:59 UTC (rev 133577)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Tom Newsom 
+# Contributor: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.8
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('8a243e2b5f7562f32d2b26f3cebbba08')
+
+prepare() {
+cd "$srcdir/$pkgname-$pkgver"
+# 4.X kernel is basically 3.20
+sed -i 's/2\.6\*|3\.\*)/2.6*|3.*|4.*)/' configure*
+}
+
+build() {
+cd "$srcdir/$pkgname-$pkgver"
+
+./configure \
+--prefix=/usr \
+--without-wx \
+--with-x11 \
+--with-x \
+--with-term \
+--disable-docbook \
+--enable-cpu-level=6 \
+--enable-fpu \
+--enable-3dnow \
+--enable-disasm \
+--enable-smp \
+--enable-x86-64 \
+--enable-avx \
+--enable-long-phy-address \
+--enable-disasm \
+--enable-pcidev \
+--enable-usb \
+--enable-debugger
+#--with-sdl
+#--enable-x86-debugger
+#--enable-all-optimizations
+#--enable-plugins
+sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+make -j 1
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-05-16 12:34:39 UTC (rev 133576)
+++ community-x86_64/PKGBUILD   2015-05-16 12:34:59 UTC (rev 133577)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Tom Newsom 
-# Contributor: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.6.7
-pkgrel=1
-pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
-arch=('i686' 'x86_64')
-url="http://bochs.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('8ae62e24c19dc862f5e8660a34ab31b2')
-
-build() {
-cd "$srcdir/$pkgname-$pkgver"
-
-./configure \
---prefix=/usr \
---without-wx \
---with-x11 \
---with-x \
---wi

[arch-commits] Commit in bochs/trunk (PKGBUILD)

2015-05-16 Thread Kyle Keen
Date: Saturday, May 16, 2015 @ 14:34:39
  Author: kkeen
Revision: 133576

upgpkg: bochs 2.6.8-1

Modified:
  bochs/trunk/PKGBUILD

--+
 PKGBUILD |   10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-16 10:32:58 UTC (rev 133575)
+++ PKGBUILD2015-05-16 12:34:39 UTC (rev 133576)
@@ -4,7 +4,7 @@
 # Contributor: Kevin Piche 
 
 pkgname=bochs
-pkgver=2.6.7
+pkgver=2.6.8
 pkgrel=1
 pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
 arch=('i686' 'x86_64')
@@ -12,8 +12,14 @@
 license=('LGPL')
 depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
 
source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('8ae62e24c19dc862f5e8660a34ab31b2')
+md5sums=('8a243e2b5f7562f32d2b26f3cebbba08')
 
+prepare() {
+cd "$srcdir/$pkgname-$pkgver"
+# 4.X kernel is basically 3.20
+sed -i 's/2\.6\*|3\.\*)/2.6*|3.*|4.*)/' configure*
+}
+
 build() {
 cd "$srcdir/$pkgname-$pkgver"
 


[arch-commits] Commit in bochs/repos (4 files)

2014-11-10 Thread Kyle Keen
Date: Monday, November 10, 2014 @ 23:33:51
  Author: kkeen
Revision: 122321

archrelease: copy trunk to community-i686, community-x86_64

Added:
  bochs/repos/community-i686/PKGBUILD
(from rev 122320, bochs/trunk/PKGBUILD)
  bochs/repos/community-x86_64/PKGBUILD
(from rev 122320, bochs/trunk/PKGBUILD)
Deleted:
  bochs/repos/community-i686/PKGBUILD
  bochs/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  102 
 community-i686/PKGBUILD   |   51 --
 community-x86_64/PKGBUILD |   51 --
 3 files changed, 102 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-10 22:33:21 UTC (rev 122320)
+++ community-i686/PKGBUILD 2014-11-10 22:33:51 UTC (rev 122321)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Tom Newsom 
-# Contributor: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.6.6
-pkgrel=2
-pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
-arch=('i686' 'x86_64')
-url="http://bochs.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('f5c8483bc478381dd5979f6b3972d44e')
-
-build() {
-cd "$srcdir/$pkgname-$pkgver"
-
-./configure \
---prefix=/usr \
---without-wx \
---with-x11 \
---with-x \
---with-term \
---disable-docbook \
---enable-cpu-level=6 \
---enable-fpu \
---enable-3dnow \
---enable-disasm \
---enable-smp \
---enable-x86-64 \
---enable-avx \
---enable-long-phy-address \
---enable-disasm \
---enable-pcidev \
---enable-usb \
---enable-debugger
-#--with-sdl
-#--enable-x86-debugger
-#--enable-all-optimizations
-#--enable-plugins
-sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
-make -j 1
-}
-
-package() {
-cd "$srcdir/$pkgname-$pkgver"
-make DESTDIR="$pkgdir" install
-install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
-}

Copied: bochs/repos/community-i686/PKGBUILD (from rev 122320, 
bochs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-10 22:33:51 UTC (rev 122321)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Tom Newsom 
+# Contributor: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.7
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('8ae62e24c19dc862f5e8660a34ab31b2')
+
+build() {
+cd "$srcdir/$pkgname-$pkgver"
+
+./configure \
+--prefix=/usr \
+--without-wx \
+--with-x11 \
+--with-x \
+--with-term \
+--disable-docbook \
+--enable-cpu-level=6 \
+--enable-fpu \
+--enable-3dnow \
+--enable-disasm \
+--enable-smp \
+--enable-x86-64 \
+--enable-avx \
+--enable-long-phy-address \
+--enable-disasm \
+--enable-pcidev \
+--enable-usb \
+--enable-debugger
+#--with-sdl
+#--enable-x86-debugger
+#--enable-all-optimizations
+#--enable-plugins
+sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+make -j 1
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-11-10 22:33:21 UTC (rev 122320)
+++ community-x86_64/PKGBUILD   2014-11-10 22:33:51 UTC (rev 122321)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Tom Newsom 
-# Contributor: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.6.6
-pkgrel=2
-pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
-arch=('i686' 'x86_64')
-url="http://bochs.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('f5c8483bc478381dd5979f6b3972d44e')
-
-build() {
-cd "$srcdir/$pkgname-$pkgver"
-
-./configure \
---prefix=/usr \
---without-wx \
---with-x11 \
---with-x \
---with-term \
---disable-docbook \
---enable-cpu-level=6 \
---enable-fpu \
---enable-3dnow \
---enab

[arch-commits] Commit in bochs/trunk (PKGBUILD)

2014-11-10 Thread Kyle Keen
Date: Monday, November 10, 2014 @ 23:33:21
  Author: kkeen
Revision: 122320

upgpkg: bochs 2.6.7-1

Modified:
  bochs/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-10 22:24:43 UTC (rev 122319)
+++ PKGBUILD2014-11-10 22:33:21 UTC (rev 122320)
@@ -4,8 +4,8 @@
 # Contributor: Kevin Piche 
 
 pkgname=bochs
-pkgver=2.6.6
-pkgrel=2
+pkgver=2.6.7
+pkgrel=1
 pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
 arch=('i686' 'x86_64')
 url="http://bochs.sourceforge.net/";
@@ -12,7 +12,7 @@
 license=('LGPL')
 depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
 
source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('f5c8483bc478381dd5979f6b3972d44e')
+md5sums=('8ae62e24c19dc862f5e8660a34ab31b2')
 
 build() {
 cd "$srcdir/$pkgname-$pkgver"


[arch-commits] Commit in bochs/repos (4 files)

2014-10-06 Thread Kyle Keen
Date: Monday, October 6, 2014 @ 23:29:48
  Author: kkeen
Revision: 120308

archrelease: copy trunk to community-i686, community-x86_64

Added:
  bochs/repos/community-i686/PKGBUILD
(from rev 120307, bochs/trunk/PKGBUILD)
  bochs/repos/community-x86_64/PKGBUILD
(from rev 120307, bochs/trunk/PKGBUILD)
Deleted:
  bochs/repos/community-i686/PKGBUILD
  bochs/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  102 
 community-i686/PKGBUILD   |   55 ---
 community-x86_64/PKGBUILD |   55 ---
 3 files changed, 102 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-06 21:28:47 UTC (rev 120307)
+++ community-i686/PKGBUILD 2014-10-06 21:29:48 UTC (rev 120308)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Tom Newsom 
-# Contributor: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.6.6
-pkgrel=1
-pkgdesc="A portable x86 PC emulation software package"
-arch=('i686' 'x86_64')
-url="http://bochs.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs' 'libxrandr')
-#makedepends=('sdl')
-#optdepends=('sdl: debuggers')
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('f5c8483bc478381dd5979f6b3972d44e')
-
-build() {
-cd "$srcdir/$pkgname-$pkgver"
-
-# typos in 2.6.5
-#sed -i 's/Bx3DNowOpcode\[i->modRMForm.Ib/&\[0\]/' cpu/fetchdecode{,64}.cc
-
-# todo, figure out why debuggers won't build (FS#38274)
-./configure \
---prefix=/usr \
---without-wx \
---with-x11 \
---disable-docbook \
---enable-cpu-level=6 \
---enable-fpu \
---enable-3dnow \
---enable-disasm \
---enable-smp \
---enable-x86-64 \
---enable-avx \
---enable-long-phy-address \
---enable-disasm \
---enable-pcidev \
---enable-usb
-#--with-sdl
-#--enable-debugger
-#--enable-x86-debugger
-#--enable-all-optimizations
-#--enable-plugins
-#sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
-make
-}
-
-package() {
-cd "$srcdir/$pkgname-$pkgver"
-make DESTDIR="$pkgdir" install
-install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
-}

Copied: bochs/repos/community-i686/PKGBUILD (from rev 120307, 
bochs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-06 21:29:48 UTC (rev 120308)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Tom Newsom 
+# Contributor: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.6
+pkgrel=2
+pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('f5c8483bc478381dd5979f6b3972d44e')
+
+build() {
+cd "$srcdir/$pkgname-$pkgver"
+
+./configure \
+--prefix=/usr \
+--without-wx \
+--with-x11 \
+--with-x \
+--with-term \
+--disable-docbook \
+--enable-cpu-level=6 \
+--enable-fpu \
+--enable-3dnow \
+--enable-disasm \
+--enable-smp \
+--enable-x86-64 \
+--enable-avx \
+--enable-long-phy-address \
+--enable-disasm \
+--enable-pcidev \
+--enable-usb \
+--enable-debugger
+#--with-sdl
+#--enable-x86-debugger
+#--enable-all-optimizations
+#--enable-plugins
+sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+make -j 1
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-10-06 21:28:47 UTC (rev 120307)
+++ community-x86_64/PKGBUILD   2014-10-06 21:29:48 UTC (rev 120308)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Tom Newsom 
-# Contributor: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.6.6
-pkgrel=1
-pkgdesc="A portable x86 PC emulation software package"
-arch=('i686' 'x86_64')
-url="http://bochs.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs' 'libxrandr')
-#makedepends=('sdl')
-#optdepends=('sdl: debuggers')
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('f5c8483bc478381dd5979f6b3972d44e')
-
-build() {
-cd "$srcdir/$pkgname-$pkgver"
-
-# typos in 2.6.5
-#sed -i 's/Bx3DNowOpcode\[i->modRMForm.Ib/&\[0\]/' cpu/fetchdecode{,64}.cc
-
-# tod

[arch-commits] Commit in bochs/trunk (PKGBUILD)

2014-10-06 Thread Kyle Keen
Date: Monday, October 6, 2014 @ 23:28:47
  Author: kkeen
Revision: 120307

upgpkg: bochs 2.6.6-2

Modified:
  bochs/trunk/PKGBUILD

--+
 PKGBUILD |   22 +-
 1 file changed, 9 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-06 20:21:34 UTC (rev 120306)
+++ PKGBUILD2014-10-06 21:28:47 UTC (rev 120307)
@@ -5,14 +5,12 @@
 
 pkgname=bochs
 pkgver=2.6.6
-pkgrel=1
-pkgdesc="A portable x86 PC emulation software package"
+pkgrel=2
+pkgdesc="A portable x86 PC emulation software package, including GUI debugger"
 arch=('i686' 'x86_64')
 url="http://bochs.sourceforge.net/";
 license=('LGPL')
-depends=('gcc-libs' 'libxrandr')
-#makedepends=('sdl')
-#optdepends=('sdl: debuggers')
+depends=('gcc-libs' 'libxrandr' 'libxpm' 'gtk2')
 
source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
 md5sums=('f5c8483bc478381dd5979f6b3972d44e')
 
@@ -19,14 +17,12 @@
 build() {
 cd "$srcdir/$pkgname-$pkgver"
 
-# typos in 2.6.5
-#sed -i 's/Bx3DNowOpcode\[i->modRMForm.Ib/&\[0\]/' cpu/fetchdecode{,64}.cc
-
-# todo, figure out why debuggers won't build (FS#38274)
 ./configure \
 --prefix=/usr \
 --without-wx \
 --with-x11 \
+--with-x \
+--with-term \
 --disable-docbook \
 --enable-cpu-level=6 \
 --enable-fpu \
@@ -38,14 +34,14 @@
 --enable-long-phy-address \
 --enable-disasm \
 --enable-pcidev \
---enable-usb
+--enable-usb \
+--enable-debugger
 #--with-sdl
-#--enable-debugger
 #--enable-x86-debugger
 #--enable-all-optimizations
 #--enable-plugins
-#sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
-make
+sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+make -j 1
 }
 
 package() {


[arch-commits] Commit in bochs/repos (4 files)

2014-07-01 Thread Kyle Keen
Date: Tuesday, July 1, 2014 @ 12:54:22
  Author: kkeen
Revision: 113983

archrelease: copy trunk to community-i686, community-x86_64

Added:
  bochs/repos/community-i686/PKGBUILD
(from rev 113982, bochs/trunk/PKGBUILD)
  bochs/repos/community-x86_64/PKGBUILD
(from rev 113982, bochs/trunk/PKGBUILD)
Deleted:
  bochs/repos/community-i686/PKGBUILD
  bochs/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  110 
 community-i686/PKGBUILD   |   55 --
 community-x86_64/PKGBUILD |   55 --
 3 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-01 10:54:02 UTC (rev 113982)
+++ community-i686/PKGBUILD 2014-07-01 10:54:22 UTC (rev 113983)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Tom Newsom 
-# Contributor: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.6.5
-pkgrel=1
-pkgdesc="A portable x86 PC emulation software package"
-arch=('i686' 'x86_64')
-url="http://bochs.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs' 'libxrandr')
-#makedepends=('sdl')
-#optdepends=('sdl: debuggers')
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('455020b528ac31477a58779a9a4a96e4')
-
-build() {
-cd "$srcdir/$pkgname-$pkgver"
-
-# typos in 2.6.5
-sed -i 's/Bx3DNowOpcode\[i->modRMForm.Ib/&\[0\]/' cpu/fetchdecode{,64}.cc
-
-# todo, figure out why debuggers won't build (FS#38274)
-./configure \
---prefix=/usr \
---without-wx \
---with-x11 \
---disable-docbook \
---enable-cpu-level=6 \
---enable-fpu \
---enable-3dnow \
---enable-disasm \
---enable-smp \
---enable-x86-64 \
---enable-avx \
---enable-long-phy-address \
---enable-disasm \
---enable-pcidev \
---enable-usb
-#--with-sdl
-#--enable-debugger
-#--enable-x86-debugger
-#--enable-all-optimizations
-#--enable-plugins
-#sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
-make
-}
-
-package() {
-cd "$srcdir/$pkgname-$pkgver"
-make DESTDIR="$pkgdir" install
-install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
-}

Copied: bochs/repos/community-i686/PKGBUILD (from rev 113982, 
bochs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-01 10:54:22 UTC (rev 113983)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Tom Newsom 
+# Contributor: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.6
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr')
+#makedepends=('sdl')
+#optdepends=('sdl: debuggers')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('f5c8483bc478381dd5979f6b3972d44e')
+
+build() {
+cd "$srcdir/$pkgname-$pkgver"
+
+# typos in 2.6.5
+#sed -i 's/Bx3DNowOpcode\[i->modRMForm.Ib/&\[0\]/' cpu/fetchdecode{,64}.cc
+
+# todo, figure out why debuggers won't build (FS#38274)
+./configure \
+--prefix=/usr \
+--without-wx \
+--with-x11 \
+--disable-docbook \
+--enable-cpu-level=6 \
+--enable-fpu \
+--enable-3dnow \
+--enable-disasm \
+--enable-smp \
+--enable-x86-64 \
+--enable-avx \
+--enable-long-phy-address \
+--enable-disasm \
+--enable-pcidev \
+--enable-usb
+#--with-sdl
+#--enable-debugger
+#--enable-x86-debugger
+#--enable-all-optimizations
+#--enable-plugins
+#sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+make
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-07-01 10:54:02 UTC (rev 113982)
+++ community-x86_64/PKGBUILD   2014-07-01 10:54:22 UTC (rev 113983)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Tom Newsom 
-# Contributor: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.6.5
-pkgrel=1
-pkgdesc="A portable x86 PC emulation software package"
-arch=('i686' 'x86_64')
-url="http://bochs.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs' 'libxrandr')
-#makedepends=('sdl')
-#optdepends=('sdl: debuggers')
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('455020b528ac31477a58779a9a4a96e4')
-
-build() {
-cd "$srcdir/$pkgname

[arch-commits] Commit in bochs/trunk (PKGBUILD)

2014-07-01 Thread Kyle Keen
Date: Tuesday, July 1, 2014 @ 12:54:02
  Author: kkeen
Revision: 113982

upgpkg: bochs 2.6.6-1

Modified:
  bochs/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 10:52:05 UTC (rev 113981)
+++ PKGBUILD2014-07-01 10:54:02 UTC (rev 113982)
@@ -4,7 +4,7 @@
 # Contributor: Kevin Piche 
 
 pkgname=bochs
-pkgver=2.6.5
+pkgver=2.6.6
 pkgrel=1
 pkgdesc="A portable x86 PC emulation software package"
 arch=('i686' 'x86_64')
@@ -14,13 +14,13 @@
 #makedepends=('sdl')
 #optdepends=('sdl: debuggers')
 
source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('455020b528ac31477a58779a9a4a96e4')
+md5sums=('f5c8483bc478381dd5979f6b3972d44e')
 
 build() {
 cd "$srcdir/$pkgname-$pkgver"
 
 # typos in 2.6.5
-sed -i 's/Bx3DNowOpcode\[i->modRMForm.Ib/&\[0\]/' cpu/fetchdecode{,64}.cc
+#sed -i 's/Bx3DNowOpcode\[i->modRMForm.Ib/&\[0\]/' cpu/fetchdecode{,64}.cc
 
 # todo, figure out why debuggers won't build (FS#38274)
 ./configure \



[arch-commits] Commit in bochs/repos (4 files)

2014-06-03 Thread Kyle Keen
Date: Tuesday, June 3, 2014 @ 14:08:57
  Author: kkeen
Revision: 112550

archrelease: copy trunk to community-i686, community-x86_64

Added:
  bochs/repos/community-i686/PKGBUILD
(from rev 112549, bochs/trunk/PKGBUILD)
  bochs/repos/community-x86_64/PKGBUILD
(from rev 112549, bochs/trunk/PKGBUILD)
Deleted:
  bochs/repos/community-i686/PKGBUILD
  bochs/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  110 
 community-i686/PKGBUILD   |   27 --
 community-x86_64/PKGBUILD |   27 --
 3 files changed, 110 insertions(+), 54 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-06-03 12:08:13 UTC (rev 112549)
+++ community-i686/PKGBUILD 2014-06-03 12:08:57 UTC (rev 112550)
@@ -1,27 +0,0 @@
-# $Id$
-#Contributor: Tom Newsom 
-# Maintainer: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.6.2
-pkgrel=1
-pkgdesc="A portable x86 PC emulation software package"
-arch=('i686' 'x86_64')
-url="http://bochs.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs' 'libxrandr')
-source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('82ecaff9826d4f29fa46f3062e2957b8')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
-  --enable-fpu --enable-3dnow --enable-disasm
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -D -m 644 .bochsrc "${pkgdir}/etc/bochsrc-sample.txt"
-}

Copied: bochs/repos/community-i686/PKGBUILD (from rev 112549, 
bochs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-06-03 12:08:57 UTC (rev 112550)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Tom Newsom 
+# Contributor: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.5
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr')
+#makedepends=('sdl')
+#optdepends=('sdl: debuggers')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('455020b528ac31477a58779a9a4a96e4')
+
+build() {
+cd "$srcdir/$pkgname-$pkgver"
+
+# typos in 2.6.5
+sed -i 's/Bx3DNowOpcode\[i->modRMForm.Ib/&\[0\]/' cpu/fetchdecode{,64}.cc
+
+# todo, figure out why debuggers won't build (FS#38274)
+./configure \
+--prefix=/usr \
+--without-wx \
+--with-x11 \
+--disable-docbook \
+--enable-cpu-level=6 \
+--enable-fpu \
+--enable-3dnow \
+--enable-disasm \
+--enable-smp \
+--enable-x86-64 \
+--enable-avx \
+--enable-long-phy-address \
+--enable-disasm \
+--enable-pcidev \
+--enable-usb
+#--with-sdl
+#--enable-debugger
+#--enable-x86-debugger
+#--enable-all-optimizations
+#--enable-plugins
+#sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+make
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-06-03 12:08:13 UTC (rev 112549)
+++ community-x86_64/PKGBUILD   2014-06-03 12:08:57 UTC (rev 112550)
@@ -1,27 +0,0 @@
-# $Id$
-#Contributor: Tom Newsom 
-# Maintainer: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.6.2
-pkgrel=1
-pkgdesc="A portable x86 PC emulation software package"
-arch=('i686' 'x86_64')
-url="http://bochs.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs' 'libxrandr')
-source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('82ecaff9826d4f29fa46f3062e2957b8')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
-  --enable-fpu --enable-3dnow --enable-disasm
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -D -m 644 .bochsrc "${pkgdir}/etc/bochsrc-sample.txt"
-}

Copied: bochs/repos/community-x86_64/PKGBUILD (from rev 112549, 
bochs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-06-03 12:08:57 UTC (rev 112550)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Tom Newsom 
+# Contributor: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.5
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package"
+arch=('i686' 'x86_64')
+

[arch-commits] Commit in bochs/trunk (PKGBUILD)

2014-06-03 Thread Kyle Keen
Date: Tuesday, June 3, 2014 @ 14:08:13
  Author: kkeen
Revision: 112549

upgpkg: bochs 2.6.5-1

Modified:
  bochs/trunk/PKGBUILD

--+
 PKGBUILD |   52 
 1 file changed, 40 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-06-03 10:47:27 UTC (rev 112548)
+++ PKGBUILD2014-06-03 12:08:13 UTC (rev 112549)
@@ -1,9 +1,10 @@
 # $Id$
-#Contributor: Tom Newsom 
-# Maintainer: Kevin Piche 
+# Maintainer: Kyle Keen 
+# Contributor: Tom Newsom 
+# Contributor: Kevin Piche 
 
 pkgname=bochs
-pkgver=2.6.2
+pkgver=2.6.5
 pkgrel=1
 pkgdesc="A portable x86 PC emulation software package"
 arch=('i686' 'x86_64')
@@ -10,18 +11,45 @@
 url="http://bochs.sourceforge.net/";
 license=('LGPL')
 depends=('gcc-libs' 'libxrandr')
-source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('82ecaff9826d4f29fa46f3062e2957b8')
+#makedepends=('sdl')
+#optdepends=('sdl: debuggers')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('455020b528ac31477a58779a9a4a96e4')
 
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
-  --enable-fpu --enable-3dnow --enable-disasm
-  make
+cd "$srcdir/$pkgname-$pkgver"
+
+# typos in 2.6.5
+sed -i 's/Bx3DNowOpcode\[i->modRMForm.Ib/&\[0\]/' cpu/fetchdecode{,64}.cc
+
+# todo, figure out why debuggers won't build (FS#38274)
+./configure \
+--prefix=/usr \
+--without-wx \
+--with-x11 \
+--disable-docbook \
+--enable-cpu-level=6 \
+--enable-fpu \
+--enable-3dnow \
+--enable-disasm \
+--enable-smp \
+--enable-x86-64 \
+--enable-avx \
+--enable-long-phy-address \
+--enable-disasm \
+--enable-pcidev \
+--enable-usb
+#--with-sdl
+#--enable-debugger
+#--enable-x86-debugger
+#--enable-all-optimizations
+#--enable-plugins
+#sed -i 's/^LIBS = /LIBS = -lpthread/g' Makefile
+make
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -D -m 644 .bochsrc "${pkgdir}/etc/bochsrc-sample.txt"
+cd "$srcdir/$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 .bochsrc "$pkgdir/etc/bochsrc-sample.txt"
 }



[arch-commits] Commit in bochs/repos (4 files)

2013-06-20 Thread Kyle Keen
Date: Thursday, June 20, 2013 @ 22:17:58
  Author: kkeen
Revision: 92959

archrelease: copy trunk to community-i686, community-x86_64

Added:
  bochs/repos/community-i686/PKGBUILD
(from rev 92958, bochs/trunk/PKGBUILD)
  bochs/repos/community-x86_64/PKGBUILD
(from rev 92958, bochs/trunk/PKGBUILD)
Deleted:
  bochs/repos/community-i686/PKGBUILD
  bochs/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   54 
 community-i686/PKGBUILD   |   27 --
 community-x86_64/PKGBUILD |   27 --
 3 files changed, 54 insertions(+), 54 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-06-20 20:17:29 UTC (rev 92958)
+++ community-i686/PKGBUILD 2013-06-20 20:17:58 UTC (rev 92959)
@@ -1,27 +0,0 @@
-# $Id$
-#Contributor: Tom Newsom 
-# Maintainer: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.6
-pkgrel=1
-pkgdesc="A portable x86 PC emulation software package"
-arch=('i686' 'x86_64')
-url="http://bochs.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs' 'libxrandr')
-source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('7e25e1a4d2f7e0464e8d6381f38741d9')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
-  --enable-fpu --enable-3dnow --enable-disasm
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -D -m 644 .bochsrc "${pkgdir}/etc/bochsrc-sample.txt"
-}

Copied: bochs/repos/community-i686/PKGBUILD (from rev 92958, 
bochs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-06-20 20:17:58 UTC (rev 92959)
@@ -0,0 +1,27 @@
+# $Id$
+#Contributor: Tom Newsom 
+# Maintainer: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.2
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr')
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('82ecaff9826d4f29fa46f3062e2957b8')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
+  --enable-fpu --enable-3dnow --enable-disasm
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m 644 .bochsrc "${pkgdir}/etc/bochsrc-sample.txt"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-06-20 20:17:29 UTC (rev 92958)
+++ community-x86_64/PKGBUILD   2013-06-20 20:17:58 UTC (rev 92959)
@@ -1,27 +0,0 @@
-# $Id$
-#Contributor: Tom Newsom 
-# Maintainer: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.6
-pkgrel=1
-pkgdesc="A portable x86 PC emulation software package"
-arch=('i686' 'x86_64')
-url="http://bochs.sourceforge.net/";
-license=('LGPL')
-depends=('gcc-libs' 'libxrandr')
-source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('7e25e1a4d2f7e0464e8d6381f38741d9')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
-  --enable-fpu --enable-3dnow --enable-disasm
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -D -m 644 .bochsrc "${pkgdir}/etc/bochsrc-sample.txt"
-}

Copied: bochs/repos/community-x86_64/PKGBUILD (from rev 92958, 
bochs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-06-20 20:17:58 UTC (rev 92959)
@@ -0,0 +1,27 @@
+# $Id$
+#Contributor: Tom Newsom 
+# Maintainer: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6.2
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr')
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('82ecaff9826d4f29fa46f3062e2957b8')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
+  --enable-fpu --enable-3dnow --enable-disasm
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m 644 .bochsrc "${pkgdir}/etc/bochsrc-sample.txt"
+}



[arch-commits] Commit in bochs/trunk (PKGBUILD)

2013-06-20 Thread Kyle Keen
Date: Thursday, June 20, 2013 @ 22:17:29
  Author: kkeen
Revision: 92958

upgpkg: bochs 2.6.2-1

Modified:
  bochs/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-06-20 17:03:45 UTC (rev 92957)
+++ PKGBUILD2013-06-20 20:17:29 UTC (rev 92958)
@@ -3,7 +3,7 @@
 # Maintainer: Kevin Piche 
 
 pkgname=bochs
-pkgver=2.6
+pkgver=2.6.2
 pkgrel=1
 pkgdesc="A portable x86 PC emulation software package"
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 license=('LGPL')
 depends=('gcc-libs' 'libxrandr')
 
source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('7e25e1a4d2f7e0464e8d6381f38741d9')
+md5sums=('82ecaff9826d4f29fa46f3062e2957b8')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in (bochs)

2013-01-27 Thread Pierre Schmitz
Date: Sunday, January 27, 2013 @ 17:10:02
  Author: pierre
Revision: 176134

extra2community: Moving bochs from extra to community

Deleted:
  bochs/



[arch-commits] Commit in bochs/repos (4 files)

2013-01-27 Thread Pierre Schmitz
Date: Sunday, January 27, 2013 @ 17:09:41
  Author: pierre
Revision: 83126

archrelease: copy trunk to community-i686, community-x86_64

Added:
  bochs/repos/community-i686/
  bochs/repos/community-i686/PKGBUILD
(from rev 83125, bochs/trunk/PKGBUILD)
  bochs/repos/community-x86_64/
  bochs/repos/community-x86_64/PKGBUILD
(from rev 83125, bochs/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   27 +++
 community-x86_64/PKGBUILD |   27 +++
 2 files changed, 54 insertions(+)

Copied: bochs/repos/community-i686/PKGBUILD (from rev 83125, 
bochs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-01-27 16:09:41 UTC (rev 83126)
@@ -0,0 +1,27 @@
+# $Id$
+#Contributor: Tom Newsom 
+# Maintainer: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr')
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('7e25e1a4d2f7e0464e8d6381f38741d9')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
+  --enable-fpu --enable-3dnow --enable-disasm
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m 644 .bochsrc "${pkgdir}/etc/bochsrc-sample.txt"
+}

Copied: bochs/repos/community-x86_64/PKGBUILD (from rev 83125, 
bochs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-01-27 16:09:41 UTC (rev 83126)
@@ -0,0 +1,27 @@
+# $Id$
+#Contributor: Tom Newsom 
+# Maintainer: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr')
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('7e25e1a4d2f7e0464e8d6381f38741d9')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
+  --enable-fpu --enable-3dnow --enable-disasm
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m 644 .bochsrc "${pkgdir}/etc/bochsrc-sample.txt"
+}



[arch-commits] Commit in (bochs bochs/repos bochs/trunk bochs/trunk/PKGBUILD)

2013-01-27 Thread Pierre Schmitz
Date: Sunday, January 27, 2013 @ 17:09:32
  Author: pierre
Revision: 83125

extra2community: Moving bochs from extra to community

Added:
  bochs/
  bochs/repos/
  bochs/trunk/
  bochs/trunk/PKGBUILD

--+
 PKGBUILD |   27 +++
 1 file changed, 27 insertions(+)

Added: bochs/trunk/PKGBUILD
===
--- bochs/trunk/PKGBUILD(rev 0)
+++ bochs/trunk/PKGBUILD2013-01-27 16:09:32 UTC (rev 83125)
@@ -0,0 +1,27 @@
+# $Id$
+#Contributor: Tom Newsom 
+# Maintainer: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr')
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('7e25e1a4d2f7e0464e8d6381f38741d9')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
+  --enable-fpu --enable-3dnow --enable-disasm
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m 644 .bochsrc "${pkgdir}/etc/bochsrc-sample.txt"
+}


Property changes on: bochs/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in bochs/repos (4 files)

2012-09-11 Thread Eric Bélanger
Date: Tuesday, September 11, 2012 @ 19:15:35
  Author: eric
Revision: 166567

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  bochs/repos/extra-i686/PKGBUILD
(from rev 166566, bochs/trunk/PKGBUILD)
  bochs/repos/extra-x86_64/PKGBUILD
(from rev 166566, bochs/trunk/PKGBUILD)
Deleted:
  bochs/repos/extra-i686/PKGBUILD
  bochs/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   54 
 extra-x86_64/PKGBUILD |   54 
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-09-11 23:15:10 UTC (rev 166566)
+++ extra-i686/PKGBUILD 2012-09-11 23:15:35 UTC (rev 166567)
@@ -1,27 +0,0 @@
-# $Id$
-#Contributor: Tom Newsom 
-# Maintainer: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.5.1
-pkgrel=1
-pkgdesc="A portable x86 PC emulation software package"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://bochs.sourceforge.net/";
-source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-depends=('gcc-libs' 'libxrandr')
-md5sums=('4fe5325ec422a7f74dbb0adb52c76bb6')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
-  --enable-fpu --enable-3dnow
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make prefix=${pkgdir}/usr install
-  install -D -m 644 .bochsrc ${pkgdir}/etc/bochsrc-sample.txt
-}

Copied: bochs/repos/extra-i686/PKGBUILD (from rev 166566, bochs/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-09-11 23:15:35 UTC (rev 166567)
@@ -0,0 +1,27 @@
+# $Id$
+#Contributor: Tom Newsom 
+# Maintainer: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr')
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('7e25e1a4d2f7e0464e8d6381f38741d9')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
+  --enable-fpu --enable-3dnow --enable-disasm
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m 644 .bochsrc "${pkgdir}/etc/bochsrc-sample.txt"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-09-11 23:15:10 UTC (rev 166566)
+++ extra-x86_64/PKGBUILD   2012-09-11 23:15:35 UTC (rev 166567)
@@ -1,27 +0,0 @@
-# $Id$
-#Contributor: Tom Newsom 
-# Maintainer: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.5.1
-pkgrel=1
-pkgdesc="A portable x86 PC emulation software package"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://bochs.sourceforge.net/";
-source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-depends=('gcc-libs' 'libxrandr')
-md5sums=('4fe5325ec422a7f74dbb0adb52c76bb6')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
-  --enable-fpu --enable-3dnow
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make prefix=${pkgdir}/usr install
-  install -D -m 644 .bochsrc ${pkgdir}/etc/bochsrc-sample.txt
-}

Copied: bochs/repos/extra-x86_64/PKGBUILD (from rev 166566, 
bochs/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-09-11 23:15:35 UTC (rev 166567)
@@ -0,0 +1,27 @@
+# $Id$
+#Contributor: Tom Newsom 
+# Maintainer: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.6
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package"
+arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
+license=('LGPL')
+depends=('gcc-libs' 'libxrandr')
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('7e25e1a4d2f7e0464e8d6381f38741d9')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
+  --enable-fpu --enable-3dnow --enable-disasm
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m 644 .bochsrc "${pkgdir}/etc/bochsrc-sample.txt"
+}



[arch-commits] Commit in bochs/trunk (PKGBUILD)

2012-09-11 Thread Eric Bélanger
Date: Tuesday, September 11, 2012 @ 19:15:10
  Author: eric
Revision: 166566

upgpkg: bochs 2.6-1

Upstream update, Enable disasm (close FS#25927)

Modified:
  bochs/trunk/PKGBUILD

--+
 PKGBUILD |   18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-09-11 17:49:28 UTC (rev 166565)
+++ PKGBUILD2012-09-11 23:15:10 UTC (rev 166566)
@@ -3,25 +3,25 @@
 # Maintainer: Kevin Piche 
 
 pkgname=bochs
-pkgver=2.5.1
+pkgver=2.6
 pkgrel=1
 pkgdesc="A portable x86 PC emulation software package"
 arch=('i686' 'x86_64')
+url="http://bochs.sourceforge.net/";
 license=('LGPL')
-url="http://bochs.sourceforge.net/";
+depends=('gcc-libs' 'libxrandr')
 
source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-depends=('gcc-libs' 'libxrandr')
-md5sums=('4fe5325ec422a7f74dbb0adb52c76bb6')
+md5sums=('7e25e1a4d2f7e0464e8d6381f38741d9')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd "${srcdir}/${pkgname}-${pkgver}"
   ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
-  --enable-fpu --enable-3dnow
+  --enable-fpu --enable-3dnow --enable-disasm
   make
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make prefix=${pkgdir}/usr install
-  install -D -m 644 .bochsrc ${pkgdir}/etc/bochsrc-sample.txt
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m 644 .bochsrc "${pkgdir}/etc/bochsrc-sample.txt"
 }



[arch-commits] Commit in bochs/repos (4 files)

2012-02-24 Thread Pierre Schmitz
Date: Saturday, February 25, 2012 @ 01:28:51
  Author: pierre
Revision: 151161

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  bochs/repos/extra-i686/PKGBUILD
(from rev 151160, bochs/trunk/PKGBUILD)
  bochs/repos/extra-x86_64/PKGBUILD
(from rev 151160, bochs/trunk/PKGBUILD)
Deleted:
  bochs/repos/extra-i686/PKGBUILD
  bochs/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   54 
 extra-x86_64/PKGBUILD |   54 
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-02-25 06:28:21 UTC (rev 151160)
+++ extra-i686/PKGBUILD 2012-02-25 06:28:51 UTC (rev 151161)
@@ -1,27 +0,0 @@
-# $Id$
-#Contributor: Tom Newsom 
-# Maintainer: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.4.6
-pkgrel=1
-pkgdesc="A portable x86 PC emulation software package"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://bochs.sourceforge.net/";
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-depends=('gcc-libs' 'libxrandr')
-sha256sums=('689dcc5fccfd70c8340a54986f0cb9c2824009ed602718802868333da9ac53b9')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --enable-vbe --without-wx --enable-cpu-level=6 \
-  --enable-fpu --enable-3dnow 
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make prefix=${pkgdir}/usr install
-  install -D -m 644 .bochsrc ${pkgdir}/etc/bochsrc-sample.txt
-}

Copied: bochs/repos/extra-i686/PKGBUILD (from rev 151160, bochs/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-02-25 06:28:51 UTC (rev 151161)
@@ -0,0 +1,27 @@
+# $Id$
+#Contributor: Tom Newsom 
+# Maintainer: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.5.1
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://bochs.sourceforge.net/";
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+depends=('gcc-libs' 'libxrandr')
+md5sums=('4fe5325ec422a7f74dbb0adb52c76bb6')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
+  --enable-fpu --enable-3dnow
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make prefix=${pkgdir}/usr install
+  install -D -m 644 .bochsrc ${pkgdir}/etc/bochsrc-sample.txt
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-02-25 06:28:21 UTC (rev 151160)
+++ extra-x86_64/PKGBUILD   2012-02-25 06:28:51 UTC (rev 151161)
@@ -1,27 +0,0 @@
-# $Id$
-#Contributor: Tom Newsom 
-# Maintainer: Kevin Piche 
-
-pkgname=bochs
-pkgver=2.4.6
-pkgrel=1
-pkgdesc="A portable x86 PC emulation software package"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://bochs.sourceforge.net/";
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-depends=('gcc-libs' 'libxrandr')
-sha256sums=('689dcc5fccfd70c8340a54986f0cb9c2824009ed602718802868333da9ac53b9')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --enable-vbe --without-wx --enable-cpu-level=6 \
-  --enable-fpu --enable-3dnow 
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make prefix=${pkgdir}/usr install
-  install -D -m 644 .bochsrc ${pkgdir}/etc/bochsrc-sample.txt
-}

Copied: bochs/repos/extra-x86_64/PKGBUILD (from rev 151160, 
bochs/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-02-25 06:28:51 UTC (rev 151161)
@@ -0,0 +1,27 @@
+# $Id$
+#Contributor: Tom Newsom 
+# Maintainer: Kevin Piche 
+
+pkgname=bochs
+pkgver=2.5.1
+pkgrel=1
+pkgdesc="A portable x86 PC emulation software package"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://bochs.sourceforge.net/";
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+depends=('gcc-libs' 'libxrandr')
+md5sums=('4fe5325ec422a7f74dbb0adb52c76bb6')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
+  --enable-fpu --enable-3dnow
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make prefix=${pkgdir}/usr install
+  install -D -m 644 .bochsrc ${pkgdir}/etc/bochsrc-sample.txt
+}



[arch-commits] Commit in bochs/trunk (PKGBUILD)

2012-02-24 Thread Pierre Schmitz
Date: Saturday, February 25, 2012 @ 01:28:21
  Author: pierre
Revision: 151160

upgpkg: bochs 2.5.1-1

upstream update

Modified:
  bochs/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-25 06:21:40 UTC (rev 151159)
+++ PKGBUILD2012-02-25 06:28:21 UTC (rev 151160)
@@ -3,20 +3,20 @@
 # Maintainer: Kevin Piche 
 
 pkgname=bochs
-pkgver=2.4.6
+pkgver=2.5.1
 pkgrel=1
 pkgdesc="A portable x86 PC emulation software package"
 arch=('i686' 'x86_64')
 license=('LGPL')
 url="http://bochs.sourceforge.net/";
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
 depends=('gcc-libs' 'libxrandr')
-sha256sums=('689dcc5fccfd70c8340a54986f0cb9c2824009ed602718802868333da9ac53b9')
+md5sums=('4fe5325ec422a7f74dbb0adb52c76bb6')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --enable-vbe --without-wx --enable-cpu-level=6 \
-  --enable-fpu --enable-3dnow 
+  ./configure --prefix=/usr --without-wx --enable-cpu-level=6 \
+  --enable-fpu --enable-3dnow
   make
 }
 



[arch-commits] Commit in bochs/repos (extra-x86_64)

2011-06-12 Thread Eric Bélanger
Date: Monday, June 13, 2011 @ 01:59:31
  Author: eric
Revision: 127334

archrelease: copy trunk to extra-x86_64

Added:
  bochs/repos/extra-x86_64/



[arch-commits] Commit in bochs/repos (extra-x86_64)

2011-06-12 Thread Eric Bélanger
Date: Monday, June 13, 2011 @ 01:59:22
  Author: eric
Revision: 127333

archrelease: remove extra-x86_64

Deleted:
  bochs/repos/extra-x86_64/



[arch-commits] Commit in bochs/repos (extra-i686)

2011-06-12 Thread Kevin Piché
Date: Sunday, June 12, 2011 @ 21:13:23
  Author: kevin
Revision: 127311

archrelease: copy trunk to extra-i686

Added:
  bochs/repos/extra-i686/



[arch-commits] Commit in bochs/repos (extra-i686)

2011-06-12 Thread Kevin Piché
Date: Sunday, June 12, 2011 @ 21:13:16
  Author: kevin
Revision: 127310

archrelease: remove extra-i686

Deleted:
  bochs/repos/extra-i686/



[arch-commits] Commit in bochs/trunk (2.4.5-fetchcode.patch PKGBUILD)

2011-06-12 Thread Kevin Piché
Date: Sunday, June 12, 2011 @ 21:13:14
  Author: kevin
Revision: 127309

upgpkg: bochs 2.4.6-1
Updated to 2.4.6

Modified:
  bochs/trunk/PKGBUILD
Deleted:
  bochs/trunk/2.4.5-fetchcode.patch

---+
 2.4.5-fetchcode.patch |   45 -
 PKGBUILD  |8 ++--
 2 files changed, 2 insertions(+), 51 deletions(-)

Deleted: 2.4.5-fetchcode.patch
===
--- 2.4.5-fetchcode.patch   2011-06-13 00:31:54 UTC (rev 127308)
+++ 2.4.5-fetchcode.patch   2011-06-13 01:13:14 UTC (rev 127309)
@@ -1,45 +0,0 @@
 cpu/fetchdecode.cc.orig2010-04-16 15:52:44.0 -0400
-+++ cpu/fetchdecode.cc 2010-10-07 13:23:06.0 -0400
-@@ -1,5 +1,5 @@
- /
--// $Id: fetchdecode.cc,v 1.266 2010/04/16 19:52:44 sshwarts Exp $
-+// $Id: fetchdecode.cc,v 1.267 2010/04/29 21:04:23 sshwarts Exp $
- /
- //
- //  Copyright (C) 2001-2009  The Bochs Project
-@@ -474,7 +474,7 @@
-   /* 0F 0D /wr */ { 0, BX_IA_PREFETCHW },   // 3DNow! PREFETCH on AMD, 
NOP on Intel
-   /* 0F 0E /wr */ { 0, BX_IA_FEMMS },   // 3DNow! FEMMS
- #if BX_SUPPORT_3DNOW
--  /* 0F 0F /wr */ { BxImmediate_Ib, BX_IA_ERROR, Bx3DNowOpcodeInfo },
-+  /* 0F 0F /wr */ { BxImmediate_Ib, BX_IA_ERROR },
- #else
-   /* 0F 0F /wr */ { 0, BX_IA_ERROR },
- #endif
-@@ -1025,7 +1025,7 @@
-   /* 0F 0D /dr */ { 0, BX_IA_PREFETCHW },   // 3DNow! PREFETCH on AMD, 
NOP on Intel
-   /* 0F 0E /dr */ { 0, BX_IA_FEMMS },   // 3DNow! FEMMS
- #if BX_SUPPORT_3DNOW
--  /* 0F 0F /dr */ { BxImmediate_Ib, BX_IA_ERROR, Bx3DNowOpcodeInfo },
-+  /* 0F 0F /dr */ { BxImmediate_Ib, BX_IA_ERROR },
- #else
-   /* 0F 0F /dr */ { 0, BX_IA_ERROR },
- #endif
-@@ -1583,7 +1583,7 @@
-   /* 0F 0D /wm */ { 0, BX_IA_PREFETCHW },   // 3DNow! PREFETCH on AMD, 
NOP on Intel
-   /* 0F 0E /wm */ { 0, BX_IA_FEMMS },   // 3DNow! FEMMS
- #if BX_SUPPORT_3DNOW
--  /* 0F 0F /wm */ { BxImmediate_Ib, BX_IA_ERROR, Bx3DNowOpcodeInfo },
-+  /* 0F 0F /wm */ { BxImmediate_Ib, BX_IA_ERROR },
- #else
-   /* 0F 0F /wm */ { 0, BX_IA_ERROR },
- #endif
-@@ -2134,7 +2134,7 @@
-   /* 0F 0D /dm */ { 0, BX_IA_PREFETCHW },   // 3DNow! PREFETCH on AMD, 
NOP on Intel
-   /* 0F 0E /dm */ { 0, BX_IA_FEMMS },   // 3DNow! FEMMS
- #if BX_SUPPORT_3DNOW
--  /* 0F 0F /dm */ { BxImmediate_Ib, BX_IA_ERROR, Bx3DNowOpcodeInfo },
-+  /* 0F 0F /dm */ { BxImmediate_Ib, BX_IA_ERROR },
- #else
-   /* 0F 0F /dm */ { 0, BX_IA_ERROR },
- #endif

Modified: PKGBUILD
===
--- PKGBUILD2011-06-13 00:31:54 UTC (rev 127308)
+++ PKGBUILD2011-06-13 01:13:14 UTC (rev 127309)
@@ -9,14 +9,12 @@
 arch=('i686' 'x86_64')
 license=('LGPL')
 url="http://bochs.sourceforge.net/";
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz
-2.4.5-fetchcode.patch)
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
 depends=('gcc-libs' 'libxrandr')
-# 'libxpm')
+sha256sums=('689dcc5fccfd70c8340a54986f0cb9c2824009ed602718802868333da9ac53b9')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  #patch -Np0 -i ${srcdir}/2.4.5-fetchcode.patch
   ./configure --prefix=/usr --enable-vbe --without-wx --enable-cpu-level=6 \
   --enable-fpu --enable-3dnow 
   make
@@ -27,5 +25,3 @@
   make prefix=${pkgdir}/usr install
   install -D -m 644 .bochsrc ${pkgdir}/etc/bochsrc-sample.txt
 }
-sha256sums=('689dcc5fccfd70c8340a54986f0cb9c2824009ed602718802868333da9ac53b9'
-'3dba808614da7d0fa1a3d6ddaceabf027a873d1f45fb90ec43b8dce876baa8ff')



[arch-commits] Commit in bochs/repos (extra-x86_64)

2011-06-12 Thread Kevin Piché
Date: Sunday, June 12, 2011 @ 20:31:54
  Author: kevin
Revision: 127308

archrelease: copy trunk to extra-x86_64

Added:
  bochs/repos/extra-x86_64/



[arch-commits] Commit in bochs/repos (extra-x86_64)

2011-06-12 Thread Kevin Piché
Date: Sunday, June 12, 2011 @ 20:31:40
  Author: kevin
Revision: 127307

archrelease: remove extra-x86_64

Deleted:
  bochs/repos/extra-x86_64/



[arch-commits] Commit in bochs/trunk (PKGBUILD)

2011-06-12 Thread Kevin Piché
Date: Sunday, June 12, 2011 @ 20:31:34
  Author: kevin
Revision: 127306

upgpkg: bochs 2.4.6-1
Updated to 2.4.6

Modified:
  bochs/trunk/PKGBUILD

--+
 PKGBUILD |   15 ++-
 1 file changed, 10 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-06-12 14:10:24 UTC (rev 127305)
+++ PKGBUILD2011-06-13 00:31:34 UTC (rev 127306)
@@ -3,7 +3,7 @@
 # Maintainer: Kevin Piche 
 
 pkgname=bochs
-pkgver=2.4.5
+pkgver=2.4.6
 pkgrel=1
 pkgdesc="A portable x86 PC emulation software package"
 arch=('i686' 'x86_64')
@@ -11,16 +11,21 @@
 url="http://bochs.sourceforge.net/";
 
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz
 2.4.5-fetchcode.patch)
-depends=('gcc-libs' 'libxpm')
+depends=('gcc-libs' 'libxrandr')
+# 'libxpm')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np0 -i ${srcdir}/2.4.5-fetchcode.patch
+  #patch -Np0 -i ${srcdir}/2.4.5-fetchcode.patch
   ./configure --prefix=/usr --enable-vbe --without-wx --enable-cpu-level=6 \
   --enable-fpu --enable-3dnow 
-  make || return 1
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
   make prefix=${pkgdir}/usr install
   install -D -m 644 .bochsrc ${pkgdir}/etc/bochsrc-sample.txt
 }
-sha256sums=('b948622a364c2e7da4221a6a4640ba2efa68422e1411ac377c69d37f46f67616'
+sha256sums=('689dcc5fccfd70c8340a54986f0cb9c2824009ed602718802868333da9ac53b9'
 '3dba808614da7d0fa1a3d6ddaceabf027a873d1f45fb90ec43b8dce876baa8ff')



[arch-commits] Commit in bochs/repos (extra-x86_64)

2010-10-08 Thread Kevin Piché
Date: Saturday, October 9, 2010 @ 00:41:38
  Author: kevin
Revision: 94646

archrelease: copy trunk to extra-x86_64

Added:
  bochs/repos/extra-x86_64/



[arch-commits] Commit in bochs/repos (extra-x86_64)

2010-10-08 Thread Kevin Piché
Date: Saturday, October 9, 2010 @ 00:41:27
  Author: kevin
Revision: 94645

archrelease: remove extra-x86_64

Deleted:
  bochs/repos/extra-x86_64/



[arch-commits] Commit in bochs/repos (extra-i686)

2010-10-08 Thread Kevin Piché
Date: Saturday, October 9, 2010 @ 00:04:48
  Author: kevin
Revision: 94644

archrelease: copy trunk to extra-i686

Added:
  bochs/repos/extra-i686/



[arch-commits] Commit in bochs/repos (extra-i686)

2010-10-08 Thread Kevin Piché
Date: Saturday, October 9, 2010 @ 00:04:37
  Author: kevin
Revision: 94643

archrelease: remove extra-i686

Deleted:
  bochs/repos/extra-i686/



[arch-commits] Commit in bochs/trunk (3 files)

2010-10-08 Thread Kevin Piché
Date: Saturday, October 9, 2010 @ 00:04:21
  Author: kevin
Revision: 94642

upgpkg: bochs 2.4.5-1
Updated to 2.4.5

Added:
  bochs/trunk/2.4.5-fetchcode.patch
Modified:
  bochs/trunk/PKGBUILD
Deleted:
  bochs/trunk/bochs-2.3.7-typo-fixes.patch

--+
 2.4.5-fetchcode.patch|   45 +
 PKGBUILD |   11 ++
 bochs-2.3.7-typo-fixes.patch |   24 -
 3 files changed, 52 insertions(+), 28 deletions(-)

Added: 2.4.5-fetchcode.patch
===
--- 2.4.5-fetchcode.patch   (rev 0)
+++ 2.4.5-fetchcode.patch   2010-10-09 04:04:21 UTC (rev 94642)
@@ -0,0 +1,45 @@
+--- cpu/fetchdecode.cc.orig2010-04-16 15:52:44.0 -0400
 cpu/fetchdecode.cc 2010-10-07 13:23:06.0 -0400
+@@ -1,5 +1,5 @@
+ /
+-// $Id: fetchdecode.cc,v 1.266 2010/04/16 19:52:44 sshwarts Exp $
++// $Id: fetchdecode.cc,v 1.267 2010/04/29 21:04:23 sshwarts Exp $
+ /
+ //
+ //  Copyright (C) 2001-2009  The Bochs Project
+@@ -474,7 +474,7 @@
+   /* 0F 0D /wr */ { 0, BX_IA_PREFETCHW },   // 3DNow! PREFETCH on AMD, 
NOP on Intel
+   /* 0F 0E /wr */ { 0, BX_IA_FEMMS },   // 3DNow! FEMMS
+ #if BX_SUPPORT_3DNOW
+-  /* 0F 0F /wr */ { BxImmediate_Ib, BX_IA_ERROR, Bx3DNowOpcodeInfo },
++  /* 0F 0F /wr */ { BxImmediate_Ib, BX_IA_ERROR },
+ #else
+   /* 0F 0F /wr */ { 0, BX_IA_ERROR },
+ #endif
+@@ -1025,7 +1025,7 @@
+   /* 0F 0D /dr */ { 0, BX_IA_PREFETCHW },   // 3DNow! PREFETCH on AMD, 
NOP on Intel
+   /* 0F 0E /dr */ { 0, BX_IA_FEMMS },   // 3DNow! FEMMS
+ #if BX_SUPPORT_3DNOW
+-  /* 0F 0F /dr */ { BxImmediate_Ib, BX_IA_ERROR, Bx3DNowOpcodeInfo },
++  /* 0F 0F /dr */ { BxImmediate_Ib, BX_IA_ERROR },
+ #else
+   /* 0F 0F /dr */ { 0, BX_IA_ERROR },
+ #endif
+@@ -1583,7 +1583,7 @@
+   /* 0F 0D /wm */ { 0, BX_IA_PREFETCHW },   // 3DNow! PREFETCH on AMD, 
NOP on Intel
+   /* 0F 0E /wm */ { 0, BX_IA_FEMMS },   // 3DNow! FEMMS
+ #if BX_SUPPORT_3DNOW
+-  /* 0F 0F /wm */ { BxImmediate_Ib, BX_IA_ERROR, Bx3DNowOpcodeInfo },
++  /* 0F 0F /wm */ { BxImmediate_Ib, BX_IA_ERROR },
+ #else
+   /* 0F 0F /wm */ { 0, BX_IA_ERROR },
+ #endif
+@@ -2134,7 +2134,7 @@
+   /* 0F 0D /dm */ { 0, BX_IA_PREFETCHW },   // 3DNow! PREFETCH on AMD, 
NOP on Intel
+   /* 0F 0E /dm */ { 0, BX_IA_FEMMS },   // 3DNow! FEMMS
+ #if BX_SUPPORT_3DNOW
+-  /* 0F 0F /dm */ { BxImmediate_Ib, BX_IA_ERROR, Bx3DNowOpcodeInfo },
++  /* 0F 0F /dm */ { BxImmediate_Ib, BX_IA_ERROR },
+ #else
+   /* 0F 0F /dm */ { 0, BX_IA_ERROR },
+ #endif

Modified: PKGBUILD
===
--- PKGBUILD2010-10-08 22:09:11 UTC (rev 94641)
+++ PKGBUILD2010-10-09 04:04:21 UTC (rev 94642)
@@ -3,21 +3,24 @@
 # Maintainer: Kevin Piche 
 
 pkgname=bochs
-pkgver=2.4.2
+pkgver=2.4.5
 pkgrel=1
 pkgdesc="A portable x86 PC emulation software package"
 arch=('i686' 'x86_64')
 license=('LGPL')
 url="http://bochs.sourceforge.net/";
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz
+2.4.5-fetchcode.patch)
 depends=('gcc-libs' 'libxpm')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np0 -i ${srcdir}/2.4.5-fetchcode.patch
   ./configure --prefix=/usr --enable-vbe --without-wx --enable-cpu-level=6 \
-  --enable-fpu --enable-mmx --enable-3dnow --enable-sse 
--enable-sep || return 1
+  --enable-fpu --enable-3dnow 
   make || return 1
   make prefix=${pkgdir}/usr install
   install -D -m 644 .bochsrc ${pkgdir}/etc/bochsrc-sample.txt
 }
-sha256sums=('5dd350c8cb1d2ad9b6d90962b48c06bbe9ec189be152a07a6e175e050bf03406')
+sha256sums=('b948622a364c2e7da4221a6a4640ba2efa68422e1411ac377c69d37f46f67616'
+'3dba808614da7d0fa1a3d6ddaceabf027a873d1f45fb90ec43b8dce876baa8ff')

Deleted: bochs-2.3.7-typo-fixes.patch
===
--- bochs-2.3.7-typo-fixes.patch2010-10-08 22:09:11 UTC (rev 94641)
+++ bochs-2.3.7-typo-fixes.patch2010-10-09 04:04:21 UTC (rev 94642)
@@ -1,24 +0,0 @@
-diff -NaurwB bochs-2.3.7.orig/cpu/ia_opcodes.h bochs-2.3.7/cpu/ia_opcodes.h
 bochs-2.3.7.orig/cpu/ia_opcodes.h  2008-05-30 22:35:08.0 +0200
-+++ bochs-2.3.7/cpu/ia_opcodes.h   2008-06-04 14:56:46.0 +0200
-@@ -891,7 +891,7 @@
- bx_define_opcode(BX_IA_PF2ID_PqQq, BX_CPU_C::PF2ID_PqQq)
- bx_define_opcode(BX_IA_PF2IW_PqQq, BX_CPU_C::PF2IW_PqQq)
- bx_define_opcode(BX_IA_PFACC_PqQq, BX_CPU_C::PFACC_PqQq)
--bx_define_opcode(BX_IA_PFADD_PqQq, BX_CPU_C::BX_PFADD_PqQq)
-+bx_define_opcode(BX_IA_PFADD_PqQq, BX_CPU_C::PFADD_PqQq)
- bx_define_opcode(BX_IA_PFCMPEQ

[arch-commits] Commit in bochs/repos (extra-x86_64 testing-x86_64)

2009-11-23 Thread Ionut Biru
Date: Monday, November 23, 2009 @ 11:44:04
  Author: ibiru
Revision: 59404

db-move: moved bochs from [testing] to [extra] (x86_64)

Added:
  bochs/repos/extra-x86_64/
Deleted:
  bochs/repos/testing-x86_64/



[arch-commits] Commit in bochs/repos (extra-x86_64)

2009-11-23 Thread Ionut Biru
Date: Monday, November 23, 2009 @ 11:44:03
  Author: ibiru
Revision: 59403

db-move: bochs removed by ibiru for move to extra

Deleted:
  bochs/repos/extra-x86_64/



[arch-commits] Commit in bochs/repos (extra-i686 testing-i686)

2009-11-23 Thread Ionut Biru
Date: Monday, November 23, 2009 @ 11:43:51
  Author: ibiru
Revision: 59402

db-move: moved bochs from [testing] to [extra] (i686)

Added:
  bochs/repos/extra-i686/
Deleted:
  bochs/repos/testing-i686/



[arch-commits] Commit in bochs/repos (extra-i686)

2009-11-23 Thread Ionut Biru
Date: Monday, November 23, 2009 @ 11:43:50
  Author: ibiru
Revision: 59401

db-move: bochs removed by ibiru for move to extra

Deleted:
  bochs/repos/extra-i686/



[arch-commits] Commit in bochs/repos (testing-x86_64)

2009-11-22 Thread Ionut Biru
Date: Sunday, November 22, 2009 @ 16:50:34
  Author: ibiru
Revision: 59382

Initialized merge tracking via "svnmerge" with revisions "1-59380" from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/bochs/trunk

Modified:
  bochs/repos/testing-x86_64/   (properties)


Property changes on: bochs/repos/testing-x86_64
___
Added: svnmerge-integrated
   + /bochs/trunk:1-59380



[arch-commits] Commit in bochs/repos (testing-x86_64)

2009-11-22 Thread Ionut Biru
Date: Sunday, November 22, 2009 @ 16:50:19
  Author: ibiru
Revision: 59381

archrelease: new repo testing-x86_64

Added:
  bochs/repos/testing-x86_64/



[arch-commits] Commit in bochs/repos (testing-i686)

2009-11-22 Thread Ionut Biru
Date: Sunday, November 22, 2009 @ 16:49:50
  Author: ibiru
Revision: 59380

Initialized merge tracking via "svnmerge" with revisions "1-59378" from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/bochs/trunk

Modified:
  bochs/repos/testing-i686/ (properties)


Property changes on: bochs/repos/testing-i686
___
Added: svnmerge-integrated
   + /bochs/trunk:1-59378



[arch-commits] Commit in bochs/repos (testing-i686)

2009-11-22 Thread Ionut Biru
Date: Sunday, November 22, 2009 @ 16:49:36
  Author: ibiru
Revision: 59379

archrelease: new repo testing-i686

Added:
  bochs/repos/testing-i686/



[arch-commits] Commit in bochs/trunk (PKGBUILD)

2009-11-22 Thread Ionut Biru
Date: Sunday, November 22, 2009 @ 16:49:19
  Author: ibiru
Revision: 59378

upgpkg: bochs 2.4.2-1
update to 2.4.2

Modified:
  bochs/trunk/PKGBUILD

--+
 PKGBUILD |   19 ---
 1 file changed, 8 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2009-11-22 21:20:26 UTC (rev 59377)
+++ PKGBUILD2009-11-22 21:49:19 UTC (rev 59378)
@@ -3,24 +3,21 @@
 # Maintainer: Kevin Piche 
 
 pkgname=bochs
-pkgver=2.3.7
+pkgver=2.4.2
 pkgrel=1
 pkgdesc="A portable x86 PC emulation software package"
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
 license=('LGPL')
 url="http://bochs.sourceforge.net/";
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz
 
-bochs-2.3.7-typo-fixes.patch)
-md5sums=('a2e5f922505bf16cabd36bb9d571a2c4' '7d6df4f5f7ee1d4623e7bcf385c9c6e0')
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
 depends=('gcc-libs' 'libxpm')
 
 build() {
-  cd ${startdir}/src/${pkgname}-${pkgver}
-  patch -Np1 -i ../bochs-2.3.7-typo-fixes.patch || return 1
+  cd ${srcdir}/${pkgname}-${pkgver}
   ./configure --prefix=/usr --enable-vbe --without-wx --enable-cpu-level=6 \
---enable-4meg-pages --enable-global-pages --enable-pae --enable-fpu \
---enable-mmx --enable-3dnow --enable-sse --enable-sep
+  --enable-fpu --enable-mmx --enable-3dnow --enable-sse 
--enable-sep || return 1
   make || return 1
-  make prefix=${startdir}/pkg/usr install
-  install -D -m 644 .bochsrc ${startdir}/pkg/etc/bochsrc-sample.txt
+  make prefix=${pkgdir}/usr install
+  install -D -m 644 .bochsrc ${pkgdir}/etc/bochsrc-sample.txt
 }
+sha256sums=('5dd350c8cb1d2ad9b6d90962b48c06bbe9ec189be152a07a6e175e050bf03406')