summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2022-02-16 01:04:25 -0500
committerIonen Wolkens <ionen@gentoo.org>2022-02-16 01:55:52 -0500
commit3ac157bbd6465e80da0705d283bb006fb6661e52 (patch)
treec0d3f5a3ed599ae4915ad291950d6bc828bf7da5
parentx11-misc/devilspie2: stabilize 0.44 for amd64, x86 (diff)
downloadgentoo-3ac157bb.tar.gz
gentoo-3ac157bb.tar.bz2
gentoo-3ac157bb.zip
x11-misc/devilspie2: drop 0.43-r100
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
-rw-r--r--x11-misc/devilspie2/Manifest1
-rw-r--r--x11-misc/devilspie2/devilspie2-0.43-r100.ebuild49
-rw-r--r--x11-misc/devilspie2/files/devilspie2-0.43-lua-pkgconfig.patch12
3 files changed, 0 insertions, 62 deletions
diff --git a/x11-misc/devilspie2/Manifest b/x11-misc/devilspie2/Manifest
index 9de4f0a7d04f..0f51d753732b 100644
--- a/x11-misc/devilspie2/Manifest
+++ b/x11-misc/devilspie2/Manifest
@@ -1,2 +1 @@
DIST devilspie2-0.44.tar.xz 46028 BLAKE2B e9ec3115781575c331d91e982fd1c71361ea57004a1b7ff234957998d3d44fd4e9a0ca1fde9d133e9e4c2d01b6e8d192921554eae8b83acfb0e3fa44b0c9fd23 SHA512 f01f2d044a670dd9b1b97e896a3e8ebcac3e67daea9f08a14bce26fe8084b85f7fdaa0ed147aba91626200f882eddeba7e0ec18f0f565cb7557ffb2ac74a4a64
-DIST devilspie2_0.43-src.tar.gz 48666 BLAKE2B 3657693547f1dbdfe8542f123601f228086261855dc8e99997cea76ef586b744aacb260222000300dbe34d3030646044fc046e94c2285e6386995853ceaaffda SHA512 0f44f3991e31f68a2d38eac32ea6fe4275a56e8b5e9439490d1e819fd69b5455ede565aa2b09b70c20ac852c465ac2c05c339ae1e5c1b7824685c46a28871abd
diff --git a/x11-misc/devilspie2/devilspie2-0.43-r100.ebuild b/x11-misc/devilspie2/devilspie2-0.43-r100.ebuild
deleted file mode 100644
index abeaa7126aa3..000000000000
--- a/x11-misc/devilspie2/devilspie2-0.43-r100.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-LUA_COMPAT=( lua5-{1..3} luajit )
-PLOCALES="fi fr it ja nl pt_BR ru sv"
-
-inherit lua-single plocale toolchain-funcs
-
-DESCRIPTION="Devilspie like window matching utility, using LUA for scripting"
-HOMEPAGE="https://www.nongnu.org/devilspie2/"
-SRC_URI="https://download.savannah.gnu.org/releases/devilspie2/devilspie2_${PV}-src.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-
-RDEPEND="
- ${LUA_DEPS}
- >=dev-libs/glib-2.32.4:2
- >=x11-libs/gtk+-3.4.4:3
- >=x11-libs/libwnck-3.4.4:3
- x11-libs/libX11
-"
-DEPEND="
- ${RDEPEND}
- x11-base/xorg-proto
-"
-BDEPEND="
- sys-devel/gettext
- virtual/pkgconfig
-"
-
-PATCHES=(
- "${FILESDIR}/${PN}-0.43-lua-pkgconfig.patch"
-)
-
-src_compile() {
- tc-export PKG_CONFIG
- emake CC="$(tc-getCC)" PREFIX="/usr" LANGUAGES="$(plocale_get_locales)"
-}
-
-src_install() {
- emake PREFIX="/usr" DESTDIR="${ED}" LANGUAGES="$(plocale_get_locales)" install
- einstalldocs
- doman devilspie2.1
-}
diff --git a/x11-misc/devilspie2/files/devilspie2-0.43-lua-pkgconfig.patch b/x11-misc/devilspie2/files/devilspie2-0.43-lua-pkgconfig.patch
deleted file mode 100644
index 4b832e6a7fcc..000000000000
--- a/x11-misc/devilspie2/files/devilspie2-0.43-lua-pkgconfig.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/Makefile
-+++ b/Makefile
-@@ -60,7 +60,7 @@
- endif
-
--LIB_CFLAGS=$(shell pkg-config --cflags --silence-errors $(PKG_GTK) $(PKG_WNCK) lua5.1 || pkg-config --cflags $(PKG_GTK) $(PKG_WNCK) lua)
-+LIB_CFLAGS=$(shell ${PKG_CONFIG} --cflags $(PKG_GTK) $(PKG_WNCK) lua)
- STD_LDFLAGS=
--LIBS=-lX11 $(shell pkg-config --libs --silence-errors $(PKG_GTK) $(PKG_WNCK) lua5.1 || pkg-config --libs $(PKG_GTK) $(PKG_WNCK) lua)
-+LIBS=-lX11 $(shell ${PKG_CONFIG} --libs $(PKG_GTK) $(PKG_WNCK) lua)
-
- LOCAL_CFLAGS=$(STD_CFLAGS) $(DEPRECATED) $(CFLAGS) $(LIB_CFLAGS)