x11-misc/sprop: treeclean

Closes: https://bugs.gentoo.org/732424
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
This commit is contained in:
Jakov Smolić
2023-05-18 22:23:06 +02:00
parent da50a80aad
commit 7ac2ba2a43
4 changed files with 0 additions and 62 deletions

View File

@@ -248,12 +248,6 @@ net-p2p/litecoind
# Removal on 2023-05-18. Bug #895206.
sci-geosciences/congen
# David Seifert <soap@gentoo.org> (2023-04-17)
# Unmaintained, no release in over 10 years, EAPI 6, no other distro
# carries this, usual suckless.org assortment of build system
# patching required. Removal on 2023-05-17. Bug #732424.
x11-misc/sprop
# Sam James <sam@gentoo.org> (2023-04-16)
# SEEK_HOLE issues causing corruption with (sparse?) copies again.
# See https://github.com/openzfs/zfs/issues/14753.

View File

@@ -1 +0,0 @@
DIST sprop-0.1.tar.gz 2750 BLAKE2B 623a8668c49ef2e60398113bd49e036377bdd670a00c6bb5374fd106cd2757532ee2ce46f3d51e0ffef380d70c121733aa5df5a72db6abbdb6b202d9d10e2192 SHA512 74f918b2bbf627e269a674cabd8c4c26192ba67a7240061c0f0f6ddc8e86c32aff83352f2b2f4a2c6b2fcf7245cb1293ae98a2e7bd6189d632e20aa603764ddb

View File

@@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>gyakovlev@gentoo.org</email>
<name>Georgy Yakovlev</name>
</maintainer>
</pkgmetadata>

View File

@@ -1,47 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit toolchain-funcs
DESCRIPTION="a simple X property utility"
HOMEPAGE="https://tools.suckless.org/x/sprop"
SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
RDEPEND="
x11-libs/libX11
"
DEPEND="
${RDEPEND}
x11-base/xorg-proto
"
src_prepare() {
sed -i \
-e '/^CC/d' \
-e '/^CFLAGS/s| =| +=|;s| -Os||g' \
-e '/^LDFLAGS/s|= -s|+=|g' \
config.mk || die
sed -i \
-e 's|@${CC}|$(CC)|g' \
Makefile || die
sed -i \
-e "s|VERSION|${PV}|g" \
${PN}.1 || die
default
tc-export CC
}
src_compile() { emake sprop; }
src_install() {
dobin ${PN}
doman ${PN}.1
}