* [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfswitch-plugin/
@ 2015-09-14 4:17 Jason Zaman
0 siblings, 0 replies; 6+ messages in thread
From: Jason Zaman @ 2015-09-14 4:17 UTC (permalink / raw
To: gentoo-commits
commit: daa084258c5ae7fd1f78a42edbf103016a52127c
Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 14 04:15:55 2015 +0000
Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Mon Sep 14 04:16:27 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daa08425
xfce-extra/xfswitch-plugin: Add in lxdm support
Gentoo-Bug: https://bugs.gentoo.org/526598
Package-Manager: portage-2.2.20.1
| 4 +-
.../xfswitch-plugin-0.0.1-r2.ebuild | 66 ++++++++++++++++++++++
2 files changed, 69 insertions(+), 1 deletion(-)
--git a/xfce-extra/xfswitch-plugin/metadata.xml b/xfce-extra/xfswitch-plugin/metadata.xml
index f6d547a..bd3bfaf 100644
--- a/xfce-extra/xfswitch-plugin/metadata.xml
+++ b/xfce-extra/xfswitch-plugin/metadata.xml
@@ -6,6 +6,8 @@
<name>XFCE Team</name>
</maintainer>
<use>
- <flag name='gdm'>Use gdmflexiserver from <pkg>gnome-base/gdm</pkg> instead of <pkg>x11-misc/lightdm</pkg></flag>
+ <flag name='gdm'>Compatibility with <pkg>gnome-base/gdm</pkg> only</flag>
+ <flag name='lightdm'>Compatibility with <pkg>x11-misc/lightdm</pkg> only</flag>
+ <flag name='lxdm'>Compatibility with <pkg>lxde-base/lxdm</pkg> only</flag>
</use>
</pkgmetadata>
diff --git a/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r2.ebuild b/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r2.ebuild
new file mode 100644
index 0000000..74b05a4
--- /dev/null
+++ b/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r2.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit multilib xfconf
+
+DESCRIPTION="A panel plug-in for user switching (using lightdm or gdm or ldm)"
+HOMEPAGE="http://goodies.xfce.org/projects/panel-plugins/xfswitch-plugin"
+SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+gdm lightdm lxdm"
+
+REQUIRED_USE="
+ gdm? (
+ !lightdm
+ !lxdm
+ )
+
+ lightdm? (
+ !gdm
+ !lxdm
+ )
+ lxdm? (
+ !gdm
+ !lightdm
+ )
+"
+
+COMMON_DEPEND=">=x11-libs/gtk+-2.12:2
+ >=xfce-base/libxfce4util-4.8
+ >=xfce-base/libxfcegui4-4.8
+ >=xfce-base/xfce4-panel-4.8"
+RDEPEND="${COMMON_DEPEND}
+ gdm? ( gnome-base/gdm )
+ lightdm? ( x11-misc/lightdm )
+ lxdm? ( lxde-base/lxdm )"
+DEPEND="${COMMON_DEPEND}
+ dev-util/intltool
+ virtual/pkgconfig
+ sys-devel/gettext"
+
+pkg_setup() {
+ XFCONF=(
+ --libexecdir="${EPREFIX}"/usr/$(get_libdir)
+ )
+
+ DOCS=( AUTHORS ChangeLog NEWS README )
+}
+
+src_prepare() {
+ if use lightdm; then #411921, 526598
+ sed -i \
+ -e '/command/s:gdmflexiserver --new:/usr/bin/dm-tool switch-to-greeter:' \
+ panel-plugin/main.c || die
+ elif use lxdm; then
+ sed -i \
+ -e '/command/s:gdmflexiserver --new:/usr/sbin/lxdm -c USER_SWITCH:' \
+ panel-plugin/main.c || die
+ fi
+
+ xfconf_src_prepare
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfswitch-plugin/
@ 2016-12-20 12:31 Tobias Klausmann
0 siblings, 0 replies; 6+ messages in thread
From: Tobias Klausmann @ 2016-12-20 12:31 UTC (permalink / raw
To: gentoo-commits
commit: fd5b168f18104b4cac7dac0d512fbb91958c1ccb
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 20 11:02:23 2016 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Tue Dec 20 12:31:16 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd5b168f
xfce-extra/xfswitch-plugin-0.0.1-r2: stable on amd64
Gentoo-Bug: 586614
| 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--git a/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r2.ebuild b/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r2.ebuild
index 74b05a4..15cc0d5 100644
--- a/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r2.ebuild
+++ b/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="+gdm lightdm lxdm"
REQUIRED_USE="
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfswitch-plugin/
@ 2017-01-13 15:41 Agostino Sarubbo
0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo @ 2017-01-13 15:41 UTC (permalink / raw
To: gentoo-commits
commit: 0093bdeac8da4d773594c305b36377219acd2ea2
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 13 15:41:28 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jan 13 15:41:28 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0093bdea
xfce-extra/xfswitch-plugin: x86 stable wrt bug #586614
Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
| 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--git a/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r2.ebuild b/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r2.ebuild
index 15cc0d5..a8f1cf2 100644
--- a/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r2.ebuild
+++ b/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -11,7 +11,7 @@ SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="+gdm lightdm lxdm"
REQUIRED_USE="
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfswitch-plugin/
@ 2017-06-09 7:39 Michał Górny
0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2017-06-09 7:39 UTC (permalink / raw
To: gentoo-commits
commit: 75ea7ac21e67de0a1a748f8be58a7496aa4b1862
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 9 07:10:05 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jun 9 07:39:10 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75ea7ac2
xfce-extra/xfswitch-plugin: Clean old up
Closes: https://github.com/gentoo/gentoo/pull/4886
.../xfswitch-plugin-0.0.1-r1.ebuild | 44 ----------------------
1 file changed, 44 deletions(-)
diff --git a/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r1.ebuild b/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r1.ebuild
deleted file mode 100644
index df707123439..00000000000
--- a/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit multilib xfconf
-
-DESCRIPTION="A panel plug-in for user switching (using x11-misc/lightdm or gnome-base/gdm)"
-HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfswitch-plugin"
-SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="gdm"
-
-COMMON_DEPEND=">=x11-libs/gtk+-2.12:2
- >=xfce-base/libxfce4util-4.8
- >=xfce-base/libxfcegui4-4.8
- >=xfce-base/xfce4-panel-4.8"
-RDEPEND="${COMMON_DEPEND}
- gdm? ( gnome-base/gdm )
- !gdm? ( x11-misc/lightdm )"
-DEPEND="${COMMON_DEPEND}
- dev-util/intltool
- virtual/pkgconfig
- sys-devel/gettext"
-
-pkg_setup() {
- XFCONF=(
- --libexecdir="${EPREFIX}"/usr/$(get_libdir)
- )
-
- DOCS=( AUTHORS ChangeLog NEWS README )
-}
-
-src_prepare() {
- if ! use gdm; then #411921
- sed -i \
- -e '/command/s:gdmflexiserver:/usr/libexec/lightdm/&:' \
- panel-plugin/main.c || die
- fi
-
- xfconf_src_prepare
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfswitch-plugin/
@ 2018-07-10 12:29 Michał Górny
0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2018-07-10 12:29 UTC (permalink / raw
To: gentoo-commits
commit: bb7f85bdf976470d80b3cddafd10328fb411b706
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 10 10:48:33 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jul 10 12:29:12 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb7f85bd
xfce-extra/xfswitch-plugin: Inline mirror://xfce
| 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--git a/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r2.ebuild b/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r2.ebuild
index 9d15a9bb129..abf5b49a3b4 100644
--- a/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r2.ebuild
+++ b/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r2.ebuild
@@ -6,7 +6,7 @@ inherit multilib xfconf
DESCRIPTION="A panel plug-in for user switching (using lightdm or gdm or ldm)"
HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfswitch-plugin"
-SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.gz"
+SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfswitch-plugin/
@ 2019-05-11 11:43 Mikle Kolyada
0 siblings, 0 replies; 6+ messages in thread
From: Mikle Kolyada @ 2019-05-11 11:43 UTC (permalink / raw
To: gentoo-commits
commit: 09025fbd794d127b9b465b68c71bd5d8d996ebbf
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat May 11 11:42:57 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat May 11 11:42:57 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09025fbd
xfce-extra/xfswitch-plugin: remove last rited package
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
| 1 -
| 13 -----
.../xfswitch-plugin-0.0.1-r2.ebuild | 65 ----------------------
3 files changed, 79 deletions(-)
diff --git a/xfce-extra/xfswitch-plugin/Manifest b/xfce-extra/xfswitch-plugin/Manifest
deleted file mode 100644
index a5c8d9923bc..00000000000
--- a/xfce-extra/xfswitch-plugin/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST xfswitch-plugin-0.0.1.tar.gz 314589 BLAKE2B 7db630178bbe6ef7dcb6154f6aca0ba3ebc80670d78d0c87f1e4d140a23082c64118aa89d36793384a3b3217784c585bffdad505e213a78837054469a85c7d1d SHA512 58b427d5d099f9e351911cb30707a6024e10ae90f7c978aafba5824f76f5ecdc615979e7a060146ca6cab85f69f8dc10e553884e37737c4f674dfdd3d1fa634e
diff --git a/xfce-extra/xfswitch-plugin/metadata.xml b/xfce-extra/xfswitch-plugin/metadata.xml
deleted file mode 100644
index bf60f51918b..00000000000
--- a/xfce-extra/xfswitch-plugin/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>xfce@gentoo.org</email>
- <name>XFCE Team</name>
- </maintainer>
- <use>
- <flag name="gdm">Compatibility with <pkg>gnome-base/gdm</pkg> only</flag>
- <flag name="lightdm">Compatibility with <pkg>x11-misc/lightdm</pkg> only</flag>
- <flag name="lxdm">Compatibility with <pkg>lxde-base/lxdm</pkg> only</flag>
- </use>
-</pkgmetadata>
diff --git a/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r2.ebuild b/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r2.ebuild
deleted file mode 100644
index abf5b49a3b4..00000000000
--- a/xfce-extra/xfswitch-plugin/xfswitch-plugin-0.0.1-r2.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit multilib xfconf
-
-DESCRIPTION="A panel plug-in for user switching (using lightdm or gdm or ldm)"
-HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfswitch-plugin"
-SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+gdm lightdm lxdm"
-
-REQUIRED_USE="
- gdm? (
- !lightdm
- !lxdm
- )
-
- lightdm? (
- !gdm
- !lxdm
- )
- lxdm? (
- !gdm
- !lightdm
- )
-"
-
-COMMON_DEPEND=">=x11-libs/gtk+-2.12:2
- >=xfce-base/libxfce4util-4.8
- >=xfce-base/libxfcegui4-4.8
- >=xfce-base/xfce4-panel-4.8"
-RDEPEND="${COMMON_DEPEND}
- gdm? ( gnome-base/gdm )
- lightdm? ( x11-misc/lightdm )
- lxdm? ( lxde-base/lxdm )"
-DEPEND="${COMMON_DEPEND}
- dev-util/intltool
- virtual/pkgconfig
- sys-devel/gettext"
-
-pkg_setup() {
- XFCONF=(
- --libexecdir="${EPREFIX}"/usr/$(get_libdir)
- )
-
- DOCS=( AUTHORS ChangeLog NEWS README )
-}
-
-src_prepare() {
- if use lightdm; then #411921, 526598
- sed -i \
- -e '/command/s:gdmflexiserver --new:/usr/bin/dm-tool switch-to-greeter:' \
- panel-plugin/main.c || die
- elif use lxdm; then
- sed -i \
- -e '/command/s:gdmflexiserver --new:/usr/sbin/lxdm -c USER_SWITCH:' \
- panel-plugin/main.c || die
- fi
-
- xfconf_src_prepare
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2019-05-11 11:43 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-14 4:17 [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfswitch-plugin/ Jason Zaman
-- strict thread matches above, loose matches on Subject: below --
2016-12-20 12:31 Tobias Klausmann
2017-01-13 15:41 Agostino Sarubbo
2017-06-09 7:39 Michał Górny
2018-07-10 12:29 Michał Górny
2019-05-11 11:43 Mikle Kolyada
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox