summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2025-11-09 11:44:43 +0100
committerDavid Seifert <soap@gentoo.org>2025-11-09 11:44:43 +0100
commitd6f3ddbcb5349d9a89f9f7cc403411e8be80a9db (patch)
treee2382dd8a17c3247d4805b02e4e8d1eda4eb5f0e
parente170b98ad8de0992588c9516345b2f081636095d (diff)
downloadgentoo-d6f3ddbcb5349d9a89f9f7cc403411e8be80a9db.tar.gz
gentoo-d6f3ddbcb5349d9a89f9f7cc403411e8be80a9db.tar.bz2
gentoo-d6f3ddbcb5349d9a89f9f7cc403411e8be80a9db.zip
x11-wm/notion: drop 4.0.2_p20220613, 4.0.2_p20220613-r1
Signed-off-by: David Seifert <soap@gentoo.org>
-rw-r--r--x11-wm/notion/Manifest1
-rw-r--r--x11-wm/notion/notion-4.0.2_p20220613-r1.ebuild97
-rw-r--r--x11-wm/notion/notion-4.0.2_p20220613.ebuild93
3 files changed, 0 insertions, 191 deletions
diff --git a/x11-wm/notion/Manifest b/x11-wm/notion/Manifest
index 88885ca54fa8..53468ff21994 100644
--- a/x11-wm/notion/Manifest
+++ b/x11-wm/notion/Manifest
@@ -1,2 +1 @@
-DIST notion-4.0.2_p20220613.tar.gz 791823 BLAKE2B 2aa50eb4f710bf289dd6edb6f4696662e8d2588b337f038845efdf79aa2e2b28a725734c829de5184def6fd5d32c51f511025dadf4ad6a689c0dc4e0b0d8e3eb SHA512 7c187571a00bdf5736032c0ff0b57a0afdb20a7b4f6e66877c84bf112922ec8f5b853165d419ecc7c18fc84a873b278c3cbdad5e7399e0312066141de1dc6673
DIST notion-4.0.3.tar.gz 791823 BLAKE2B 2aa50eb4f710bf289dd6edb6f4696662e8d2588b337f038845efdf79aa2e2b28a725734c829de5184def6fd5d32c51f511025dadf4ad6a689c0dc4e0b0d8e3eb SHA512 7c187571a00bdf5736032c0ff0b57a0afdb20a7b4f6e66877c84bf112922ec8f5b853165d419ecc7c18fc84a873b278c3cbdad5e7399e0312066141de1dc6673
diff --git a/x11-wm/notion/notion-4.0.2_p20220613-r1.ebuild b/x11-wm/notion/notion-4.0.2_p20220613-r1.ebuild
deleted file mode 100644
index 8838324ac69b..000000000000
--- a/x11-wm/notion/notion-4.0.2_p20220613-r1.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LUA_COMPAT=( lua5-4 )
-
-inherit lua-single toolchain-funcs readme.gentoo-r1
-
-DESCRIPTION="Notion is a tiling, tabbed window manager for the X window system"
-HOMEPAGE="https://notionwm.net/"
-
-if [[ ${PV} == *9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/raboof/${PN}.git"
-else
- inherit vcs-snapshot
- COMMIT="f161c1b4dbba1ac81d8e9c3d7e5e353058a4d7d1"
- SRC_URI="https://github.com/raboof/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
-
- KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="nls xinerama +xrandr"
-# needs slingshot,... not in tree
-RESTRICT="test"
-# mod_xrandr references mod_xinerama
-REQUIRED_USE="
- ${LUA_REQUIRED_USE}
- xrandr? ( xinerama )"
-
-RDEPEND="
- ${LUA_DEPS}
- x11-libs/libSM
- x11-libs/libX11
- x11-libs/libXext
- nls? ( sys-devel/gettext )
- xinerama? ( x11-libs/libXinerama )
- xrandr? ( x11-libs/libXrandr )"
-DEPEND="${RDEPEND}"
-# luac is called at build time
-BDEPEND="
- ${LUA_DEPS}
- virtual/pkgconfig"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-4.0.2-gcc14-build-fix.patch
-)
-
-src_configure() {
- tc-export AR CC PKG_CONFIG
- export INSTALL_STRIP=""
-
- cat > system-local.mk <<- _EOF_ || die
- PREFIX=${EPREFIX}/usr
- DOCDIR=\$(PREFIX)/share/doc/${PF}
- ETCDIR=${EPREFIX}/etc/${PN}
- LIBDIR=\$(PREFIX)/$(get_libdir)
- VARDIR=${EPREFIX}/var/cache/${PN}
- LUA_MANUAL=1
- LUA=${LUA}
- LUAC=${BROOT}/usr/bin/${ELUA/lua/luac}
- LUA_LIBS=$(lua_get_LIBS)
- LUA_INCLUDES=$(lua_get_CFLAGS)
- $(usev !nls "DEFINES+=-DCF_NO_LOCALE -DCF_NO_GETTEXT")
- _EOF_
-
- if ! use xinerama ; then
- sed -e 's/mod_xinerama//g' -i modulelist.mk || die
- fi
-
- if ! use xrandr ; then
- sed -e 's/mod_xrandr//g' -i modulelist.mk || die
- sed -e '/mod_xrandr/d' -i etc/cfg_defaults.lua || die
- fi
-}
-
-src_install() {
- default
-
- exeinto /etc/X11/Sessions
- doexe "${FILESDIR}"/notion
-
- insinto /usr/share/xsessions
- doins "${FILESDIR}"/notion.desktop
-
- local DOC_CONTENTS="
- If you want notion to have an ability to view a file based on its
- guessed MIME type you should emerge app-misc/run-mailcap."
- readme.gentoo_create_doc
-}
-
-pkg_postinst() {
- readme.gentoo_print_elog
-}
diff --git a/x11-wm/notion/notion-4.0.2_p20220613.ebuild b/x11-wm/notion/notion-4.0.2_p20220613.ebuild
deleted file mode 100644
index 6ba63e41d144..000000000000
--- a/x11-wm/notion/notion-4.0.2_p20220613.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LUA_COMPAT=( lua5-4 )
-
-inherit lua-single toolchain-funcs readme.gentoo-r1
-
-DESCRIPTION="Notion is a tiling, tabbed window manager for the X window system"
-HOMEPAGE="https://notionwm.net/"
-
-if [[ ${PV} == *9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/raboof/${PN}.git"
-else
- inherit vcs-snapshot
- COMMIT="f161c1b4dbba1ac81d8e9c3d7e5e353058a4d7d1"
- SRC_URI="https://github.com/raboof/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
-
- KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="nls xinerama +xrandr"
-# needs slingshot,... not in tree
-RESTRICT="test"
-# mod_xrandr references mod_xinerama
-REQUIRED_USE="
- ${LUA_REQUIRED_USE}
- xrandr? ( xinerama )"
-
-RDEPEND="
- ${LUA_DEPS}
- x11-libs/libSM
- x11-libs/libX11
- x11-libs/libXext
- nls? ( sys-devel/gettext )
- xinerama? ( x11-libs/libXinerama )
- xrandr? ( x11-libs/libXrandr )"
-DEPEND="${RDEPEND}"
-# luac is called at build time
-BDEPEND="
- ${LUA_DEPS}
- virtual/pkgconfig"
-
-src_configure() {
- tc-export AR CC PKG_CONFIG
- export INSTALL_STRIP=""
-
- cat > system-local.mk <<- _EOF_ || die
- PREFIX=${EPREFIX}/usr
- DOCDIR=\$(PREFIX)/share/doc/${PF}
- ETCDIR=${EPREFIX}/etc/${PN}
- LIBDIR=\$(PREFIX)/$(get_libdir)
- VARDIR=${EPREFIX}/var/cache/${PN}
- LUA_MANUAL=1
- LUA=${LUA}
- LUAC=${BROOT}/usr/bin/${ELUA/lua/luac}
- LUA_LIBS=$(lua_get_LIBS)
- LUA_INCLUDES=$(lua_get_CFLAGS)
- $(usev !nls "DEFINES+=-DCF_NO_LOCALE -DCF_NO_GETTEXT")
- _EOF_
-
- if ! use xinerama ; then
- sed -e 's/mod_xinerama//g' -i modulelist.mk || die
- fi
-
- if ! use xrandr ; then
- sed -e 's/mod_xrandr//g' -i modulelist.mk || die
- sed -e '/mod_xrandr/d' -i etc/cfg_defaults.lua || die
- fi
-}
-
-src_install() {
- default
-
- exeinto /etc/X11/Sessions
- doexe "${FILESDIR}"/notion
-
- insinto /usr/share/xsessions
- doins "${FILESDIR}"/notion.desktop
-
- local DOC_CONTENTS="
- If you want notion to have an ability to view a file based on its
- guessed MIME type you should emerge app-misc/run-mailcap."
- readme.gentoo_create_doc
-}
-
-pkg_postinst() {
- readme.gentoo_print_elog
-}