From 8b1e60e39e429bebf5afa2ecd295e9922458fa4f Mon Sep 17 00:00:00 2001 From: Bert Peters Date: Mon, 9 Sep 2024 19:59:34 +0200 Subject: [PATCH] Deleted package: bloaty Moved to [extra] --- bloaty/.SRCINFO | 19 ------------------- bloaty/PKGBUILD | 39 --------------------------------------- 2 files changed, 58 deletions(-) delete mode 100644 bloaty/.SRCINFO delete mode 100644 bloaty/PKGBUILD diff --git a/bloaty/.SRCINFO b/bloaty/.SRCINFO deleted file mode 100644 index 00a4f13..0000000 --- a/bloaty/.SRCINFO +++ /dev/null @@ -1,19 +0,0 @@ -pkgbase = bloaty - pkgdesc = a size profiler for binaries - pkgver = 1.1 - pkgrel = 3 - url = https://github.com/google/bloaty - arch = x86_64 - license = Apache-2.0 - makedepends = cmake - depends = gcc-libs - depends = re2 - depends = protobuf - depends = capstone - depends = abseil-cpp - source = https://github.com/google/bloaty/releases/download/v1.1/bloaty-1.1.tar.bz2 - source = https://src.fedoraproject.org/rpms/bloaty/raw/rawhide/f/bloaty-1.1-absl.patch - sha256sums = a308d8369d5812aba45982e55e7c3db2ea4780b7496a5455792fb3dcba9abd6f - sha256sums = 96cc0528f6464b03d0e68060ff2d24c36624c7d3991cee142df8d3d27cefeb51 - -pkgname = bloaty diff --git a/bloaty/PKGBUILD b/bloaty/PKGBUILD deleted file mode 100644 index 49d19e2..0000000 --- a/bloaty/PKGBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# Maintainer: Bert Peters -pkgname=bloaty -pkgver=1.1 -pkgrel=3 -pkgdesc="a size profiler for binaries" -arch=(x86_64) -url="https://github.com/google/bloaty" -license=('Apache-2.0') -depends=(gcc-libs re2 protobuf capstone abseil-cpp) -makedepends=(cmake) -source=( - "https://github.com/google/bloaty/releases/download/v$pkgver/bloaty-$pkgver.tar.bz2" - "https://src.fedoraproject.org/rpms/bloaty/raw/rawhide/f/bloaty-1.1-absl.patch") -sha256sums=('a308d8369d5812aba45982e55e7c3db2ea4780b7496a5455792fb3dcba9abd6f' - '96cc0528f6464b03d0e68060ff2d24c36624c7d3991cee142df8d3d27cefeb51') - -prepare() { - cd "$pkgname-$pkgver" - # Abseil compatibility patch borrowed from Fedora - patch -p1 < "../bloaty-1.1-absl.patch" -} - -build() { - cd "$pkgname-$pkgver" - cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=None \ - -DCMAKE_EXE_LINKER_FLAGS_RELEASE="$LDFLAGS" -Wno-dev - make -} - -# Not included in the source tarbal, use the git release instead -# check() { -# cd "$pkgname-$pkgver" -# make test -# } - -package() { - cd "$pkgname-$pkgver" - make DESTDIR="$pkgdir/" install -}