Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/simple-mtpfs/
Date: Tue, 25 Jul 2017 21:07:08
Message-Id: 1501016757.95e53bf74a93acdc5ff2c74724d3831bc701e055.mjo@gentoo
1 commit: 95e53bf74a93acdc5ff2c74724d3831bc701e055
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 25 21:00:15 2017 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 25 21:05:57 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95e53bf7
7
8 sys-fs/simple-mtpfs: new version 0.3.0.
9
10 This new version comes with a new EAPI=6. To avoid the autotools-utils
11 eclass, I had to introduce an src_prepare() phase that calls
12 eautoreconf. I also dropped the "9999" stuff for simplicity.
13
14 Gentoo-Bug: 619502
15
16 Package-Manager: Portage-2.3.6, Repoman-2.3.1
17
18 sys-fs/simple-mtpfs/Manifest | 2 +-
19 sys-fs/simple-mtpfs/simple-mtpfs-0.2.ebuild | 30 ---------------------------
20 sys-fs/simple-mtpfs/simple-mtpfs-0.3.0.ebuild | 30 +++++++++++++++++++++++++++
21 3 files changed, 31 insertions(+), 31 deletions(-)
22
23 diff --git a/sys-fs/simple-mtpfs/Manifest b/sys-fs/simple-mtpfs/Manifest
24 index 7a5f16ea777..1bbb149769f 100644
25 --- a/sys-fs/simple-mtpfs/Manifest
26 +++ b/sys-fs/simple-mtpfs/Manifest
27 @@ -1,2 +1,2 @@
28 DIST simple-mtpfs-0.1.tar.gz 116145 SHA256 052618c742e7b3faa95e1c84e8b9e1df1517dccb9460f538bb032223243588a1 SHA512 5c4b390c43ede521061c677b496d47376304a4625414853a2183a41cb4a2c67361ecd7e26d0b6197cc78e84d0a9c99ec92e85bd1c179784b5a7c06ae05ede308 WHIRLPOOL 4df83ffc56339df76124e22f93df8fcf188cad30da83f8a9349e5a8ad8ff64010a0d118bcd4a9719ee0e9a5e3cf2fd997af6f3220951792a5e8f00da3d4a0291
29 -DIST simple-mtpfs-0.2.tar.gz 35003 SHA256 3ce41fb194971041aa6ad15292a6cdad70eb8b5fc3e7a03a638bc3cac0c515ea SHA512 adb844288af214802ab6e0ddf949d2dc97ec03289db4b68c6b08da00534cdd48f621d8a52287b18d7826cabd78ddad2ca7ded6337016432c473e26c4c6f3c9e5 WHIRLPOOL 9b19d026da2786e8bd08b7c2ea4372cca6bb36e346e0430233af516db50c6d72cef88d65c5da92333941e353534fd486b932573602ea540bd0ba51117ea4c94c
30 +DIST simple-mtpfs-0.3.0.tar.gz 36655 SHA256 5556cae4414254b071d79ce656cce866b42fd7ba40ce480abfc3ba4e357cd491 SHA512 7d2da152708c01ddd2a39c1b56cba6470bfd320b92507530cdd8fc4f25f9500ff817eac6a5d19c775f31029ae6a0baef693987c59453c60c688b84934378f772 WHIRLPOOL ef6c619e8942568f41ff03fed4e926af1b62ba22fd3b0f4db7ae675bec03b37da5b05d44a95d6e3db1e3912320492253ca1fd42034ff77293125ce2255530a0c
31
32 diff --git a/sys-fs/simple-mtpfs/simple-mtpfs-0.2.ebuild b/sys-fs/simple-mtpfs/simple-mtpfs-0.2.ebuild
33 deleted file mode 100644
34 index 0dbbfdb919c..00000000000
35 --- a/sys-fs/simple-mtpfs/simple-mtpfs-0.2.ebuild
36 +++ /dev/null
37 @@ -1,30 +0,0 @@
38 -# Copyright 1999-2015 Gentoo Foundation
39 -# Distributed under the terms of the GNU General Public License v2
40 -
41 -EAPI=5
42 -
43 -EGIT_REPO_URI="git://github.com/phatina/${PN}.git"
44 -inherit autotools-utils eutils
45 -[[ ${PV} == 9999 ]] && inherit git-r3
46 -
47 -DESCRIPTION="Simple MTP fuse filesystem driver"
48 -HOMEPAGE="https://github.com/phatina/simple-mtpfs"
49 -[[ ${PV} == 9999 ]] || SRC_URI="https://github.com/phatina/${PN}/archive/${P}.tar.gz"
50 -
51 -LICENSE="GPL-2+"
52 -SLOT="0"
53 -[[ ${PV} == 9999 ]] || \
54 -KEYWORDS="~amd64 ~x86"
55 -IUSE=""
56 -
57 -RDEPEND="
58 - media-libs/libmtp
59 - >=sys-fs/fuse-2.8
60 -"
61 -DEPEND="${RDEPEND}
62 - virtual/pkgconfig
63 -"
64 -
65 -[[ ${PV} == 9999 ]] || S="${WORKDIR}/${PN}-${P}"
66 -
67 -AUTOTOOLS_AUTORECONF=1
68
69 diff --git a/sys-fs/simple-mtpfs/simple-mtpfs-0.3.0.ebuild b/sys-fs/simple-mtpfs/simple-mtpfs-0.3.0.ebuild
70 new file mode 100644
71 index 00000000000..91269a3c30f
72 --- /dev/null
73 +++ b/sys-fs/simple-mtpfs/simple-mtpfs-0.3.0.ebuild
74 @@ -0,0 +1,30 @@
75 +# Copyright 1999-2017 Gentoo Foundation
76 +# Distributed under the terms of the GNU General Public License v2
77 +
78 +EAPI=6
79 +
80 +inherit autotools
81 +
82 +DESCRIPTION="Simple MTP fuse filesystem driver"
83 +HOMEPAGE="https://github.com/phatina/simple-mtpfs"
84 +SRC_URI="${HOMEPAGE}/archive/${P}.tar.gz"
85 +
86 +LICENSE="GPL-2+"
87 +SLOT="0"
88 +KEYWORDS="~amd64 ~x86"
89 +IUSE=""
90 +
91 +RDEPEND="media-libs/libmtp
92 + sys-fs/fuse:0"
93 +DEPEND="${RDEPEND}
94 + virtual/pkgconfig"
95 +
96 +S="${WORKDIR}/${PN}-${P}"
97 +
98 +src_prepare() {
99 + default
100 +
101 + # The tarball doesn't contain ./configure, only configure.ac and
102 + # autogen.sh.
103 + eautoreconf
104 +}