diff options
author | Sam James <sam@gentoo.org> | 2021-04-25 19:25:13 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-25 19:25:13 +0000 |
commit | a7c669a5eb2f71a5c143d756f88889d1a5966f1a (patch) | |
tree | 8e1bfb39a2e05df4cba7c15e97581a491318bfe6 /dev-util/wiggle | |
parent | sys-apps/sandbox: Stabilize 2.21 ppc, #785388 (diff) | |
download | gentoo-a7c669a5eb2f71a5c143d756f88889d1a5966f1a.tar.gz gentoo-a7c669a5eb2f71a5c143d756f88889d1a5966f1a.tar.bz2 gentoo-a7c669a5eb2f71a5c143d756f88889d1a5966f1a.zip |
dev-util/wiggle: drop 0.9-r1
Closes: https://bugs.gentoo.org/757420
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-util/wiggle')
-rw-r--r-- | dev-util/wiggle/Manifest | 1 | ||||
-rw-r--r-- | dev-util/wiggle/wiggle-0.9-r1.ebuild | 72 |
2 files changed, 0 insertions, 73 deletions
diff --git a/dev-util/wiggle/Manifest b/dev-util/wiggle/Manifest index 7b41a18e622c..4cfc2c6c7b8f 100644 --- a/dev-util/wiggle/Manifest +++ b/dev-util/wiggle/Manifest @@ -1,3 +1,2 @@ -DIST wiggle-0.9.tar.gz 809756 BLAKE2B 62fd35c721c4d54204984fd196686decff54c1613ceabf5c727b6383500158a04110c4fa2e63d6456452ac79fb811aac611876528fd2503c1acb7e0eb000e49f SHA512 2e3a4977704231f3bd6aa96ffaba8bc733acde425773b86a9649312676b44360c5b85cb48bf944cd383d8e4d0a541d88755f23be7d7a8884213f68a6320c62d9 DIST wiggle-1.0.tar.gz 868216 BLAKE2B 7241cbbde488b5cbf8970feb1cc258deb04c935347d793796f34993feba3e82870c9ac2aa7d5039f4739308cd0b20b4b104fb50c5ce64a5c66381ff3f6c545d4 SHA512 e9bd6e794ba0cff70db96a648c53aa21b427967758375b843fccf409dd17faf59468c11bafb1e0a7af8bfa657551da8bc1903b9ccf8def1ed9acc84f50c7e0b3 DIST wiggle-1.2.tar.gz 847391 BLAKE2B 5e2e3d76e8d5a0ee25cb0957fed1faf0f41bf14a7e7ced9a4547c300154a835df3ade2a94c1d28eb7878e608bf0f48fcd827387d87fe614a95bfea4261b3df01 SHA512 655525a05c0ebc08cb2e4dc33c0b40f893814976e493ea4bcf87cf703738310af2e71c43a15a6e56c948472bf0bd981a5b95f6d9a91a3a377d580928a86bcd58 diff --git a/dev-util/wiggle/wiggle-0.9-r1.ebuild b/dev-util/wiggle/wiggle-0.9-r1.ebuild deleted file mode 100644 index e0f496b157ae..000000000000 --- a/dev-util/wiggle/wiggle-0.9-r1.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit fixheadtails flag-o-matic toolchain-funcs - -DESCRIPTION="Tool for applying patches that patch cannot apply because of conflicting changes" -HOMEPAGE="https://neil.brown.name/wiggle https://git.neil.brown.name/?p=wiggle.git" -SRC_URI="https://neil.brown.name/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" - -# The 'p' tool does support bitkeeper, but I'm against just dumping it in here -# due to it's size. I've explictly listed every other dependency here due to -# the nature of the shell program 'p' -RDEPEND=" - dev-util/diffstat - dev-util/patchutils - sys-apps/diffutils - sys-apps/findutils - virtual/awk - sys-apps/grep - sys-apps/less - sys-apps/sed - sys-apps/coreutils - sys-devel/patch - sys-libs/ncurses:0= -" -DEPEND="${RDEPEND}" -BDEPEND=" - sys-apps/groff - virtual/pkgconfig - test? ( sys-process/time ) -" - -src_prepare() { - default - - # Fix the reference to the help file so `p help' works - sed -i "s:\$0.help:${EPREFIX}/usr/share/wiggle/p.help:" p || die "sed failed on p" - - # Don't add Neil Brown's default sign off line to every patch - sed -i '/$CERT/,+4s,^,#,' p || die "sed failed on p" - - # Use prefixed time binary - sed -i "s:/usr/bin/time:${EPREFIX}/usr/bin/time:" dotest || die "sed failed on dotest" - - sed \ - -e "s:-lncurses:$($(tc-getPKG_CONFIG) --libs ncurses):g" \ - -i Makefile || die - - ht_fix_file p - - append-cppflags -I. -} - -src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Wall" ${PN} -} - -src_install() { - dobin wiggle p - doman wiggle.1 - dodoc ANNOUNCE INSTALL TODO DOC/diff.ps notes - insinto /usr/share/wiggle - doins p.help -} |