public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-emulation/pcem/
@ 2020-03-21 17:02 Conrad Kostecki
  0 siblings, 0 replies; 14+ messages in thread
From: Conrad Kostecki @ 2020-03-21 17:02 UTC (permalink / raw
  To: gentoo-commits

commit:     a96898f4d499099f3a6b90c60fe6b43d80b30508
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 21 17:00:07 2020 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Mar 21 17:01:37 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a96898f4

app-emulation/pcem: fix compilation with gcc >= 10.x

Since the source fix is not trivial, adding -fcommon for now.

Closes: https://bugs.gentoo.org/713772
Package-Manager: Portage-2.3.94, Repoman-2.3.20
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 app-emulation/pcem/pcem-15-r1.ebuild | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/app-emulation/pcem/pcem-15-r1.ebuild b/app-emulation/pcem/pcem-15-r1.ebuild
index db947638e01..fad13595690 100644
--- a/app-emulation/pcem/pcem-15-r1.ebuild
+++ b/app-emulation/pcem/pcem-15-r1.ebuild
@@ -41,6 +41,10 @@ src_prepare() {
 }
 
 src_configure() {
+	# Does not compile with -fno-common.
+	# See https://pcem-emulator.co.uk/phpBB3/viewtopic.php?f=3&t=3443
+	append-cflags -fcommon
+
 	local myeconfargs=(
 		--enable-release-build
 		$(use_enable alsa)
@@ -66,6 +70,6 @@ pkg_postinst() {
 	elog "In order to use PCem, you will need some roms for various emulated systems."
 	elog "You can either install globally for all users or locally for yourself."
 	elog ""
-	elog "To install globally, put your ROM file into '${ROOT}/usr/share/pcem/roms/<system>'."
-	elog "To install locally, put your ROM file into '~/.pcem/roms/<system>'."
+	elog "To install globally, put your ROM files into '${ROOT}/usr/share/pcem/roms/<system>'."
+	elog "To install locally, put your ROM files into '~/.pcem/roms/<system>'."
 }


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emulation/pcem/
@ 2020-05-19 21:35 Conrad Kostecki
  0 siblings, 0 replies; 14+ messages in thread
From: Conrad Kostecki @ 2020-05-19 21:35 UTC (permalink / raw
  To: gentoo-commits

commit:     7f002ca05067739f90a3c2077952e1b0c8245bc1
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Tue May 19 20:50:45 2020 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue May 19 21:34:55 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f002ca0

app-emulation/pcem: bump to version 16

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 app-emulation/pcem/Manifest       |  1 +
 app-emulation/pcem/pcem-16.ebuild | 75 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 76 insertions(+)

diff --git a/app-emulation/pcem/Manifest b/app-emulation/pcem/Manifest
index f1ab3db7a47..3416c61fbb9 100644
--- a/app-emulation/pcem/Manifest
+++ b/app-emulation/pcem/Manifest
@@ -1 +1,2 @@
 DIST PCemV15Linux.tar.gz 1741312 BLAKE2B fa8de8c98a57ac79be11921190960eaa1e5d53896db0749a7f53704362b6415544632a6f918a8f1ce57d2f75f28af52715856346421cc0a8355236a01bb7dcac SHA512 c2501827689acc0f3381d785dc3b008866e82d242bea3fa5af7e786fc58fdf72f76eafda98d12ce88c59ff338bc7dc441484af9c1bc9357c7cc75d94bbe0a7b6
+DIST PCemV16Linux.tar.gz 1859892 BLAKE2B e388031e661b9320cc783e6400bdb7c191a2f946d9c207d9a58daa9270115b32ed55ac6a0b87227b51d10168e7d161bb03811eb83f5405ed1a71f7bfc6fd8aa5 SHA512 97d33ae1c4b59f281abe553ed4297c0d6c3956cf32b44474bfd5773700dd5c4ea6c209c679b9add5d4a7cba61748ee9794afa3c59af3230fa2a15812e13fd1c5

diff --git a/app-emulation/pcem/pcem-16.ebuild b/app-emulation/pcem/pcem-16.ebuild
new file mode 100644
index 00000000000..c81533218ba
--- /dev/null
+++ b/app-emulation/pcem/pcem-16.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools desktop wxwidgets
+
+WX_GTK_VER="3.0"
+
+DESCRIPTION="A PC emulator that specializes in running old operating systems and software"
+HOMEPAGE="
+	https://pcem-emulator.co.uk/
+	https://bitbucket.org/pcem_emulator/pcem/
+"
+SRC_URI="https://pcem-emulator.co.uk/files/PCemV${PV}Linux.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="alsa networking"
+
+S="${WORKDIR}"
+
+RDEPEND="
+	alsa? ( media-libs/alsa-lib )
+	media-libs/libsdl2
+	media-libs/openal
+	x11-libs/wxGTK:${WX_GTK_VER}[tiff,X]
+"
+
+DEPEND="${DEPEND}"
+
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}/${PN}-15-respect-cflags.patch" )
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	# Does not compile with -fno-common.
+	# See https://pcem-emulator.co.uk/phpBB3/viewtopic.php?f=3&t=3443
+	append-cflags -fcommon
+
+	local myeconfargs=(
+		--enable-release-build
+		$(use_enable alsa)
+		$(use_enable networking)
+	)
+
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	default
+
+	insinto /usr/share/pcem
+	doins -r configs nvr roms
+
+	newicon src/icons/32x32/motherboard.png pcem.png
+	make_desktop_entry "pcem" "PCem" pcem "Development;Utility"
+
+	dodoc readme.txt
+}
+
+pkg_postinst() {
+	elog "In order to use PCem, you will need some roms for various emulated systems."
+	elog "You can either install globally for all users or locally for yourself."
+	elog ""
+	elog "To install globally, put your ROM files into '${ROOT}/usr/share/pcem/roms/<system>'."
+	elog "To install locally, put your ROM files into '~/.pcem/roms/<system>'."
+}


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emulation/pcem/
@ 2020-05-19 21:35 Conrad Kostecki
  0 siblings, 0 replies; 14+ messages in thread
From: Conrad Kostecki @ 2020-05-19 21:35 UTC (permalink / raw
  To: gentoo-commits

commit:     646e340b3c3f2d8481f9719b63bc0c86850886d2
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Tue May 19 20:51:17 2020 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue May 19 21:34:56 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=646e340b

app-emulation/pcem: drop old version

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 app-emulation/pcem/Manifest          |  1 -
 app-emulation/pcem/pcem-15-r1.ebuild | 75 ------------------------------------
 2 files changed, 76 deletions(-)

diff --git a/app-emulation/pcem/Manifest b/app-emulation/pcem/Manifest
index 3416c61fbb9..3129bda1758 100644
--- a/app-emulation/pcem/Manifest
+++ b/app-emulation/pcem/Manifest
@@ -1,2 +1 @@
-DIST PCemV15Linux.tar.gz 1741312 BLAKE2B fa8de8c98a57ac79be11921190960eaa1e5d53896db0749a7f53704362b6415544632a6f918a8f1ce57d2f75f28af52715856346421cc0a8355236a01bb7dcac SHA512 c2501827689acc0f3381d785dc3b008866e82d242bea3fa5af7e786fc58fdf72f76eafda98d12ce88c59ff338bc7dc441484af9c1bc9357c7cc75d94bbe0a7b6
 DIST PCemV16Linux.tar.gz 1859892 BLAKE2B e388031e661b9320cc783e6400bdb7c191a2f946d9c207d9a58daa9270115b32ed55ac6a0b87227b51d10168e7d161bb03811eb83f5405ed1a71f7bfc6fd8aa5 SHA512 97d33ae1c4b59f281abe553ed4297c0d6c3956cf32b44474bfd5773700dd5c4ea6c209c679b9add5d4a7cba61748ee9794afa3c59af3230fa2a15812e13fd1c5

diff --git a/app-emulation/pcem/pcem-15-r1.ebuild b/app-emulation/pcem/pcem-15-r1.ebuild
deleted file mode 100644
index fad13595690..00000000000
--- a/app-emulation/pcem/pcem-15-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools desktop wxwidgets
-
-WX_GTK_VER="3.0"
-
-DESCRIPTION="A PC emulator that specializes in running old operating systems and software"
-HOMEPAGE="
-	https://pcem-emulator.co.uk/
-	https://bitbucket.org/pcem_emulator/pcem/
-"
-SRC_URI="https://pcem-emulator.co.uk/files/PCemV${PV}Linux.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="alsa networking"
-
-S="${WORKDIR}"
-
-RDEPEND="
-	alsa? ( media-libs/alsa-lib )
-	media-libs/libsdl2
-	media-libs/openal
-	x11-libs/wxGTK:${WX_GTK_VER}[tiff,X]
-"
-
-DEPEND="${DEPEND}"
-
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}/${P}-respect-cflags.patch" )
-
-src_prepare() {
-	default
-
-	eautoreconf
-}
-
-src_configure() {
-	# Does not compile with -fno-common.
-	# See https://pcem-emulator.co.uk/phpBB3/viewtopic.php?f=3&t=3443
-	append-cflags -fcommon
-
-	local myeconfargs=(
-		--enable-release-build
-		$(use_enable alsa)
-		$(use_enable networking)
-	)
-
-	econf "${myeconfargs[@]}"
-}
-
-src_install() {
-	default
-
-	insinto /usr/share/pcem
-	doins -r configs nvr roms
-
-	newicon src/icons/32x32/motherboard.png pcem.png
-	make_desktop_entry "pcem" "PCem" pcem "Development;Utility"
-
-	dodoc readme.txt
-}
-
-pkg_postinst() {
-	elog "In order to use PCem, you will need some roms for various emulated systems."
-	elog "You can either install globally for all users or locally for yourself."
-	elog ""
-	elog "To install globally, put your ROM files into '${ROOT}/usr/share/pcem/roms/<system>'."
-	elog "To install locally, put your ROM files into '~/.pcem/roms/<system>'."
-}


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emulation/pcem/
@ 2020-08-10 12:34 Agostino Sarubbo
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo @ 2020-08-10 12:34 UTC (permalink / raw
  To: gentoo-commits

commit:     3895cb78e8d72e1ff26e5a47bfc390a55247db9a
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 10 12:33:54 2020 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Aug 10 12:33:54 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3895cb78

app-emulation/pcem: amd64 stable wrt bug #736521

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 app-emulation/pcem/pcem-16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/pcem/pcem-16.ebuild b/app-emulation/pcem/pcem-16.ebuild
index c81533218ba..8b2b9258363 100644
--- a/app-emulation/pcem/pcem-16.ebuild
+++ b/app-emulation/pcem/pcem-16.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://pcem-emulator.co.uk/files/PCemV${PV}Linux.tar.gz"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="alsa networking"
 
 S="${WORKDIR}"


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emulation/pcem/
@ 2020-08-23 11:45 David Seifert
  0 siblings, 0 replies; 14+ messages in thread
From: David Seifert @ 2020-08-23 11:45 UTC (permalink / raw
  To: gentoo-commits

commit:     47bd51b8465baad116f1731f181b2ce0cc6341ef
Author:     Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Sun Aug 23 02:45:11 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Aug 23 11:42:32 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47bd51b8

app-emulation/pcem: update HOMEPAGE

Replace non-functioning BitBucket URL
Bug: https://bugs.gentoo.org/737896
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 app-emulation/pcem/metadata.xml   | 2 +-
 app-emulation/pcem/pcem-16.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/pcem/metadata.xml b/app-emulation/pcem/metadata.xml
index d949dbdb3e6..b25ac367e48 100644
--- a/app-emulation/pcem/metadata.xml
+++ b/app-emulation/pcem/metadata.xml
@@ -18,6 +18,6 @@
 	</use>
 	<upstream>
 		<bugs-to>https://pcem-emulator.co.uk/phpBB3/viewforum.php?f=2</bugs-to>
-		<remote-id type="bitbucket">pcem_emulator/pcem</remote-id>
+		<remote-id type="github">sarah-walker-pcem/pcem</remote-id>
 	</upstream>
 </pkgmetadata>

diff --git a/app-emulation/pcem/pcem-16.ebuild b/app-emulation/pcem/pcem-16.ebuild
index 8b2b9258363..605cd74eded 100644
--- a/app-emulation/pcem/pcem-16.ebuild
+++ b/app-emulation/pcem/pcem-16.ebuild
@@ -10,7 +10,7 @@ WX_GTK_VER="3.0"
 DESCRIPTION="A PC emulator that specializes in running old operating systems and software"
 HOMEPAGE="
 	https://pcem-emulator.co.uk/
-	https://bitbucket.org/pcem_emulator/pcem/
+	https://github.com/sarah-walker-pcem/pcem/
 "
 SRC_URI="https://pcem-emulator.co.uk/files/PCemV${PV}Linux.tar.gz"
 


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emulation/pcem/
@ 2020-10-10 13:17 Conrad Kostecki
  0 siblings, 0 replies; 14+ messages in thread
From: Conrad Kostecki @ 2020-10-10 13:17 UTC (permalink / raw
  To: gentoo-commits

commit:     fcffdce08736d6ca3b88fdb25b609552bc6be4ca
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 10 13:10:08 2020 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Oct 10 13:17:08 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcffdce0

app-emulation/pcem: update wxGTK:3.0 to wxGTK:3.0-gtk3

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 app-emulation/pcem/pcem-16-r1.ebuild | 75 ++++++++++++++++++++++++++++++++++++
 1 file changed, 75 insertions(+)

diff --git a/app-emulation/pcem/pcem-16-r1.ebuild b/app-emulation/pcem/pcem-16-r1.ebuild
new file mode 100644
index 00000000000..42c969775c8
--- /dev/null
+++ b/app-emulation/pcem/pcem-16-r1.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools desktop wxwidgets
+
+WX_GTK_VER="3.0-gtk3"
+
+DESCRIPTION="A PC emulator that specializes in running old operating systems and software"
+HOMEPAGE="
+	https://pcem-emulator.co.uk/
+	https://github.com/sarah-walker-pcem/pcem/
+"
+SRC_URI="https://pcem-emulator.co.uk/files/PCemV${PV}Linux.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="amd64"
+IUSE="alsa networking"
+
+S="${WORKDIR}"
+
+RDEPEND="
+	alsa? ( media-libs/alsa-lib )
+	media-libs/libsdl2
+	media-libs/openal
+	x11-libs/wxGTK:${WX_GTK_VER}[tiff,X]
+"
+
+DEPEND="${DEPEND}"
+
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}/${PN}-15-respect-cflags.patch" )
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_configure() {
+	# Does not compile with -fno-common.
+	# See https://pcem-emulator.co.uk/phpBB3/viewtopic.php?f=3&t=3443
+	append-cflags -fcommon
+
+	local myeconfargs=(
+		--enable-release-build
+		$(use_enable alsa)
+		$(use_enable networking)
+	)
+
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	default
+
+	insinto /usr/share/pcem
+	doins -r configs nvr roms
+
+	newicon src/icons/32x32/motherboard.png pcem.png
+	make_desktop_entry "pcem" "PCem" pcem "Development;Utility"
+
+	dodoc readme.txt
+}
+
+pkg_postinst() {
+	elog "In order to use PCem, you will need some roms for various emulated systems."
+	elog "You can either install globally for all users or locally for yourself."
+	elog ""
+	elog "To install globally, put your ROM files into '${ROOT}/usr/share/pcem/roms/<system>'."
+	elog "To install locally, put your ROM files into '~/.pcem/roms/<system>'."
+}


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emulation/pcem/
@ 2020-10-10 13:17 Conrad Kostecki
  0 siblings, 0 replies; 14+ messages in thread
From: Conrad Kostecki @ 2020-10-10 13:17 UTC (permalink / raw
  To: gentoo-commits

commit:     9b24a3f319d036f3db3df84487d5387f251bd0d1
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 10 13:11:07 2020 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Oct 10 13:17:09 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b24a3f3

app-emulation/pcem: drop old version

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 app-emulation/pcem/pcem-16.ebuild | 75 ---------------------------------------
 1 file changed, 75 deletions(-)

diff --git a/app-emulation/pcem/pcem-16.ebuild b/app-emulation/pcem/pcem-16.ebuild
deleted file mode 100644
index 605cd74eded..00000000000
--- a/app-emulation/pcem/pcem-16.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools desktop wxwidgets
-
-WX_GTK_VER="3.0"
-
-DESCRIPTION="A PC emulator that specializes in running old operating systems and software"
-HOMEPAGE="
-	https://pcem-emulator.co.uk/
-	https://github.com/sarah-walker-pcem/pcem/
-"
-SRC_URI="https://pcem-emulator.co.uk/files/PCemV${PV}Linux.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64"
-IUSE="alsa networking"
-
-S="${WORKDIR}"
-
-RDEPEND="
-	alsa? ( media-libs/alsa-lib )
-	media-libs/libsdl2
-	media-libs/openal
-	x11-libs/wxGTK:${WX_GTK_VER}[tiff,X]
-"
-
-DEPEND="${DEPEND}"
-
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}/${PN}-15-respect-cflags.patch" )
-
-src_prepare() {
-	default
-
-	eautoreconf
-}
-
-src_configure() {
-	# Does not compile with -fno-common.
-	# See https://pcem-emulator.co.uk/phpBB3/viewtopic.php?f=3&t=3443
-	append-cflags -fcommon
-
-	local myeconfargs=(
-		--enable-release-build
-		$(use_enable alsa)
-		$(use_enable networking)
-	)
-
-	econf "${myeconfargs[@]}"
-}
-
-src_install() {
-	default
-
-	insinto /usr/share/pcem
-	doins -r configs nvr roms
-
-	newicon src/icons/32x32/motherboard.png pcem.png
-	make_desktop_entry "pcem" "PCem" pcem "Development;Utility"
-
-	dodoc readme.txt
-}
-
-pkg_postinst() {
-	elog "In order to use PCem, you will need some roms for various emulated systems."
-	elog "You can either install globally for all users or locally for yourself."
-	elog ""
-	elog "To install globally, put your ROM files into '${ROOT}/usr/share/pcem/roms/<system>'."
-	elog "To install locally, put your ROM files into '~/.pcem/roms/<system>'."
-}


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emulation/pcem/
@ 2020-10-31 11:11 David Seifert
  0 siblings, 0 replies; 14+ messages in thread
From: David Seifert @ 2020-10-31 11:11 UTC (permalink / raw
  To: gentoo-commits

commit:     a763fe3dae0126a5e5ba29636ead5413cea90989
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 31 11:10:47 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Oct 31 11:10:47 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a763fe3d

app-emulation/pcem: [QA] Inherit flag-o-matic.eclass explicitly

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 app-emulation/pcem/pcem-16-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/pcem/pcem-16-r1.ebuild b/app-emulation/pcem/pcem-16-r1.ebuild
index 42c969775c8..d87a88a78bb 100644
--- a/app-emulation/pcem/pcem-16-r1.ebuild
+++ b/app-emulation/pcem/pcem-16-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit autotools desktop wxwidgets
+inherit autotools desktop flag-o-matic wxwidgets
 
 WX_GTK_VER="3.0-gtk3"
 


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emulation/pcem/
@ 2021-01-03 20:52 Conrad Kostecki
  0 siblings, 0 replies; 14+ messages in thread
From: Conrad Kostecki @ 2021-01-03 20:52 UTC (permalink / raw
  To: gentoo-commits

commit:     84a2f101b5baac75460423cfd6238b21c1a20bf9
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  3 20:45:12 2021 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jan  3 20:52:09 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84a2f101

app-emulation/pcem: amd64 stable

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 app-emulation/pcem/pcem-17.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/pcem/pcem-17.ebuild b/app-emulation/pcem/pcem-17.ebuild
index 825619a6ac6..027a2355b1e 100644
--- a/app-emulation/pcem/pcem-17.ebuild
+++ b/app-emulation/pcem/pcem-17.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -16,7 +16,7 @@ SRC_URI="https://pcem-emulator.co.uk/files/PCemV${PV}Linux.tar.gz"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="alsa networking"
 
 S="${WORKDIR}"


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emulation/pcem/
@ 2021-04-02 14:01 Sam James
  0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2021-04-02 14:01 UTC (permalink / raw
  To: gentoo-commits

commit:     59902c6c5bbadd6463271ddfa6435a06d59cf68c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  2 11:22:48 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr  2 14:00:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59902c6c

app-emulation/pcem: fix DEPEND typo

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-emulation/pcem/pcem-17.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/app-emulation/pcem/pcem-17.ebuild b/app-emulation/pcem/pcem-17.ebuild
index 027a2355b1e..71bb036ec26 100644
--- a/app-emulation/pcem/pcem-17.ebuild
+++ b/app-emulation/pcem/pcem-17.ebuild
@@ -27,9 +27,7 @@ RDEPEND="
 	media-libs/openal
 	x11-libs/wxGTK:${WX_GTK_VER}[tiff,X]
 "
-
-DEPEND="${DEPEND}"
-
+DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
 
 DOCS=( "README.md" "TESTED.md" )


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emulation/pcem/
@ 2021-04-05 22:26 David Seifert
  0 siblings, 0 replies; 14+ messages in thread
From: David Seifert @ 2021-04-05 22:26 UTC (permalink / raw
  To: gentoo-commits

commit:     c3899a8d02b9551460a5c95253e38e368da4fb53
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Mon Apr  5 22:26:10 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Apr  5 22:26:10 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3899a8d

app-emulation/pcem: Set WX_GTK_VER before inherit

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 app-emulation/pcem/pcem-17.ebuild | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/app-emulation/pcem/pcem-17.ebuild b/app-emulation/pcem/pcem-17.ebuild
index 71bb036ec26..02406aa065d 100644
--- a/app-emulation/pcem/pcem-17.ebuild
+++ b/app-emulation/pcem/pcem-17.ebuild
@@ -3,9 +3,8 @@
 
 EAPI=7
 
-inherit autotools desktop flag-o-matic wxwidgets
-
 WX_GTK_VER="3.0-gtk3"
+inherit autotools desktop flag-o-matic wxwidgets
 
 DESCRIPTION="A PC emulator that specializes in running old operating systems and software"
 HOMEPAGE="
@@ -41,6 +40,8 @@ src_prepare() {
 }
 
 src_configure() {
+	setup-wxwidgets
+
 	# Does not compile with -fno-common.
 	# See https://pcem-emulator.co.uk/phpBB3/viewtopic.php?f=3&t=3443
 	append-cflags -fcommon
@@ -49,6 +50,7 @@ src_configure() {
 		--enable-release-build
 		$(use_enable alsa)
 		$(use_enable networking)
+		--with-wx-config="${WX_CONFIG}"
 	)
 
 	econf "${myeconfargs[@]}"


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emulation/pcem/
@ 2022-07-16 20:41 Conrad Kostecki
  0 siblings, 0 replies; 14+ messages in thread
From: Conrad Kostecki @ 2022-07-16 20:41 UTC (permalink / raw
  To: gentoo-commits

commit:     d1b92480a177be6170a1d850d9066bb12c28f06a
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 16 19:46:10 2022 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Jul 16 20:40:50 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1b92480

app-emulation/pcem: filter LTO

Closes: https://bugs.gentoo.org/854528
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 app-emulation/pcem/pcem-17-r1.ebuild | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/app-emulation/pcem/pcem-17-r1.ebuild b/app-emulation/pcem/pcem-17-r1.ebuild
index bad0762a6e55..32518f0671f7 100644
--- a/app-emulation/pcem/pcem-17-r1.ebuild
+++ b/app-emulation/pcem/pcem-17-r1.ebuild
@@ -45,6 +45,10 @@ src_configure() {
 	# See https://pcem-emulator.co.uk/phpBB3/viewtopic.php?f=3&t=3443
 	append-cflags -fcommon
 
+	# LTO needs to be filtered
+	# See https://bugs.gentoo.org/854528
+	filter-lto
+
 	local myeconfargs=(
 		--enable-release-build
 		$(use_enable alsa)


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emulation/pcem/
@ 2022-07-16 20:51 Conrad Kostecki
  0 siblings, 0 replies; 14+ messages in thread
From: Conrad Kostecki @ 2022-07-16 20:51 UTC (permalink / raw
  To: gentoo-commits

commit:     df448c034539a89dbc9bd1cc62abffeb6f7b53d3
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 16 20:48:33 2022 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Jul 16 20:48:33 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df448c03

app-emulation/pcem: add -fno-strict-aliasing

Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 app-emulation/pcem/pcem-17-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-emulation/pcem/pcem-17-r1.ebuild b/app-emulation/pcem/pcem-17-r1.ebuild
index 32518f0671f7..413ef572d024 100644
--- a/app-emulation/pcem/pcem-17-r1.ebuild
+++ b/app-emulation/pcem/pcem-17-r1.ebuild
@@ -48,6 +48,7 @@ src_configure() {
 	# LTO needs to be filtered
 	# See https://bugs.gentoo.org/854528
 	filter-lto
+	append-flags -fno-strict-aliasing
 
 	local myeconfargs=(
 		--enable-release-build


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emulation/pcem/
@ 2023-11-16 20:38 Conrad Kostecki
  0 siblings, 0 replies; 14+ messages in thread
From: Conrad Kostecki @ 2023-11-16 20:38 UTC (permalink / raw
  To: gentoo-commits

commit:     b1a99a37f395eb48b6020069421c0b61c411cf32
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 16 20:32:52 2023 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Nov 16 20:32:52 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1a99a37

app-emulation/pcem: switch WX from 3.0-gtk3 to 3.2-gtk3

Closes: https://bugs.gentoo.org/917431
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 app-emulation/pcem/{pcem-17-r1.ebuild => pcem-17-r2.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/pcem/pcem-17-r1.ebuild b/app-emulation/pcem/pcem-17-r2.ebuild
similarity index 96%
rename from app-emulation/pcem/pcem-17-r1.ebuild
rename to app-emulation/pcem/pcem-17-r2.ebuild
index 413ef572d024..47e17b588639 100644
--- a/app-emulation/pcem/pcem-17-r1.ebuild
+++ b/app-emulation/pcem/pcem-17-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-WX_GTK_VER="3.0-gtk3"
+WX_GTK_VER="3.2-gtk3"
 inherit autotools desktop flag-o-matic wxwidgets
 
 DESCRIPTION="A PC emulator that specializes in running old operating systems and software"


^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2023-11-16 20:38 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-10 12:34 [gentoo-commits] repo/gentoo:master commit in: app-emulation/pcem/ Agostino Sarubbo
  -- strict thread matches above, loose matches on Subject: below --
2023-11-16 20:38 Conrad Kostecki
2022-07-16 20:51 Conrad Kostecki
2022-07-16 20:41 Conrad Kostecki
2021-04-05 22:26 David Seifert
2021-04-02 14:01 Sam James
2021-01-03 20:52 Conrad Kostecki
2020-10-31 11:11 David Seifert
2020-10-10 13:17 Conrad Kostecki
2020-10-10 13:17 Conrad Kostecki
2020-08-23 11:45 David Seifert
2020-05-19 21:35 Conrad Kostecki
2020-05-19 21:35 Conrad Kostecki
2020-03-21 17:02 Conrad Kostecki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox