[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-openchrome/

2024-03-11 Thread Sam James
commit: e9ba22b61ce631b1f9ebf19c74ec04eef55dc509
Author: Eli Schwartz  gmail  com>
AuthorDate: Sun Mar 10 19:53:24 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar 11 14:22:41 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9ba22b6

x11-drivers/xf86-video-openchrome: mark LTO-unsafe, strict-aliasing unsafe

Freedesktop moved to gitlab and dropped support for previous project
hosting methods to read-only. It appears openchrome never made the
migration. May be dead -- it hasn't been developed in some time, the
cgit HEAD is 4 years old and a non-default branch is "only" a year old.

Not really sure where to report a bug to. ;)

Closes: https://bugs.gentoo.org/864406
Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 .../xf86-video-openchrome-0.6.0.ebuild | 14 --
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git 
a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild 
b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild
index 1219380c354b..05f4f4c71a97 100644
--- a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild
+++ b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 XORG_DRI="always"
-inherit xorg-3
+inherit flag-o-matic xorg-3
 
 DESCRIPTION="X.Org driver for VIA/S3G cards"
 HOMEPAGE="https://www.freedesktop.org/wiki/Openchrome/;
@@ -26,6 +26,16 @@ DEPEND="
 PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
 
 src_configure() {
+   # -Werror=strict-aliasing
+   # https://bugs.gentoo.org/864406
+   # Upstream appears to have never migrated from the old bugzilla and
+   # cgit hosting over to gitlab.fd.o, no activity in a year, no way
+   # to report a bug I guess. Yay dead software.
+   #
+   # Do not trust for LTO either
+   append-flags -fno-strict-aliasing
+   filter-lto
+
local XORG_CONFIGURE_OPTIONS=(
$(use_enable debug)
$(use_enable debug xv-debug)



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-openchrome/

2021-03-19 Thread David Seifert
commit: f97af2fb8cdf61733bf0ba5f8d0d527099dd0b37
Author: David Seifert  gentoo  org>
AuthorDate: Fri Mar 19 22:39:46 2021 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Mar 19 22:39:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f97af2fb

x11-drivers/xf86-video-openchrome: Port to EAPI 7

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: David Seifert  gentoo.org>

 .../xf86-video-openchrome-0.6.0.ebuild | 29 +++---
 1 file changed, 14 insertions(+), 15 deletions(-)

diff --git 
a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild 
b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild
index b2f2a36914b..1219380c354 100644
--- a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild
+++ b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild
@@ -1,42 +1,41 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
+
 XORG_DRI="always"
-inherit xorg-2
+inherit xorg-3
 
 DESCRIPTION="X.Org driver for VIA/S3G cards"
 HOMEPAGE="https://www.freedesktop.org/wiki/Openchrome/;
-LICENSE="MIT"
 
+LICENSE="MIT"
 KEYWORDS="amd64 x86"
 IUSE="debug viaregtool"
 
-RDEPEND=">=x11-base/xorg-server-1.9"
-DEPEND="
-   ${RDEPEND}
+RDEPEND="
+   >=x11-base/xorg-server-1.9
x11-libs/libX11
x11-libs/libXext
-   x11-libs/libXv
x11-libs/libXvMC
-   x11-libs/libdrm
-"
-
-DOCS=( ChangeLog NEWS README )
+   x11-libs/libdrm"
+DEPEND="
+   ${RDEPEND}
+   x11-libs/libXv"
 
 PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
 
 src_configure() {
-   XORG_CONFIGURE_OPTIONS=(
+   local XORG_CONFIGURE_OPTIONS=(
$(use_enable debug)
$(use_enable debug xv-debug)
$(use_enable viaregtool)
)
-   xorg-2_src_configure
+   xorg-3_src_configure
 }
 
 pkg_postinst() {
-   xorg-2_pkg_postinst
+   xorg-3_pkg_postinst
 
elog "Supported chipsets:"
elog "CLE266 (VT3122), KM400/P4M800 (VT3205), K8M800 (VT3204),"



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-openchrome/files/, x11-drivers/xf86-video-openchrome/

2020-12-28 Thread David Seifert
commit: 8c25bdd23f13c850c10330fc66c799a79c08f1e2
Author: Jakov Smolic  sartura  hr>
AuthorDate: Mon Dec 28 14:15:44 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Dec 28 14:15:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c25bdd2

x11-drivers/xf86-video-openchrome: Fix build with gcc-10

* Thanks to Sam James for providing the patch link

Closes: https://bugs.gentoo.org/707478
Closes: https://github.com/gentoo/gentoo/pull/18476
Package-Manager: Portage-3.0.9, Repoman-3.0.1
Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: David Seifert  gentoo.org>

 .../xf86-video-openchrome-0.6.0-fno-common.patch   | 45 ++
 .../xf86-video-openchrome-0.6.0.ebuild |  4 +-
 2 files changed, 48 insertions(+), 1 deletion(-)

diff --git 
a/x11-drivers/xf86-video-openchrome/files/xf86-video-openchrome-0.6.0-fno-common.patch
 
b/x11-drivers/xf86-video-openchrome/files/xf86-video-openchrome-0.6.0-fno-common.patch
new file mode 100644
index 000..78f3ca9a6cc
--- /dev/null
+++ 
b/x11-drivers/xf86-video-openchrome/files/xf86-video-openchrome-0.6.0-fno-common.patch
@@ -0,0 +1,45 @@
+--- a/src/via_driver.h
 b/src/via_driver.h
+@@ -393,9 +393,6 @@ typedef struct
+ } VIAEntRec, *VIAEntPtr;
+ 
+ 
+-/* In via_display.c. */
+-const xf86CrtcFuncsRec iga1_crtc_funcs;
+-const xf86CrtcFuncsRec iga2_crtc_funcs;
+ 
+ /* In via_exa.c. */
+ Bool viaInitExa(ScreenPtr pScreen);
+--- a/src/via_sii164.h
 b/src/via_sii164.h
+@@ -47,7 +47,7 @@ typedef struct _viaSiI164 {
+ } viaSiI164Rec, *viaSiI164RecPtr;
+ 
+ 
+-const xf86OutputFuncsRec via_sii164_funcs;
++extern const xf86OutputFuncsRec via_sii164_funcs;
+ 
+ Bool viaSiI164Init(ScrnInfoPtr pScrn, I2CBusPtr pI2CBus);
+ 
+--- a/src/via_ums.h
 b/src/via_ums.h
+@@ -260,6 +260,8 @@ void viaIGA2SetDisplayRegister(ScrnInfoPtr pScrn, 
DisplayModePtr mode);
+ void viaIGA2Save(ScrnInfoPtr pScrn);
+ void viaIGA2Restore(ScrnInfoPtr pScrn);
+ void ViaShadowCRTCSetMode(ScrnInfoPtr pScrn, DisplayModePtr mode);
++extern const xf86CrtcFuncsRec iga1_crtc_funcs;
++extern const xf86CrtcFuncsRec iga2_crtc_funcs;
+ 
+ /* via_analog.c */
+ void via_analog_init(ScrnInfoPtr pScrn);
+--- a/src/via_vt1632.h
 b/src/via_vt1632.h
+@@ -44,7 +44,7 @@ typedef struct _viaVT1632Rec {
+ } viaVT1632Rec, *viaVT1632RecPtr;
+ 
+ 
+-const xf86OutputFuncsRec via_vt1632_funcs;
++extern const xf86OutputFuncsRec via_vt1632_funcs;
+ 
+ Bool viaVT1632Init(ScrnInfoPtr pScrn, I2CBusPtr pI2CBus);
+ 

diff --git 
a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild 
b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild
index 0dce180b8af..b2f2a36914b 100644
--- a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild
+++ b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -24,6 +24,8 @@ DEPEND="
 
 DOCS=( ChangeLog NEWS README )
 
+PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
+
 src_configure() {
XORG_CONFIGURE_OPTIONS=(
$(use_enable debug)



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-openchrome/

2019-01-19 Thread Matt Turner
commit: e0817b14febf454e6c63daffe5603f7b01bec00b
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Jan 20 06:51:42 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Jan 20 06:52:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0817b14

x11-drivers/xf86-video-openchrome: regenerate Manifest

Signed-off-by: Matt Turner  gentoo.org>

 x11-drivers/xf86-video-openchrome/Manifest | 1 -
 1 file changed, 1 deletion(-)

diff --git a/x11-drivers/xf86-video-openchrome/Manifest 
b/x11-drivers/xf86-video-openchrome/Manifest
index 0c49b6ac35f..073dee86f5c 100644
--- a/x11-drivers/xf86-video-openchrome/Manifest
+++ b/x11-drivers/xf86-video-openchrome/Manifest
@@ -1,2 +1 @@
-DIST xf86-video-openchrome-0.5.0.tar.bz2 542713 BLAKE2B 
e0133ddf1c35db8ea9ef29885d4283d2c61fa9168ce6b5f3f9476726e053ec1ed080d6545b8a32272acc09c1a52a3a63c43c9d1f52dc87ffeacb424832138d79
 SHA512 
119454de04847dd5298df2d1dc428157c60eba0a12c200abca40dcd066d89363cb685ed618bb17248818fa74752b77bbc9858cdd46e659c0026c90426fe652cf
 DIST xf86-video-openchrome-0.6.0.tar.bz2 537619 BLAKE2B 
30d8ab246646bde41b1ce0fd48c133cb7c2c3cff7c7201daf7e4fcded7a3e47bdc28d739247fce69b17a0e7697b33af35e3f771496654920b275a5aacbe8fc6f
 SHA512 
f074e70d54c87a9d6e1b52c2c2d72d7c551dcb59a5f34c0a5f9495db1a6e45db4300d51fabf7eedfbe91f964f9422931c752a49b322715c6aa9ddb0db9dd6004



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-openchrome/

2019-01-19 Thread Matt Turner
commit: 05eaabe60a3bdc114683c4ad41a3285c562202e9
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Jan 20 05:29:17 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Jan 20 05:43:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05eaabe6

x11-drivers/xf86-video-openchrome: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 .../xf86-video-openchrome-0.5.0.ebuild | 49 --
 1 file changed, 49 deletions(-)

diff --git 
a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.5.0.ebuild 
b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.5.0.ebuild
deleted file mode 100644
index 0dce180b8af..000
--- a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.5.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-XORG_DRI="always"
-inherit xorg-2
-
-DESCRIPTION="X.Org driver for VIA/S3G cards"
-HOMEPAGE="https://www.freedesktop.org/wiki/Openchrome/;
-LICENSE="MIT"
-
-KEYWORDS="amd64 x86"
-IUSE="debug viaregtool"
-
-RDEPEND=">=x11-base/xorg-server-1.9"
-DEPEND="
-   ${RDEPEND}
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXv
-   x11-libs/libXvMC
-   x11-libs/libdrm
-"
-
-DOCS=( ChangeLog NEWS README )
-
-src_configure() {
-   XORG_CONFIGURE_OPTIONS=(
-   $(use_enable debug)
-   $(use_enable debug xv-debug)
-   $(use_enable viaregtool)
-   )
-   xorg-2_src_configure
-}
-
-pkg_postinst() {
-   xorg-2_pkg_postinst
-
-   elog "Supported chipsets:"
-   elog "CLE266 (VT3122), KM400/P4M800 (VT3205), K8M800 (VT3204),"
-   elog "PM800/PM880/CN400 (VT3259), VM800/CN700/P4M800Pro (VT3314),"
-   elog "CX700 (VT3324), P4M890 (VT3327), K8M890 (VT3336),"
-   elog "P4M900/VN896 (VT3364), VX800 (VT3353), VX855 (VT3409), VX900"
-   elog
-   elog "The driver name is 'openchrome', and this is what you need"
-   elog "to use in your xorg.conf (and not 'via')."
-   elog
-   elog "See the ChangeLog and release notes for more information."
-}



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-openchrome/

2017-06-01 Thread Agostino Sarubbo
commit: c1b410ba91149fa61f19b63d114d2891c7e16b6b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Jun  1 09:11:16 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Jun  1 09:13:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1b410ba

x11-drivers/xf86-video-openchrome: x86 stable wrt bug #620234

Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild 
b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild
index c1c2922dd44..0dce180b8af 100644
--- a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild
+++ b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="X.Org driver for VIA/S3G cards"
 HOMEPAGE="https://www.freedesktop.org/wiki/Openchrome/;
 LICENSE="MIT"
 
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="debug viaregtool"
 
 RDEPEND=">=x11-base/xorg-server-1.9"



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-openchrome/

2017-05-31 Thread Agostino Sarubbo
commit: e834500c9191d137345c99c0ec1873f0c3d90bab
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed May 31 13:05:56 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed May 31 13:05:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e834500c

x11-drivers/xf86-video-openchrome: amd64 stable wrt bug #620234

Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild 
b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild
index 93c030a54e0..c1c2922dd44 100644
--- a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild
+++ b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="X.Org driver for VIA/S3G cards"
 HOMEPAGE="https://www.freedesktop.org/wiki/Openchrome/;
 LICENSE="MIT"
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="debug viaregtool"
 
 RDEPEND=">=x11-base/xorg-server-1.9"



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-openchrome/

2017-03-07 Thread Matt Turner
commit: 44fa61384cea24a08fb31c42ef2cd2f7cf1fa113
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Mar  8 01:31:23 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Mar  8 01:36:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44fa6138

x11-drivers/xf86-video-openchrome: Version bump to 0.6.0.

 x11-drivers/xf86-video-openchrome/Manifest |  1 +
 .../xf86-video-openchrome-0.6.0.ebuild | 49 ++
 2 files changed, 50 insertions(+)

diff --git a/x11-drivers/xf86-video-openchrome/Manifest 
b/x11-drivers/xf86-video-openchrome/Manifest
index 007209ea5ba..d1b031664ff 100644
--- a/x11-drivers/xf86-video-openchrome/Manifest
+++ b/x11-drivers/xf86-video-openchrome/Manifest
@@ -1,3 +1,4 @@
 DIST xf86-video-openchrome-0.3.3.tar.bz2 518705 SHA256 
e49e2f1e5dac86408e5a74b87038cc4082d2c3fba4e0579823161991432412ed SHA512 
ed1c30a6d92b804648de324d98ca61bd7887b4b97ed94e5b0c1f5abaf7d0dbb5ba1dc79e7c35a8cd76bff0d5b05594921bddc9007ef9ba00e72d0b9bd678de9e
 WHIRLPOOL 
d22b8a6ffaaad33a705a725abb018b9637097011f83682c10a6c72a8ffce29ae82341080a86d82203f00aad2fec9c94fda5065c9df7494a4fc858843292e75ab
 DIST xf86-video-openchrome-0.4.0.tar.bz2 532508 SHA256 
73e7966d01d0d644d3b9204e8bfc106cb99069c58e981626e7352f2693e3e927 SHA512 
64408abfd759b4ba1a2bf1714345f9b1f806127f66af8b746bd58753fc10b631a7695a68351e42fa514ef4e87e2b3e564884abd758e32b2d1253b66e05e40ac8
 WHIRLPOOL 
aa45f88c52e5fd838abcb78c13611c415704ae0dcb3c3a0d9f5626c66813c9304cae483229c551af48562e77abe43222a7355ff6da9b41c67e42882f8f90e7a2
 DIST xf86-video-openchrome-0.5.0.tar.bz2 542713 SHA256 
49fdd613975a332a0a64720b382420354aecaf2fcbb4920efd094d5a0ac955bb SHA512 
119454de04847dd5298df2d1dc428157c60eba0a12c200abca40dcd066d89363cb685ed618bb17248818fa74752b77bbc9858cdd46e659c0026c90426fe652cf
 WHIRLPOOL 
21c51d2ad01c748543aef9fe22ae552fb6b13e0b877d1b2e2fc0b7ed85db52015ebb538c5c96b354b76d061e602daf61ac150ad757fa3d6860ae2e7c48096c6e
+DIST xf86-video-openchrome-0.6.0.tar.bz2 537619 SHA256 
da2975c6379358de52c1257710c67eb59139a7f0a1cd28d00cc64cc3e1c02f75 SHA512 
f074e70d54c87a9d6e1b52c2c2d72d7c551dcb59a5f34c0a5f9495db1a6e45db4300d51fabf7eedfbe91f964f9422931c752a49b322715c6aa9ddb0db9dd6004
 WHIRLPOOL 
9fff16864532877446764fc50b4e93b215cd64e1ca938add848689e64c4fdcee3c53c71714ea3a4c7c39b0a78ba35637fb8b039ed555e0af34a98f97a8dd7d34

diff --git 
a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild 
b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild
new file mode 100644
index 000..93c030a54e0
--- /dev/null
+++ b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.6.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+XORG_DRI="always"
+inherit xorg-2
+
+DESCRIPTION="X.Org driver for VIA/S3G cards"
+HOMEPAGE="https://www.freedesktop.org/wiki/Openchrome/;
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~x86"
+IUSE="debug viaregtool"
+
+RDEPEND=">=x11-base/xorg-server-1.9"
+DEPEND="
+   ${RDEPEND}
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXv
+   x11-libs/libXvMC
+   x11-libs/libdrm
+"
+
+DOCS=( ChangeLog NEWS README )
+
+src_configure() {
+   XORG_CONFIGURE_OPTIONS=(
+   $(use_enable debug)
+   $(use_enable debug xv-debug)
+   $(use_enable viaregtool)
+   )
+   xorg-2_src_configure
+}
+
+pkg_postinst() {
+   xorg-2_pkg_postinst
+
+   elog "Supported chipsets:"
+   elog "CLE266 (VT3122), KM400/P4M800 (VT3205), K8M800 (VT3204),"
+   elog "PM800/PM880/CN400 (VT3259), VM800/CN700/P4M800Pro (VT3314),"
+   elog "CX700 (VT3324), P4M890 (VT3327), K8M890 (VT3336),"
+   elog "P4M900/VN896 (VT3364), VX800 (VT3353), VX855 (VT3409), VX900"
+   elog
+   elog "The driver name is 'openchrome', and this is what you need"
+   elog "to use in your xorg.conf (and not 'via')."
+   elog
+   elog "See the ChangeLog and release notes for more information."
+}



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-openchrome/

2016-09-17 Thread Pacho Ramos
commit: 6b4e6dac8fce404899c1357fe4c2b66f760db8f2
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Sep 17 11:10:24 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Sep 17 11:10:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b4e6dac

x11-drivers/xf86-video-openchrome: amd64 stable, bug 579266

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"

 x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.4.0.ebuild 
b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.4.0.ebuild
index 92749a3..331df66 100644
--- a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.4.0.ebuild
+++ b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.4.0.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="X.Org driver for VIA/S3G cards"
 HOMEPAGE="https://www.freedesktop.org/wiki/Openchrome/;
 LICENSE="MIT"
 
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="debug viaregtool"
 
 RDEPEND=">=x11-base/xorg-server-1.9"



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-openchrome/

2016-09-17 Thread Pacho Ramos
commit: c889b861004c487d513e493157cf8ae49f9b3b98
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Sep 17 10:44:45 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Sep 17 10:44:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c889b861

x11-drivers/xf86-video-openchrome: x86 stable, bug 579266

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"

 x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.4.0.ebuild 
b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.4.0.ebuild
index 0d44bc0..92749a3 100644
--- a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.4.0.ebuild
+++ b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.4.0.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="X.Org driver for VIA/S3G cards"
 HOMEPAGE="https://www.freedesktop.org/wiki/Openchrome/;
 LICENSE="MIT"
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="debug viaregtool"
 
 RDEPEND=">=x11-base/xorg-server-1.9"



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-openchrome/

2016-07-06 Thread Chí-Thanh Christopher Nguyễn
commit: c7d05ee25d5163f57a020a27cc420ff2b11e4e46
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Wed Jul  6 23:11:33 2016 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Wed Jul  6 23:11:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7d05ee2

x11-drivers/xf86-video-openchrome: version bump to 0.5.0

Package-Manager: portage-2.2.28

 x11-drivers/xf86-video-openchrome/Manifest |  1 +
 .../xf86-video-openchrome-0.5.0.ebuild | 50 ++
 2 files changed, 51 insertions(+)

diff --git a/x11-drivers/xf86-video-openchrome/Manifest 
b/x11-drivers/xf86-video-openchrome/Manifest
index 7631d37..007209e 100644
--- a/x11-drivers/xf86-video-openchrome/Manifest
+++ b/x11-drivers/xf86-video-openchrome/Manifest
@@ -1,2 +1,3 @@
 DIST xf86-video-openchrome-0.3.3.tar.bz2 518705 SHA256 
e49e2f1e5dac86408e5a74b87038cc4082d2c3fba4e0579823161991432412ed SHA512 
ed1c30a6d92b804648de324d98ca61bd7887b4b97ed94e5b0c1f5abaf7d0dbb5ba1dc79e7c35a8cd76bff0d5b05594921bddc9007ef9ba00e72d0b9bd678de9e
 WHIRLPOOL 
d22b8a6ffaaad33a705a725abb018b9637097011f83682c10a6c72a8ffce29ae82341080a86d82203f00aad2fec9c94fda5065c9df7494a4fc858843292e75ab
 DIST xf86-video-openchrome-0.4.0.tar.bz2 532508 SHA256 
73e7966d01d0d644d3b9204e8bfc106cb99069c58e981626e7352f2693e3e927 SHA512 
64408abfd759b4ba1a2bf1714345f9b1f806127f66af8b746bd58753fc10b631a7695a68351e42fa514ef4e87e2b3e564884abd758e32b2d1253b66e05e40ac8
 WHIRLPOOL 
aa45f88c52e5fd838abcb78c13611c415704ae0dcb3c3a0d9f5626c66813c9304cae483229c551af48562e77abe43222a7355ff6da9b41c67e42882f8f90e7a2
+DIST xf86-video-openchrome-0.5.0.tar.bz2 542713 SHA256 
49fdd613975a332a0a64720b382420354aecaf2fcbb4920efd094d5a0ac955bb SHA512 
119454de04847dd5298df2d1dc428157c60eba0a12c200abca40dcd066d89363cb685ed618bb17248818fa74752b77bbc9858cdd46e659c0026c90426fe652cf
 WHIRLPOOL 
21c51d2ad01c748543aef9fe22ae552fb6b13e0b877d1b2e2fc0b7ed85db52015ebb538c5c96b354b76d061e602daf61ac150ad757fa3d6860ae2e7c48096c6e

diff --git 
a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.5.0.ebuild 
b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.5.0.ebuild
new file mode 100644
index 000..0d44bc0
--- /dev/null
+++ b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.5.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+XORG_DRI="always"
+inherit xorg-2
+
+DESCRIPTION="X.Org driver for VIA/S3G cards"
+HOMEPAGE="https://www.freedesktop.org/wiki/Openchrome/;
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~x86"
+IUSE="debug viaregtool"
+
+RDEPEND=">=x11-base/xorg-server-1.9"
+DEPEND="
+   ${RDEPEND}
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXv
+   x11-libs/libXvMC
+   x11-libs/libdrm
+"
+
+DOCS=( ChangeLog NEWS README )
+
+src_configure() {
+   XORG_CONFIGURE_OPTIONS=(
+   $(use_enable debug)
+   $(use_enable debug xv-debug)
+   $(use_enable viaregtool)
+   )
+   xorg-2_src_configure
+}
+
+pkg_postinst() {
+   xorg-2_pkg_postinst
+
+   elog "Supported chipsets:"
+   elog "CLE266 (VT3122), KM400/P4M800 (VT3205), K8M800 (VT3204),"
+   elog "PM800/PM880/CN400 (VT3259), VM800/CN700/P4M800Pro (VT3314),"
+   elog "CX700 (VT3324), P4M890 (VT3327), K8M890 (VT3336),"
+   elog "P4M900/VN896 (VT3364), VX800 (VT3353), VX855 (VT3409), VX900"
+   elog
+   elog "The driver name is 'openchrome', and this is what you need"
+   elog "to use in your xorg.conf (and not 'via')."
+   elog
+   elog "See the ChangeLog and release notes for more information."
+}



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-openchrome/

2016-05-29 Thread Chí-Thanh Christopher Nguyễn
commit: e56bf5142eab166a9b9ca149d3e4e73bc2287e79
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Sun May 29 18:55:41 2016 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Sun May 29 18:55:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e56bf514

x11-drivers/xf86-video-openchrome: Version bump

Package-Manager: portage-2.2.28

 x11-drivers/xf86-video-openchrome/Manifest |  1 +
 .../xf86-video-openchrome-0.4.0.ebuild | 50 ++
 2 files changed, 51 insertions(+)

diff --git a/x11-drivers/xf86-video-openchrome/Manifest 
b/x11-drivers/xf86-video-openchrome/Manifest
index f83e4a5..7631d37 100644
--- a/x11-drivers/xf86-video-openchrome/Manifest
+++ b/x11-drivers/xf86-video-openchrome/Manifest
@@ -1 +1,2 @@
 DIST xf86-video-openchrome-0.3.3.tar.bz2 518705 SHA256 
e49e2f1e5dac86408e5a74b87038cc4082d2c3fba4e0579823161991432412ed SHA512 
ed1c30a6d92b804648de324d98ca61bd7887b4b97ed94e5b0c1f5abaf7d0dbb5ba1dc79e7c35a8cd76bff0d5b05594921bddc9007ef9ba00e72d0b9bd678de9e
 WHIRLPOOL 
d22b8a6ffaaad33a705a725abb018b9637097011f83682c10a6c72a8ffce29ae82341080a86d82203f00aad2fec9c94fda5065c9df7494a4fc858843292e75ab
+DIST xf86-video-openchrome-0.4.0.tar.bz2 532508 SHA256 
73e7966d01d0d644d3b9204e8bfc106cb99069c58e981626e7352f2693e3e927 SHA512 
64408abfd759b4ba1a2bf1714345f9b1f806127f66af8b746bd58753fc10b631a7695a68351e42fa514ef4e87e2b3e564884abd758e32b2d1253b66e05e40ac8
 WHIRLPOOL 
aa45f88c52e5fd838abcb78c13611c415704ae0dcb3c3a0d9f5626c66813c9304cae483229c551af48562e77abe43222a7355ff6da9b41c67e42882f8f90e7a2

diff --git 
a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.4.0.ebuild 
b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.4.0.ebuild
new file mode 100644
index 000..0d44bc0
--- /dev/null
+++ b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.4.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+XORG_DRI="always"
+inherit xorg-2
+
+DESCRIPTION="X.Org driver for VIA/S3G cards"
+HOMEPAGE="https://www.freedesktop.org/wiki/Openchrome/;
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~x86"
+IUSE="debug viaregtool"
+
+RDEPEND=">=x11-base/xorg-server-1.9"
+DEPEND="
+   ${RDEPEND}
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXv
+   x11-libs/libXvMC
+   x11-libs/libdrm
+"
+
+DOCS=( ChangeLog NEWS README )
+
+src_configure() {
+   XORG_CONFIGURE_OPTIONS=(
+   $(use_enable debug)
+   $(use_enable debug xv-debug)
+   $(use_enable viaregtool)
+   )
+   xorg-2_src_configure
+}
+
+pkg_postinst() {
+   xorg-2_pkg_postinst
+
+   elog "Supported chipsets:"
+   elog "CLE266 (VT3122), KM400/P4M800 (VT3205), K8M800 (VT3204),"
+   elog "PM800/PM880/CN400 (VT3259), VM800/CN700/P4M800Pro (VT3314),"
+   elog "CX700 (VT3324), P4M890 (VT3327), K8M890 (VT3336),"
+   elog "P4M900/VN896 (VT3364), VX800 (VT3353), VX855 (VT3409), VX900"
+   elog
+   elog "The driver name is 'openchrome', and this is what you need"
+   elog "to use in your xorg.conf (and not 'via')."
+   elog
+   elog "See the ChangeLog and release notes for more information."
+}