Gentoo Archives: gentoo-commits

From: "Jakov Smolić" <jsmolic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-mobilephone/dfu-util/
Date: Mon, 04 Oct 2021 06:34:24
Message-Id: 1633329167.d101b6c9d70882f7605fb608d44bf22112830f08.jsmolic@gentoo
1 commit: d101b6c9d70882f7605fb608d44bf22112830f08
2 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 4 06:31:36 2021 +0000
4 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 4 06:32:47 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d101b6c9
7
8 app-mobilephone/dfu-util: Version bump to 0.11
9
10 Closes: https://bugs.gentoo.org/756385
11 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
12
13 app-mobilephone/dfu-util/Manifest | 1 +
14 app-mobilephone/dfu-util/dfu-util-0.11.ebuild | 27 +++++++++++++++++++++++++++
15 2 files changed, 28 insertions(+)
16
17 diff --git a/app-mobilephone/dfu-util/Manifest b/app-mobilephone/dfu-util/Manifest
18 index 043d6871996..d2039ad698c 100644
19 --- a/app-mobilephone/dfu-util/Manifest
20 +++ b/app-mobilephone/dfu-util/Manifest
21 @@ -1 +1,2 @@
22 +DIST dfu-util-0.11.tar.gz 152462 BLAKE2B 3734698dd62de8a1c781f7631ae17ee9755241ce4d614b028fe6d6c3a117f3a301c174dcadf52252d55b08cfd75298c27a588e880837317ff73c32ab8863ccdd SHA512 fc5304a483ac10e35bf1b9304becdeb407b2e44d8ac51474d2fa17877e6cf71b0126f7e12ebb331d75e7adeb9c173ff5cf083a06ded5847dbe477534cf26a553
23 DIST dfu-util-0.9.tar.gz 138397 BLAKE2B e3a9db3276204d25fbcdd7d50caacd28a8e043d2781b5f942cd0df343d046870003abeaa1005a2774d03c4198ce96fa2124040987069c5f444e36e4f365a5e0e SHA512 caa7148b7a9004e2b1f7bc4f1a26b48abfe311743bc0eeed1ab57459910371affc39b6fe7e74b7cac6ca9de41a9901b7a970253ca92d7d66d5008f8a11d2c952
24
25 diff --git a/app-mobilephone/dfu-util/dfu-util-0.11.ebuild b/app-mobilephone/dfu-util/dfu-util-0.11.ebuild
26 new file mode 100644
27 index 00000000000..0f4c6cd5a61
28 --- /dev/null
29 +++ b/app-mobilephone/dfu-util/dfu-util-0.11.ebuild
30 @@ -0,0 +1,27 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +if [[ ${PV} == *9999 ]] ; then
37 + EGIT_REPO_URI="git://git.code.sf.net/p/dfu-util/dfu-util"
38 + inherit autotools git-r3
39 +else
40 + SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
41 + KEYWORDS="~amd64 ~x86"
42 +fi
43 +
44 +DESCRIPTION="implements the Host (PC) side of the USB DFU (Device Firmware Upgrade) protocol"
45 +HOMEPAGE="http://dfu-util.sourceforge.net/"
46 +
47 +LICENSE="GPL-2"
48 +SLOT="0"
49 +
50 +RDEPEND="virtual/libusb:1"
51 +DEPEND="${RDEPEND}"
52 +BDEPEND="virtual/pkgconfig"
53 +
54 +src_prepare() {
55 + default
56 + [[ ${PV} == *9999 ]] && eautoreconf
57 +}