[gentoo-commits] repo/gentoo:master commit in: x11-wm/oroborus/

2023-02-20 Thread David Seifert
commit: 2aa85fb8684ebea335617392ba88df7341f497ac
Author: David Seifert  gentoo  org>
AuthorDate: Mon Feb 20 20:51:58 2023 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Feb 20 20:51:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2aa85fb8

x11-wm/oroborus: update EAPI 6 -> 8

Signed-off-by: David Seifert  gentoo.org>

 .../oroborus/{oroborus-2.0.20-r1.ebuild => oroborus-2.0.20-r2.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild 
b/x11-wm/oroborus/oroborus-2.0.20-r2.ebuild
similarity index 92%
rename from x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
rename to x11-wm/oroborus/oroborus-2.0.20-r2.ebuild
index 1c0dec3cece9..45d223b8d592 100644
--- a/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
+++ b/x11-wm/oroborus/oroborus-2.0.20-r2.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 DESCRIPTION="Small and fast window manager"
 HOMEPAGE="https://www.oroborus.org;



[gentoo-commits] repo/gentoo:master commit in: x11-wm/oroborus/

2022-10-19 Thread Sam James
commit: 1b969a7150aadd3460ee7090cf092b3cda07d114
Author: Petr Vaněk  atlas  cz>
AuthorDate: Wed Oct 19 09:34:57 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Oct 20 03:52:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b969a71

x11-wm/oroborus: fix metadata indentation

Signed-off-by: Petr Vaněk  atlas.cz>
Signed-off-by: Sam James  gentoo.org>

 x11-wm/oroborus/metadata.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-wm/oroborus/metadata.xml b/x11-wm/oroborus/metadata.xml
index bbd9b4fb5692..191494d6555a 100644
--- a/x11-wm/oroborus/metadata.xml
+++ b/x11-wm/oroborus/metadata.xml
@@ -1,8 +1,8 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-
+   
+   
Oroborus is a small and simple but configurable and themeable 
window 
manager. There is no fancy dock, clip, wharf, or root menu - 
these 
utilities can be provided by other programs. It has support for 
GNOME 



[gentoo-commits] repo/gentoo:master commit in: x11-wm/oroborus/files/, x11-wm/oroborus/

2020-11-26 Thread David Seifert
commit: a761d6f08552139aa32011fba0c0daf9fc995e30
Author: Jakov Smolic  sartura  hr>
AuthorDate: Thu Nov 26 10:32:33 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Nov 26 10:32:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a761d6f0

x11-wm/oroborus: fix build with gcc-10

Closes: https://bugs.gentoo.org/706722
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: David Seifert  gentoo.org>

 .../files/oroborus-2.0.20-fno-common.patch | 33 ++
 x11-wm/oroborus/oroborus-2.0.20-r1.ebuild  |  5 ++--
 2 files changed, 36 insertions(+), 2 deletions(-)

diff --git a/x11-wm/oroborus/files/oroborus-2.0.20-fno-common.patch 
b/x11-wm/oroborus/files/oroborus-2.0.20-fno-common.patch
new file mode 100644
index 000..e7a1e215715
--- /dev/null
+++ b/x11-wm/oroborus/files/oroborus-2.0.20-fno-common.patch
@@ -0,0 +1,33 @@
+--- a/src/hints.c
 b/src/hints.c
+@@ -43,7 +43,7 @@ Atom win_hints, win_state, win_client_list, win_layer, 
win_workspace,
+   win_workspace_count, win_desktop_button_proxy, win_supporting_wm_check,
+   gnome_panel_desktop_area;
+ Atom net_atoms[NET_ATOM_COUNT];
+-Display *dpy;
++extern Display *dpy;
+ 
+ void
+ initHints (Display * d)
+--- a/src/keyboard.c
 b/src/keyboard.c
+@@ -35,6 +35,8 @@
+ #include 
+ #endif
+ 
++int NumLockMask, CapsLockMask, ScrollLockMask;
++
+ void
+ parseKeyString (Display * dpy, MyKey * key, char *str)
+ {
+--- a/src/keyboard.h
 b/src/keyboard.h
+@@ -90,7 +90,7 @@ void grabKey (Display *, MyKey *, Window);
+ void ungrabKeys (Display *, Window);
+ void init_keyboard (Display * dpy);
+ 
+-int NumLockMask, CapsLockMask, ScrollLockMask;
++extern int NumLockMask, CapsLockMask, ScrollLockMask;
+ 
+ #endif /* __KEYBOARD_H */
+ 

diff --git a/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild 
b/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
index 071ee8295d3..1c0dec3cece 100644
--- a/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
+++ b/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,6 @@ SRC_URI="mirror://debian/pool/main/o/${PN}/${PN}_${PV}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 ppc x86"
-IUSE=""
 
 RDEPEND="
x11-libs/libICE
@@ -21,4 +20,6 @@ RDEPEND="
 DEPEND="${RDEPEND}
x11-base/xorg-proto"
 
+PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
+
 DOCS=( AUTHORS ChangeLog example.${PN}rc README TODO )



[gentoo-commits] repo/gentoo:master commit in: x11-wm/oroborus/files/

2018-05-25 Thread Aaron Bauman
commit: 601bc9548a9c8a3a691b53001bdfc61b9508dec9
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Thu May 24 17:40:56 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Fri May 25 12:42:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=601bc954

x11-wm/oroborus: remove unused patch(es)

Closes: https://github.com/gentoo/gentoo/pull/8562

 x11-wm/oroborus/files/oroborus.desktop | 10 --
 1 file changed, 10 deletions(-)

diff --git a/x11-wm/oroborus/files/oroborus.desktop 
b/x11-wm/oroborus/files/oroborus.desktop
deleted file mode 100644
index 725ce52170e..000
--- a/x11-wm/oroborus/files/oroborus.desktop
+++ /dev/null
@@ -1,10 +0,0 @@
-[Desktop Entry]
-Version=1.0
-Name=Oroborus
-Exec=oroborus
-TryExec=oroborus
-Icon=
-Type=Application
-
-[X-Window Manager]
-SessionManaged=false



[gentoo-commits] repo/gentoo:master commit in: x11-wm/oroborus/

2018-05-23 Thread Aaron Bauman
commit: d83457ded81d32261c29fd0f7906d5c10b0cc4e9
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Wed May 23 17:08:00 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu May 24 00:40:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d83457de

x11-wm/oroborus: use HTTPs

Closes: https://github.com/gentoo/gentoo/pull/8534

 x11-wm/oroborus/oroborus-2.0.20-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild 
b/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
index 1c51ba7f9b1..071ee8295d3 100644
--- a/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
+++ b/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=6
 
 DESCRIPTION="Small and fast window manager"
-HOMEPAGE="http://www.oroborus.org;
+HOMEPAGE="https://www.oroborus.org;
 SRC_URI="mirror://debian/pool/main/o/${PN}/${PN}_${PV}.tar.gz"
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: x11-wm/oroborus/

2018-05-19 Thread Aaron Bauman
commit: cebc24fc549b6e5eda8a47c7dcfd114fc30cd5df
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 06:57:53 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:31:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cebc24fc

x11-wm/oroborus: remove old

 x11-wm/oroborus/oroborus-2.0.20.ebuild | 37 --
 1 file changed, 37 deletions(-)

diff --git a/x11-wm/oroborus/oroborus-2.0.20.ebuild 
b/x11-wm/oroborus/oroborus-2.0.20.ebuild
deleted file mode 100644
index a5e7374cb09..000
--- a/x11-wm/oroborus/oroborus-2.0.20.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-DESCRIPTION="Small and fast window manager"
-HOMEPAGE="http://www.oroborus.org;
-SRC_URI="mirror://debian/pool/main/o/${PN}/${PN}_${PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="gnome"
-
-RDEPEND="x11-libs/libXpm
-   x11-libs/libXext
-   x11-libs/libSM
-   x11-libs/libICE
-   x11-libs/libX11"
-DEPEND="${RDEPEND}
-   x11-proto/xproto
-   x11-proto/xextproto"
-
-src_configure() {
-   econf --disable-dependency-tracking
-}
-
-src_install () {
-   emake DESTDIR="${D}" install
-
-   if use gnome; then
-   insinto /usr/share/gnome/wm-properties
-   doins "${FILESDIR}"/${PN}.desktop
-   fi
-
-   dodoc AUTHORS ChangeLog example.${PN}rc README TODO
-}



[gentoo-commits] repo/gentoo:master commit in: x11-wm/oroborus/

2018-05-17 Thread Sergei Trofimovich
commit: 13ac2827641bd4bae24799987e70e264625665b0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu May 17 21:12:13 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu May 17 21:18:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13ac2827

x11-wm/oroborus: stable 2.0.20-r1 for ppc, bug #650244

Tested-by: ernsteiswuerfel
Bug: https://bugs.gentoo.org/650244
Package-Manager: Portage-2.3.37, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

 x11-wm/oroborus/oroborus-2.0.20-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild 
b/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
index 8b3b84bd3cb..1f0a4840a57 100644
--- a/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
+++ b/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://debian/pool/main/o/${PN}/${PN}_${PV}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-wm/oroborus/

2018-03-20 Thread Agostino Sarubbo
commit: 8ebcca35ab597ae9185fb8fa93e4549abceca4aa
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 20 10:00:24 2018 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 20 10:00:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ebcca35

x11-wm/oroborus: amd64 stable wrt bug #650244

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

 x11-wm/oroborus/oroborus-2.0.20-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild 
b/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
index cd30c4379ef..8b3b84bd3cb 100644
--- a/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
+++ b/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://debian/pool/main/o/${PN}/${PN}_${PV}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-wm/oroborus/

2018-03-17 Thread Thomas Deutschmann
commit: de7b3a030498a68c082e14409cb20c249bdb2ad3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Mar 18 00:29:00 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Mar 18 00:40:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de7b3a03

x11-wm/oroborus: x86 stable (bug #650244)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-wm/oroborus/oroborus-2.0.20-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild 
b/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
index d3cebd0ecfc..cd30c4379ef 100644
--- a/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
+++ b/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ SRC_URI="mirror://debian/pool/main/o/${PN}/${PN}_${PV}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-wm/oroborus/

2017-03-04 Thread David Seifert
commit: 23b3220d57183434aa31f8cb471b202b9759e3d8
Author: Harri Nieminen  gmail  com>
AuthorDate: Thu Mar  2 18:31:08 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Mar  4 15:19:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23b3220d

x11-wm/oroborus: EAPI bump 4 -> 6, drop gnome use flag

Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4098

 x11-wm/oroborus/oroborus-2.0.20-r1.ebuild | 25 +
 1 file changed, 25 insertions(+)

diff --git a/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild 
b/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
new file mode 100644
index 000..d3cebd0ecfc
--- /dev/null
+++ b/x11-wm/oroborus/oroborus-2.0.20-r1.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Small and fast window manager"
+HOMEPAGE="http://www.oroborus.org;
+SRC_URI="mirror://debian/pool/main/o/${PN}/${PN}_${PV}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+RDEPEND="
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXpm"
+DEPEND="${RDEPEND}
+   x11-proto/xextproto
+   x11-proto/xproto"
+
+DOCS=( AUTHORS ChangeLog example.${PN}rc README TODO )