dev-embedded/rauc: Drop old

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de>
This commit is contained in:
Kurt Kanzenbach
2020-12-25 12:01:43 +01:00
parent 9d278e82dc
commit be5c848bd6
3 changed files with 0 additions and 99 deletions

View File

@@ -1,2 +1 @@
DIST rauc-1.4.tar.xz 807676 BLAKE2B e8dc46daf861c4ff5e80ac5af08eb03afb071b313dce38cbc127205f24c2f25793f51812c95ae4a0d914ea4cfec257ee06e3776b78b20488a6a33edd9b08e5c0 SHA512 6ac572d396cae609060ff4a7d2a26f5b8ed839504e76628f47388b1dac93ad1794114a9c105c5a9eb070478f9bd1b6f2cd6aeb5e84c64fdce4d7cbe30bb9ea31
DIST rauc-1.5.tar.xz 826404 BLAKE2B 6ef8e16299e666be525fdfc3db3933b8944b41950821313dd76178e638827aeec93b608ddba26b3b0a22e493946748c49d3cd19fbc9f2a3f739c156dde83b8bb SHA512 5d942993e5db87440aee589722efc2e5d2151941c99652d25831192f8a6e1c9955f74512a92f45c052ddeec29f02a10119346f56bb200202c1d02a6d7fff699c

View File

@@ -1,40 +0,0 @@
From 0b0cbdd4e376b60a2974c502c100395a381249e8 Mon Sep 17 00:00:00 2001
From: Kurt Kanzenbach <kurt@kmk-computers.de>
Date: Sat, 15 Aug 2020 08:45:21 +0200
Subject: [PATCH] tests: Disable network tests
The network tests won't work within portage. Disable them.
Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de>
---
Makefile.am | 7 -------
1 file changed, 7 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index efe55792fabb..2c6d8080e992 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -150,10 +150,6 @@ check_PROGRAMS = \
test/progress.test \
test/slot.test
-if WANT_NETWORK
-check_PROGRAMS += test/network.test
-endif
-
if WANT_JSON
check_PROGRAMS += test/boot_switch.test
endif
@@ -233,9 +229,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,58 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7,8,9} )
DOCS_BUILDER="sphinx"
DOCS_DIR="${S}/docs"
inherit autotools python-any-r1 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
}