dev-embedded/rauc: Drop old

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de>
This commit is contained in:
Kurt Kanzenbach
2020-08-15 08:49:17 +02:00
parent 59bc932e4b
commit 5180dd14e1
3 changed files with 0 additions and 114 deletions

View File

@@ -1,2 +1 @@
DIST rauc-1.3.tar.xz 1336420 BLAKE2B 79d8cc081b7871a7c4cf7eee47c042cb57723c60dad0cfefcb194048fe1c9a52261e1ef037f397ec80e7c1f1690fd34e4ce44a2d7cb427a5a48632760215e48b SHA512 044f679f81c0af58d5620a16c3a0fd7bc8ae50dccc403dd26f201735e0d7488e485b84ac38329b5f091648ae1173088a4e14976f6d28ef185a07daed82cc5b65
DIST rauc-1.4.tar.xz 807676 BLAKE2B e8dc46daf861c4ff5e80ac5af08eb03afb071b313dce38cbc127205f24c2f25793f51812c95ae4a0d914ea4cfec257ee06e3776b78b20488a6a33edd9b08e5c0 SHA512 6ac572d396cae609060ff4a7d2a26f5b8ed839504e76628f47388b1dac93ad1794114a9c105c5a9eb070478f9bd1b6f2cd6aeb5e84c64fdce4d7cbe30bb9ea31

View File

@@ -1,56 +0,0 @@
From 2c5300478b288ef8aa627280cca691312ac75a9e Mon Sep 17 00:00:00 2001
From: Kurt Kanzenbach <kurt@kmk-computers.de>
Date: Fri, 1 May 2020 13:25:51 +0200
Subject: [PATCH] tests: Disable failing tests
Some tests are failing inside portage. Disable them.
Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de>
---
Makefile.am | 12 ------------
1 file changed, 12 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 4d9a0687aec2..7ddc38e836a1 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -139,15 +139,10 @@ check_PROGRAMS = \
test/update_handler.test \
test/utils.test \
test/install.test \
- test/service.test \
test/bundle.test \
test/progress.test \
test/slot.test
-if WANT_NETWORK
-check_PROGRAMS += test/network.test
-endif
-
noinst_PROGRAMS = test/fakerand
test_fakerand_SOURCES = test/fakerand.c
@@ -201,10 +196,6 @@ test_context_test_LDADD = librauctest.la
test_manifest_test_SOURCES = test/manifest.c
test_manifest_test_LDADD = librauctest.la
-test_service_test_CFLAGS = $(AM_CFLAGS) -DTEST_SERVICES=\""$(abs_top_builddir)"\"
-test_service_test_SOURCES = test/service.c rauc-installer-generated.h
-test_service_test_LDADD = librauctest.la
-
test_signature_test_SOURCES = test/signature.c
test_signature_test_LDADD = librauctest.la
@@ -217,9 +208,6 @@ test_utils_test_LDADD = librauctest.la
test_install_test_SOURCES = test/install.c
test_install_test_LDADD = librauctest.la
-test_network_test_SOURCES = test/network.c
-test_network_test_LDADD = librauctest.la
-
test_progress_test_SOURCES = test/progress.c
test_progress_test_LDADD = librauctest.la
--
2.26.2

View File

@@ -1,57 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DOCBUILDER="sphinx"
DOCDIR="${S}/docs"
inherit autotools docs
DESCRIPTION="Lightweight update client that runs on your Embedded Linux device"
HOMEPAGE="https://rauc.io/"
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz"
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="~amd64 ~arm64 ~x86"
IUSE="json network service test"
RESTRICT="!test? ( test )"
BDEPEND="
dev-util/gdbus-codegen
virtual/pkgconfig
test? ( sys-fs/squashfs-tools )
"
RDEPEND="
dev-libs/glib:2
dev-libs/openssl:0=
json? ( dev-libs/json-glib )
network? ( net-misc/curl )
service? ( sys-apps/dbus )
"
DEPEND="
${RDEPEND}
"
PATCHES=( "${FILESDIR}/${P}-tests.patch" )
src_prepare() {
default
eautoreconf
}
src_configure() {
local myconf=(
$(use_enable json)
$(use_enable network)
$(use_enable service)
)
econf "${myconf[@]}"
}
src_compile() {
default
docs_compile
}