summaryrefslogtreecommitdiff
path: root/dev-util/squashdelta
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
commitf716a9fe6455d39eef01e718aae68dae61c19704 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-util/squashdelta
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'dev-util/squashdelta')
-rw-r--r--dev-util/squashdelta/Manifest1
-rw-r--r--dev-util/squashdelta/metadata.xml16
-rw-r--r--dev-util/squashdelta/squashdelta-0.1.2.ebuild36
3 files changed, 0 insertions, 53 deletions
diff --git a/dev-util/squashdelta/Manifest b/dev-util/squashdelta/Manifest
deleted file mode 100644
index 8f09f975f96a..000000000000
--- a/dev-util/squashdelta/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST squashdelta-0.1.2.tar.bz2 79865 BLAKE2B fe375da70e25eaa5b70aa2e231f04b9ce47aa1aaea3872df331065ba8710a0e4ce1ca096715d18e5094f514ce3a8adb9d08109a4894ca75a4b3e5ef083f8e66f SHA512 802a1a6c6e7d117e4fb7f74a8144cc7b8b237e28f2028c72623b99a88b23d857ceb99f2d23653d253af829c3e6b290db98420923d613569cf523c2a7fc600f43
diff --git a/dev-util/squashdelta/metadata.xml b/dev-util/squashdelta/metadata.xml
deleted file mode 100644
index 4084bde7d1b1..000000000000
--- a/dev-util/squashdelta/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>mgorny@gentoo.org</email>
- <name>Michał Górny</name>
- </maintainer>
- <upstream>
- <maintainer status="active">
- <email>mgorny@gentoo.org</email>
- <name>Michał Górny</name>
- </maintainer>
- <bugs-to>https://github.com/projg2/squashdelta/issues/</bugs-to>
- <remote-id type="github">projg2/squashdelta</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-util/squashdelta/squashdelta-0.1.2.ebuild b/dev-util/squashdelta/squashdelta-0.1.2.ebuild
deleted file mode 100644
index 29a21aa70b00..000000000000
--- a/dev-util/squashdelta/squashdelta-0.1.2.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Efficient (partially uncompressed) SquashFS binary delta tool"
-HOMEPAGE="https://github.com/projg2/squashdelta/"
-SRC_URI="
- https://github.com/projg2/squashdelta/releases/download/v${PV}/${P}.tar.bz2
-"
-
-# uses public-domain murmurhash3
-LICENSE="BSD public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="lz4 +lzo"
-# SquashDelta does not make much sense without a compression algo.
-REQUIRED_USE="|| ( lz4 lzo )"
-
-DEPEND="
- lz4? ( app-arch/lz4:0= )
- lzo? ( dev-libs/lzo:2= )
-"
-RDEPEND="
- ${DEPEND}
- dev-util/xdelta:3
-"
-
-src_configure() {
- local myconf=(
- $(use_enable lz4)
- $(use_enable lzo)
- )
-
- econf "${myconf[@]}"
-}