My build got orphaned! What happened, and what can I do about it?
I have a build I don't want to (or can't) maintain any more. How do I orphan it?
One of my builds depends on a build that got orphaned. What should I do?
How do I find orphaned builds that I might want to take over?
If you're removing orphaned builds, is there a way to find builds that were removed from the repo?
How do I find out how long it's been since a build became orphaned?
MAINTAINER="orphaned - no maintainer"
EMAIL="NOEMAIL"
It's important to be exact: we have scripts that depend on these
values for maintainer and name, which might get confused if you
change them.
For your commit message (or submission comment if you use the site's
submission form), you can keep it as simple as:
category/build: Orphaned by maintainer.
Optionally, if you want to add an explanation of why you're
orphaning the build, that's best done by adding comments near the
top of the .SlackBuild itself. E.g.
# Orphaned by your name on date because reason
...where reason might be something like "This is a hardware driver, and I
no longer own the hardware it's for", or "No longer have free time to spend
on SlackBuilds".
git grep '^EMAIL="NOEMAIL"' '*/*/*.info' | cut -d/ -f1,2 | less
git clone git://git.slackbuilds.org/slackbuilds.git...then "cd" to the directory for the build you're wondering about. If the build is called foobar:
cd slackbuilds/*/foobar...then run this:
git -P blame -L/MAINTAINER/,+1 ./*.info...which will show something like:
a8f3447a2bb (B. Watson 2025-10-11 00:27:38 -0400 9) MAINTAINER="orphaned - no maintainer"...which shows the date/time of orphaning, plus the user who orphaned it.
© 2006-2026 SlackBuilds.org Project. All rights reserved.
Slackware® is a registered trademark of
Patrick Volkerding
Linux® is a registered trademark of
Linus Torvalds