ideviceinstaller: fix repoman issues, and preparing for v1.1.1

This commit is contained in:
Guido Kroon 2020-06-18 12:10:40 +02:00
parent c015d96c55
commit a8b0f124f4
No known key found for this signature in database
GPG key ID: 394C398C531EFAB0
3 changed files with 29 additions and 26 deletions

View file

@ -1,3 +1,3 @@
DIST ideviceinstaller-1.1.0.tar.bz2 272210 BLAKE2B da67c16d046e148d11bafcd1f33a8e5a5cba49c6f975ba038602eaf2444a76883d568e16583923c7303cce170e6718fc1cfcd0b2cffed5a1eaf895944043d785 SHA512 8bf5dc30b8fa2f0c171ec3705db8d8d143d2520b2875fc05d9d325bd4f1ffdf29230557e57f3e824654ab3bb71bbaf9019aa573d4b1cce29a9c75bf15024d623
DIST ideviceinstaller-1.1.0_p20181001.zip 24848 BLAKE2B b24d9c57f763ecdf38dbee1ece9a84707cd23c19152173b76658e1c1f4f3a017d9f9c4dee3055a55a685b4cfb5a799048befc682c9bd7d29d6222ec8c111c544 SHA512 35aa870311e493df8d7d02ae9087218c91db109cf52ce8906304c2b82edae7b858829d78f85c3a49e6d6e76189fd8acaf6c991789f3386631e2f3fadffce5e5c
DIST ideviceinstaller-1.1.0_p20190928.zip 25238 BLAKE2B 5f49c68594574ef0c8f7f1495b8adf72b3c373bd22d986bbafc3a02fc31b7bd300e654d94fc61c1e7d3c37f8ef33d8992a1d00e7ecae28a9f9c2fd0c546103d6 SHA512 de6db1ad70d54ee8c9782a1b0aac3d9e79a1e9210ce30a2611b449076b17585869f0e03ce891236dd84cbeba5bc7c6d1daf4b9be16900d2144d63e649e237fb4
DIST ideviceinstaller-1.1.1.zip 25785 BLAKE2B 428daef34503e6e0b09368e109143d619184896f0a1c4ff5fda2da8b1b4bc5d88d7deb01010d89d1d4f334822c10a40bd033bbba5b4e5c7409ebf1e179100c78 SHA512 f281960bd796c2e84032f4bd9163b4077409fa611e40fa05d2b043aa34757895b54874468cea1bf51ec5449fef761ed3fae35bf4de03bafaa15c8a54fa306960

View file

@ -1,25 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
DESCRIPTION="A tool to interact with the installation_proxy of an Apple's iDevice"
HOMEPAGE="http://www.libimobiledevice.org/"
SRC_URI="http://www.libimobiledevice.org/downloads/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND=">=app-pda/libimobiledevice-1.1.7:=
>=app-pda/libplist-1.12:=
>=dev-libs/libzip-0.8"
DEPEND="${RDEPEND}
virtual/pkgconfig"
DOCS=( AUTHORS NEWS README )
src_prepare() {
sed -i -e 's:-Werror -g::' configure || die
}

View file

@ -0,0 +1,28 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="A tool to interact with the installation_proxy of an Apple's iDevice"
HOMEPAGE="http://www.libimobiledevice.org/ https://github.com/libimobiledevice/ideviceinstaller"
SRC_URI="https://github.com/libimobiledevice/${PN}/archive/${PV}.zip -> ${P}.zip"
LICENSE="GPL-2"
SLOT="0"
#KEYWORDS="~amd64 ~x86" # app-pda/libimobiledevice-1.3.0 is not in the Gentoo tree yet.
RDEPEND=">=app-pda/libimobiledevice-1.3.0:=
>=app-pda/libplist-1.8:=
>=dev-libs/libzip-0.10"
DEPEND="${RDEPEND}
virtual/pkgconfig"
DOCS=( AUTHORS NEWS README )
src_prepare() {
./autogen.sh
sed -i -e 's:-Werror -g::' configure || die
eapply_user
}