Remove unmaintained / unused packages

- Remove dev-haskell/stack-bin
- Remove dev-python/notify-send-py
- Remove x11-misc/deadd-notification-center-bin
This commit is contained in:
Sravan Balaji
2025-04-30 08:55:54 -04:00
parent 8d1751e6c2
commit 48d913040f
7 changed files with 0 additions and 104 deletions

View File

@@ -1 +0,0 @@
DIST stack-2.15.5-linux-x86_64.tar.gz 21572840 BLAKE2B 318f7a4736276d2ff1f0cfbf0b7a14f39186501ad2ebf11d9a8a2e126e2842fb5d44e0816dd44664ff5058d66a0e72b3ae233fb2e26f6fdf8f531d044d6d31ce SHA512 40b0fc202b936d045f4df2e695a6d402a10f72fc30876d0384c1ffd5eaf87b635c8e4ce3b7f77ad58b1d34a051ce589f95f93baadce07d8e137423d650b327cd

View File

@@ -1,21 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="The Haskell Tool Stack"
HOMEPAGE="https://docs.haskellstack.org/en/stable"
SRC_URI="https://github.com/commercialhaskell/stack/releases/download/v${PV}/stack-${PV}-linux-x86_64.tar.gz"
LICENSE="BSD-3"
SLOT="0"
KEYWORDS="~amd64"
S="${WORKDIR}/stack-${PV}-linux-x86_64"
DEPEND=""
RDEPEND=${DEPEND}
src_install() {
dobin stack
}

View File

@@ -1 +0,0 @@
DIST notify-send.py-1.2.7.tar.gz 10762 BLAKE2B 71322a88561502f55b0110eea465ba15586b9258ee10719643c22e00df41cc76f568e61af00bbee965ecb91919fea2b8b03f5dda2a7787a60be494cb89574b16 SHA512 55e96aa85480ed64170ceadbe74ea4b90df769035d34a3631713a358a6abd775ad8496180f9ad424cffb275fa986609c00c3cd2a87f50964472dec962d088435

View File

@@ -1,2 +0,0 @@
#!/usr/bin/env sh
exec python3 -m notify_send_py.notify_send_py "$@"

View File

@@ -1,31 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
inherit distutils-r1
DESCRIPTION="Script and module for sending desktop notifications"
HOMEPAGE="https://github.com/phuhl/notify-send.py"
SRC_URI="https://files.pythonhosted.org/packages/f7/44/edf5578a7e3d79e30505286dab30f29815b26ca33a5a5c8936468e6b406e/notify-send.py-${PV}.tar.gz"
S="${WORKDIR}"/notify-send.py-${PV}
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
"
RDEPEND="
dev-python/notify2
dev-python/dbus-python
dev-python/pygobject
"
python_install() {
distutils-r1_python_install
dobin "${FILESDIR}"/notify-send.py
}

View File

@@ -1 +0,0 @@
DIST 2.1.1.tar.gz 5536714 BLAKE2B 3e62764808e7cd06f7302176e717d0315e9493a0ac3bb62fbc945fa0884e3eed0d5ec8edd259488a5c442c095d075763438e2f873c2dde28bd3257e94ab08564 SHA512 752f4a31aaa7afc7e75e17c82042625865b67a0cfd65f7e07250539cfd41fb3bfdd9917ab5da614aeb80f7b173ac091997416e3325ec4b9b3bba21bf2d877cda

View File

@@ -1,47 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A notification daemon and center"
HOMEPAGE="https://github.com/phuhl/linux_notification_center"
SRC_URI="https://github.com/phuhl/linux_notification_center/archive/refs/tags/${PV}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
S=${WORKDIR}/linux_notification_center-${PV}
IUSE="systemd dbus"
DEPEND="
dev-libs/gobject-introspection
gui-libs/gtk
net-misc/wget
"
RDEPEND="
dev-python/notify-send-py
"
pkg_setup() {
cd ${WORKDIR}
wget https://github.com/phuhl/linux_notification_center/releases/download/${PV}/deadd-notification-center
}
src_prepare() {
eapply_user
mkdir -p ${S}/.out
mv ${WORKDIR}/deadd-notification-center ${S}/.out/deadd-notification-center
}
src_compile() {
einfo "Skipping compile step"
}
src_install() {
if use systemd && use dbus ; then
make service || die "make service failed"
fi
make DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install || die "make install failed"
}