diff --git a/sys-apps/pkgit/metadata.xml b/sys-apps/pkgit/metadata.xml deleted file mode 100644 index 0f8de1962c..0000000000 --- a/sys-apps/pkgit/metadata.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - theron.york@cloudnuke.org - Theron York - - - pkgit is an unconventional package manager designed to compile and install - packages directly from their git repositories. It uses C with Lua for - configuration and supports dependency resolution, version pinning, and - custom build scripts (bldit.lua). - - diff --git a/sys-apps/pkgit/pkgit-1.0.0.ebuild b/sys-apps/pkgit/pkgit-1.0.0.ebuild deleted file mode 100644 index 2b9c183c46..0000000000 --- a/sys-apps/pkgit/pkgit-1.0.0.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit git-r3 - -DESCRIPTION="Unconventional package manager that compiles & installs packages from git repos" -HOMEPAGE="https://git.symlinx.net/pkgit" - -EGIT_REPO_URI="https://git.symlinx.net/pkgit" -EGIT_TAG="${PV}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64" - -RDEPEND="dev-lang/luajit:=" -DEPEND="${RDEPEND} - dev-build/make" - -src_compile() { - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install || die "install failed" -} diff --git a/sys-apps/pkgit/pkgit-9999.ebuild b/sys-apps/pkgit/pkgit-9999.ebuild deleted file mode 100644 index ce5873ccbd..0000000000 --- a/sys-apps/pkgit/pkgit-9999.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit git-r3 - -DESCRIPTION="Unconventional package manager that compiles & installs packages from git repos" -HOMEPAGE="https://git.symlinx.net/pkgit" - -EGIT_REPO_URI="https://git.symlinx.net/pkgit" -EGIT_BRANCH="master" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="" - -RDEPEND="dev-lang/luajit:=" -DEPEND="${RDEPEND} - dev-build/make" - -src_compile() { - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install || die "install failed" -}