summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoonas Niilola <juippis@gentoo.org>2023-08-13 10:13:25 +0300
committerJoonas Niilola <juippis@gentoo.org>2023-08-13 10:13:44 +0300
commitd9d71fdfc6233c60b7c7e7680536859b14b12e95 (patch)
treea55c22b030fb61addb46685f6f13710a3b62da01 /app-containers
parentapp-containers/distrobuilder: stabilize 2.1 for amd64 (diff)
downloadgentoo-d9d71fdfc6233c60b7c7e7680536859b14b12e95.tar.gz
gentoo-d9d71fdfc6233c60b7c7e7680536859b14b12e95.tar.bz2
gentoo-d9d71fdfc6233c60b7c7e7680536859b14b12e95.zip
app-containers/distrobuilder: drop 2.0
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-containers')
-rw-r--r--app-containers/distrobuilder/Manifest2
-rw-r--r--app-containers/distrobuilder/distrobuilder-2.0.ebuild37
2 files changed, 0 insertions, 39 deletions
diff --git a/app-containers/distrobuilder/Manifest b/app-containers/distrobuilder/Manifest
index fc43bd496cfd..607f7bd759ff 100644
--- a/app-containers/distrobuilder/Manifest
+++ b/app-containers/distrobuilder/Manifest
@@ -1,4 +1,2 @@
-DIST distrobuilder-2.0-deps.tar.xz 368438228 BLAKE2B 511e57d20b6d7be469e005a97cca073dc2c6bd67da550c17adb8f37e40c4cf74357da48f73dcf081eee7530d10857c006b82f5444813044eee8ec60f72e61046 SHA512 d7bdaacf5e1d106f3beac4d338c587e48373dc0fc7926670699fc9ca7cd4bb2e102268988c506361bec57610b3e9d3a287a70168adf5bf9f62f797742cdeac27
-DIST distrobuilder-2.0.tar.gz 179411 BLAKE2B bc008edc05f3e89872de87711cb51dd0797e93c03cbd2a077f43d4f1c28a1f14984c42f7181fc9c5501d96667e159ef263a92f43e20484534d47c64af88e85fa SHA512 3b85a992893689232f55b7cedbf2617fde95cf0af053424a585040781df592cd1f34800fe43bc5eb37e3740fea921ca9893b749fd280132794dc77f0ca4d9934
DIST distrobuilder-2.1.tar.gz 5599048 BLAKE2B 90e82a20a3ef61d13148951956bb1f74cc3494ca86e339c188a1c9009dcb27c0cb9a298c639c6de891df67915b48d107557f6b698a45cbe35c54d41a45bac1ab SHA512 80184d27305f5659f1367563161220b966b1957810da61e8f3b9f32cf408795319b43dd650bc9f867b3ac73ef2b3251972bb11999d92feb34bfd9cdae7ff7b7b
DIST distrobuilder-2.1.tar.gz.asc 833 BLAKE2B fb3aadbc989438b0606c88e74fdd86e809b6373b907b37372cbbc0ca99415821f61772205967e0a7aa26b0bdaceb66df4ab39da1f08c339edeb84e66a04aab56 SHA512 0220fa34d966e2b3a244af21a894f5db7556b891ee3205b605ef633699553f0f53d876412c855010a0ef685fcfe376997790cf51d59fd46b7c9ba539507de4e3
diff --git a/app-containers/distrobuilder/distrobuilder-2.0.ebuild b/app-containers/distrobuilder/distrobuilder-2.0.ebuild
deleted file mode 100644
index d7993fc843dc..000000000000
--- a/app-containers/distrobuilder/distrobuilder-2.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit go-module linux-info
-
-DESCRIPTION="System container image builder for LXC and LXD"
-HOMEPAGE="https://linuxcontainers.org/distrobuilder/introduction/"
-
-SRC_URI="https://github.com/lxc/distrobuilder/archive/${P}.tar.gz"
-SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64"
-
-RDEPEND="
- dev-util/debootstrap
- app-crypt/gnupg
- sys-fs/squashfs-tools
- dev-vcs/git
- net-misc/rsync
- "
-
-CONFIG_CHECK="~OVERLAY_FS"
-RESTRICT=" test"
-
-S="${WORKDIR}/${PN}-${P}"
-
-src_compile() {
- GOBIN="${S}/bin" ego install ./...
-}
-
-src_install() {
- dobin bin/*
- dodoc -r doc/*
-}