summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2019-02-22 17:34:17 -0500
committerAaron Bauman <bman@gentoo.org>2019-02-22 17:34:17 -0500
commitdfbb280e9b75faf00c923059f3bcba54f358ce9a (patch)
tree58909194a71fdc3d3f1837e450ad3e22617b8301 /dev-libs/swaylock
parentgui-libs/wlroots: add new category and package (diff)
downloadgentoo-dfbb280e9b75faf00c923059f3bcba54f358ce9a.tar.gz
gentoo-dfbb280e9b75faf00c923059f3bcba54f358ce9a.tar.bz2
gentoo-dfbb280e9b75faf00c923059f3bcba54f358ce9a.zip
dev-libs/sway{idle,lock}: drop and move to gui-apps/
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'dev-libs/swaylock')
-rw-r--r--dev-libs/swaylock/Manifest1
-rw-r--r--dev-libs/swaylock/metadata.xml34
-rw-r--r--dev-libs/swaylock/swaylock-1.3.ebuild61
-rw-r--r--dev-libs/swaylock/swaylock-9999.ebuild61
4 files changed, 0 insertions, 157 deletions
diff --git a/dev-libs/swaylock/Manifest b/dev-libs/swaylock/Manifest
deleted file mode 100644
index ee04cb54cdea..000000000000
--- a/dev-libs/swaylock/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST swaylock-1.3.tar.gz 32848 BLAKE2B 81ed50839bcb0139e7fc2081bd37e738f3e6ef23e96a5108d1acf56cc3425285f7382576a54201f1bf188883b1da06492074c091877af13832c0140e4e6099fd SHA512 723d758d76f076f3f1539ea0d651f6ad2562659c72eef7e895d7827a0be21db663652fe4ce2609065aff45ff20230879599868cff327ab52b896330ca04d78c4
diff --git a/dev-libs/swaylock/metadata.xml b/dev-libs/swaylock/metadata.xml
deleted file mode 100644
index 26cfed9c82aa..000000000000
--- a/dev-libs/swaylock/metadata.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>prometheanfire@gentoo.org</email>
- <name>Matthew Thode</name>
- </maintainer>
- <maintainer type="person">
- <email>speedjack95@gmail.com</email>
- <name>Niccolò Scatena</name>
- </maintainer>
- <longdescription lang="en">
- Swaylock is a screen locking utility for Wayland compositors. It is
- compatible with any Wayland compositor which implements the following
- Wayland protocols: wlr-layer-shell, wlr-input-inhibitor, xdg-output,
- xdg-shell.
-
- Swaylock is the official screen locker for <pkg>dev-libs/sway</pkg>.
- </longdescription>
- <use>
- <flag name="fish-completion">Enable fish completion support</flag>
- <flag name="gdk-pixbuf">Enable additional image format support via the <pkg>x11-libs/gdk-pixbuf</pkg> library</flag>
- <flag name="man">Build and install man pages</flag>
- </use>
- <upstream>
- <remote-id type="github">swaywm/swaylock</remote-id>
- <maintainer status="active">
- <email>sir@cmpwn.com</email>
- <name>Drew DeVault</name>
- </maintainer>
- <bugs-to>https://github.com/swaywm/swaylock/issues</bugs-to>
- <changelog>https://github.com/swaywm/swaylock/releases</changelog>
- </upstream>
-</pkgmetadata>
diff --git a/dev-libs/swaylock/swaylock-1.3.ebuild b/dev-libs/swaylock/swaylock-1.3.ebuild
deleted file mode 100644
index 85539fb9095e..000000000000
--- a/dev-libs/swaylock/swaylock-1.3.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit fcaps meson
-
-DESCRIPTION="Screen locker for Wayland"
-HOMEPAGE="https://github.com/swaywm/swaylock"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/swaywm/${PN}.git"
-else
- SRC_URI="https://github.com/swaywm/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="fish-completion +gdk-pixbuf +man +pam zsh-completion"
-
-DEPEND="
- dev-libs/wayland
- x11-libs/cairo
- x11-libs/libxkbcommon
- gdk-pixbuf? ( x11-libs/gdk-pixbuf:2 )
- pam? ( virtual/pam )
-"
-RDEPEND="
- ${DEPEND}
- !<=dev-libs/sway-1.0_beta2[swaylock]
-"
-BDEPEND="
- >=dev-libs/wayland-protocols-1.14
- virtual/pkgconfig
- man? ( app-text/scdoc )
-"
-
-src_configure() {
- local emesonargs=(
- -Dman-pages=$(usex man enabled disabled)
- -Dpam=$(usex pam enabled disabled)
- -Dgdk-pixbuf=$(usex gdk-pixbuf enabled disabled)
- $(meson_use fish-completion fish-completions)
- $(meson_use zsh-completion zsh-completions)
- "-Dbash-completions=true"
- "-Dwerror=false"
- )
- if [[ ${PV} != 9999 ]]; then
- emesonargs+=("-Dswaylock-version=${PV}")
- fi
-
- meson_src_configure
-}
-
-pkg_postinst() {
- if ! use pam; then
- fcaps cap_sys_admin usr/bin/swaylock
- fi
-}
diff --git a/dev-libs/swaylock/swaylock-9999.ebuild b/dev-libs/swaylock/swaylock-9999.ebuild
deleted file mode 100644
index 85539fb9095e..000000000000
--- a/dev-libs/swaylock/swaylock-9999.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit fcaps meson
-
-DESCRIPTION="Screen locker for Wayland"
-HOMEPAGE="https://github.com/swaywm/swaylock"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/swaywm/${PN}.git"
-else
- SRC_URI="https://github.com/swaywm/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="fish-completion +gdk-pixbuf +man +pam zsh-completion"
-
-DEPEND="
- dev-libs/wayland
- x11-libs/cairo
- x11-libs/libxkbcommon
- gdk-pixbuf? ( x11-libs/gdk-pixbuf:2 )
- pam? ( virtual/pam )
-"
-RDEPEND="
- ${DEPEND}
- !<=dev-libs/sway-1.0_beta2[swaylock]
-"
-BDEPEND="
- >=dev-libs/wayland-protocols-1.14
- virtual/pkgconfig
- man? ( app-text/scdoc )
-"
-
-src_configure() {
- local emesonargs=(
- -Dman-pages=$(usex man enabled disabled)
- -Dpam=$(usex pam enabled disabled)
- -Dgdk-pixbuf=$(usex gdk-pixbuf enabled disabled)
- $(meson_use fish-completion fish-completions)
- $(meson_use zsh-completion zsh-completions)
- "-Dbash-completions=true"
- "-Dwerror=false"
- )
- if [[ ${PV} != 9999 ]]; then
- emesonargs+=("-Dswaylock-version=${PV}")
- fi
-
- meson_src_configure
-}
-
-pkg_postinst() {
- if ! use pam; then
- fcaps cap_sys_admin usr/bin/swaylock
- fi
-}