Gentoo Archives: gentoo-commits

From: Aaron Swenson <titanofold@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/fossil/
Date: Sun, 07 Oct 2018 10:07:36
Message-Id: 1538906824.79c70a13537dccd0224cb33c79fa1ce7d57eb935.titanofold@gentoo
1 commit: 79c70a13537dccd0224cb33c79fa1ce7d57eb935
2 Author: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 7 10:06:12 2018 +0000
4 Commit: Aaron Swenson <titanofold <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 7 10:07:04 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79c70a13
7
8 dev-vcs/fossil: Cleanup old
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11 Signed-off-by: Aaron Swenson <titanofold <AT> gentoo.org>
12
13 dev-vcs/fossil/Manifest | 2 --
14 dev-vcs/fossil/fossil-2.4.ebuild | 57 ----------------------------------------
15 dev-vcs/fossil/fossil-2.5.ebuild | 57 ----------------------------------------
16 3 files changed, 116 deletions(-)
17
18 diff --git a/dev-vcs/fossil/Manifest b/dev-vcs/fossil/Manifest
19 index bcbaf1e5333..93cd33572d3 100644
20 --- a/dev-vcs/fossil/Manifest
21 +++ b/dev-vcs/fossil/Manifest
22 @@ -1,3 +1 @@
23 -DIST fossil-src-2.4.tar.gz 4919205 BLAKE2B 35009cffc757b6ea153faf89525cae4463a2169dace090183b9dd6955a615a04363576295e4b24652ebec7f20772ef9d83c6b9af29f68bd5695c56b88cbf77cb SHA512 de7f2321677df7f6dc2a3a20e58f456602d938f40125ef33d401f28cdaa93e38d3db10e109547df269bc95a2ac8669ade05b6fd6fad39e6633f15ffdd91c499f
24 -DIST fossil-src-2.5.tar.gz 5036719 BLAKE2B b25067ee79793343a017dee28d3ee2b5eb257118a1e334932c6413971f83517ea0cfe570008c35ac4318b52982cb1129ab91eb3380a7f491f09c29cac46a756e SHA512 ee5d8708c91457b7b4d4bada15504e27016a096f0527a81c983c493531d226beb8e4b7aa84b0d764a5404342b8fd2c4dc3196426c9fc8b9c612e1940dd8bde1f
25 DIST fossil-src-2.6.tar.gz 5083119 BLAKE2B 7d5cbeb072c72574b9f4fcbc87f9aeaa1db7964f961aa206a04bf64d73782bd6d51f2a19973fa4125969c864031cf78790a67acd32c5e8f209fe1211410a6af4 SHA512 a4f3b2ee696a7f156a295672c17e8ec63737a85cee5d47b1f66a9d45a6011006ed0a075082b5e06e5d75d59babef493d1815ec45f8ae99f42ed1a1c7a2447b1c
26
27 diff --git a/dev-vcs/fossil/fossil-2.4.ebuild b/dev-vcs/fossil/fossil-2.4.ebuild
28 deleted file mode 100644
29 index cd6f4caf491..00000000000
30 --- a/dev-vcs/fossil/fossil-2.4.ebuild
31 +++ /dev/null
32 @@ -1,57 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -inherit toolchain-funcs
39 -
40 -DESCRIPTION="Simple, high-reliability, source control management, and more"
41 -HOMEPAGE="http://www.fossil-scm.org/"
42 -SRC_URI="http://www.fossil-scm.org/index.html/uv/fossil-src-${PV}.tar.gz"
43 -
44 -LICENSE="BSD-2"
45 -SLOT="0"
46 -KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86"
47 -IUSE="debug fusefs json -legacy-mv-rm -miniz system-sqlite +ssl static
48 - tcl tcl-stubs -tcl-private-stubs th1-docs th1-hooks"
49 -
50 -REQUIRED_USE="ssl? ( !miniz )"
51 -
52 -DEPEND="
53 - sys-libs/zlib
54 - || ( sys-libs/readline:0 dev-libs/libedit )
55 - system-sqlite? ( >=dev-db/sqlite-3.20.0:3 )
56 - ssl? ( dev-libs/openssl:0 )
57 - tcl? ( dev-lang/tcl:0= )
58 -"
59 -RDEPEND="${DEPEND}"
60 -
61 -# Tests can't be run from the build directory
62 -RESTRICT="test"
63 -
64 -src_configure() {
65 - # this is not an autotools situation so don't make it seem like one
66 - # --with-tcl: works
67 - # --without-tcl: dies
68 - local myconf="--with-openssl=$(usex ssl auto none)"
69 - use debug && myconf+=' --fossil-debug'
70 - use json && myconf+=' --json'
71 - use system-sqlite && myconf+=' --disable-internal-sqlite'
72 - use static && myconf+=' --static'
73 -
74 - use fusefs || myconf+=' --disable-fusefs'
75 -
76 - local u useflags
77 - useflags=( legacy-mv-rm miniz tcl tcl-stubs tcl-private-stubs
78 - th1-docs th1-hooks )
79 - for u in ${useflags[@]} ; do
80 - use ${u} && myconf+=" --with-${u}"
81 - done
82 -
83 - tc-export CC
84 - ./configure ${myconf} || die
85 -}
86 -
87 -src_install() {
88 - dobin fossil
89 -}
90
91 diff --git a/dev-vcs/fossil/fossil-2.5.ebuild b/dev-vcs/fossil/fossil-2.5.ebuild
92 deleted file mode 100644
93 index dbba71f4ebb..00000000000
94 --- a/dev-vcs/fossil/fossil-2.5.ebuild
95 +++ /dev/null
96 @@ -1,57 +0,0 @@
97 -# Copyright 1999-2018 Gentoo Foundation
98 -# Distributed under the terms of the GNU General Public License v2
99 -
100 -EAPI=6
101 -
102 -inherit toolchain-funcs
103 -
104 -DESCRIPTION="Simple, high-reliability, source control management, and more"
105 -HOMEPAGE="http://www.fossil-scm.org/"
106 -SRC_URI="http://www.fossil-scm.org/index.html/uv/fossil-src-${PV}.tar.gz"
107 -
108 -LICENSE="BSD-2"
109 -SLOT="0"
110 -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
111 -IUSE="debug fusefs json -legacy-mv-rm -miniz system-sqlite +ssl static
112 - tcl tcl-stubs tcl-private-stubs th1-docs th1-hooks"
113 -
114 -REQUIRED_USE="ssl? ( !miniz )"
115 -
116 -DEPEND="
117 - sys-libs/zlib
118 - || ( sys-libs/readline:0 dev-libs/libedit )
119 - system-sqlite? ( >=dev-db/sqlite-3.22.0:3 )
120 - ssl? ( dev-libs/openssl:0 )
121 - tcl? ( dev-lang/tcl:0= )
122 -"
123 -RDEPEND="${DEPEND}"
124 -
125 -# Tests can't be run from the build directory
126 -RESTRICT="test"
127 -
128 -src_configure() {
129 - # this is not an autotools situation so don't make it seem like one
130 - # --with-tcl: works
131 - # --without-tcl: dies
132 - local myconf="--with-openssl=$(usex ssl auto none)"
133 - use debug && myconf+=' --fossil-debug'
134 - use json && myconf+=' --json'
135 - use system-sqlite && myconf+=' --disable-internal-sqlite'
136 - use static && myconf+=' --static'
137 - use tcl && myconf+=' --with-tcl=1'
138 - use fusefs || myconf+=' --disable-fusefs'
139 -
140 - local u useflags
141 - useflags=( legacy-mv-rm miniz tcl-stubs tcl-private-stubs
142 - th1-docs th1-hooks )
143 - for u in ${useflags[@]} ; do
144 - use ${u} && myconf+=" --with-${u}"
145 - done
146 -
147 - tc-export CC
148 - ./configure ${myconf} || die
149 -}
150 -
151 -src_install() {
152 - dobin fossil
153 -}