diff options
author | Aaron W. Swenson <titanofold@gentoo.org> | 2019-08-04 05:59:47 -0400 |
---|---|---|
committer | Aaron W. Swenson <titanofold@gentoo.org> | 2019-08-04 06:00:13 -0400 |
commit | f7cd4cad52cf80d31305ff307b41b802908b00ac (patch) | |
tree | a413096077949d6a6cf02385b5a24aa8b2b39d4e | |
parent | net-analyzer/testssl: version bump 2.9.5_p8 (diff) | |
download | gentoo-f7cd4cad52cf80d31305ff307b41b802908b00ac.tar.gz gentoo-f7cd4cad52cf80d31305ff307b41b802908b00ac.tar.bz2 gentoo-f7cd4cad52cf80d31305ff307b41b802908b00ac.zip |
dev-vcs/fossil: Cleanup old
Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Aaron W. Swenson <titanofold@gentoo.org>
-rw-r--r-- | dev-vcs/fossil/Manifest | 2 | ||||
-rw-r--r-- | dev-vcs/fossil/fossil-2.6.ebuild | 57 | ||||
-rw-r--r-- | dev-vcs/fossil/fossil-2.7.ebuild | 57 |
3 files changed, 0 insertions, 116 deletions
diff --git a/dev-vcs/fossil/Manifest b/dev-vcs/fossil/Manifest index 3989e2713860..586ebda95e0b 100644 --- a/dev-vcs/fossil/Manifest +++ b/dev-vcs/fossil/Manifest @@ -1,4 +1,2 @@ -DIST fossil-src-2.6.tar.gz 5083119 BLAKE2B 7d5cbeb072c72574b9f4fcbc87f9aeaa1db7964f961aa206a04bf64d73782bd6d51f2a19973fa4125969c864031cf78790a67acd32c5e8f209fe1211410a6af4 SHA512 a4f3b2ee696a7f156a295672c17e8ec63737a85cee5d47b1f66a9d45a6011006ed0a075082b5e06e5d75d59babef493d1815ec45f8ae99f42ed1a1c7a2447b1c -DIST fossil-src-2.7.tar.gz 5276161 BLAKE2B 7a8a81515075be6d3fc68dac7a293a1ed6b46c0ed2ecf180269d7215e6cc16d796206b648588ab5b6e04176c553cc89556deb5e47683de1eb26ab7469a8c75c9 SHA512 c1f52209bf14cb1b0a134b03fd02926c123bfd38d9b0d45f39d3137f3df2be13371f38611dc66d1d7df71d95c79baf26e66ccb845c769a57b9568629cdd52672 DIST fossil-src-2.8.tar.gz 5359975 BLAKE2B 6b63eadc8cd563d646698edc9972a52ec1feb868cb362449c232c99dcb81fea2fa227d631ebf8b695417c571933784dfffd5ecbec2a5027ac9901578a054c559 SHA512 5c6a8dc1545c43b3c95fbbec343db023e27a9db58f282a881bb7e488e3e26a0f7913a41f505dedf618b884507e48956780bd0e12482e184345d68edd1e79ff8e DIST fossil-src-2.9.tar.gz 5440118 BLAKE2B 2817e3c88073a26ef384d45271511eaacf5394a67ba6041ba0b37f321303abcba28655daf7963b8e51a8bc9bfeee681cea1f318f5ba66e93a5317b98771ad059 SHA512 c3786d4ae5517c88917819448863e9e1e37704a7073a1c87c042660313b77ce3a63f32e35e6a56af1c681e7b8a5acc652b4447d0387b8a8a5b3b5aa04dd9a9b5 diff --git a/dev-vcs/fossil/fossil-2.6.ebuild b/dev-vcs/fossil/fossil-2.6.ebuild deleted file mode 100644 index ff91fac36116..000000000000 --- a/dev-vcs/fossil/fossil-2.6.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="Simple, high-reliability, source control management, and more" -HOMEPAGE="http://www.fossil-scm.org/" -SRC_URI="http://www.fossil-scm.org/index.html/uv/fossil-src-${PV}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="amd64 arm ppc ppc64 x86" -IUSE="debug fusefs json -legacy-mv-rm -miniz system-sqlite +ssl static - tcl tcl-stubs tcl-private-stubs th1-docs th1-hooks" - -REQUIRED_USE="ssl? ( !miniz )" - -DEPEND=" - sys-libs/zlib - || ( sys-libs/readline:0 dev-libs/libedit ) - system-sqlite? ( >=dev-db/sqlite-3.24.0:3 ) - ssl? ( dev-libs/openssl:0 ) - tcl? ( dev-lang/tcl:0= ) -" -RDEPEND="${DEPEND}" - -# Tests can't be run from the build directory -RESTRICT="test" - -src_configure() { - # this is not an autotools situation so don't make it seem like one - # --with-tcl: works - # --without-tcl: dies - local myconf="--with-openssl=$(usex ssl auto none)" - use debug && myconf+=' --fossil-debug' - use json && myconf+=' --json' - use system-sqlite && myconf+=' --disable-internal-sqlite' - use static && myconf+=' --static' - use tcl && myconf+=' --with-tcl=1' - use fusefs || myconf+=' --disable-fusefs' - - local u useflags - useflags=( legacy-mv-rm miniz tcl-stubs tcl-private-stubs - th1-docs th1-hooks ) - for u in ${useflags[@]} ; do - use ${u} && myconf+=" --with-${u}" - done - - tc-export CC - ./configure ${myconf} || die -} - -src_install() { - dobin fossil -} diff --git a/dev-vcs/fossil/fossil-2.7.ebuild b/dev-vcs/fossil/fossil-2.7.ebuild deleted file mode 100644 index f41e164254ff..000000000000 --- a/dev-vcs/fossil/fossil-2.7.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="Simple, high-reliability, source control management, and more" -HOMEPAGE="http://www.fossil-scm.org/" -SRC_URI="http://www.fossil-scm.org/index.html/uv/fossil-src-${PV}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" -IUSE="debug fusefs json -legacy-mv-rm -miniz system-sqlite +ssl static - tcl tcl-stubs tcl-private-stubs th1-docs th1-hooks" - -REQUIRED_USE="ssl? ( !miniz )" - -DEPEND=" - sys-libs/zlib - || ( sys-libs/readline:0 dev-libs/libedit ) - system-sqlite? ( >=dev-db/sqlite-3.25.0:3 ) - ssl? ( dev-libs/openssl:0 ) - tcl? ( dev-lang/tcl:0= ) -" -RDEPEND="${DEPEND}" - -# Tests can't be run from the build directory -RESTRICT="test" - -src_configure() { - # this is not an autotools situation so don't make it seem like one - # --with-tcl: works - # --without-tcl: dies - local myconf="--with-openssl=$(usex ssl auto none)" - use debug && myconf+=' --fossil-debug' - use json && myconf+=' --json' - use system-sqlite && myconf+=' --disable-internal-sqlite' - use static && myconf+=' --static' - use tcl && myconf+=' --with-tcl=1' - use fusefs || myconf+=' --disable-fusefs' - - local u useflags - useflags=( legacy-mv-rm miniz tcl-stubs tcl-private-stubs - th1-docs th1-hooks ) - for u in ${useflags[@]} ; do - use ${u} && myconf+=" --with-${u}" - done - - tc-export CC - ./configure ${myconf} || die -} - -src_install() { - dobin fossil -} |