Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/bustle/
Date: Fri, 01 Jan 2021 11:48:29
Message-Id: 1609501657.c5a37e209c09b5cbadaa48e94b243974c6db46b8.slyfox@gentoo
1 commit: c5a37e209c09b5cbadaa48e94b243974c6db46b8
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 1 11:47:37 2021 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 1 11:47:37 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5a37e20
7
8 dev-util/bustle: drop old
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 dev-util/bustle/Manifest | 1 -
14 dev-util/bustle/bustle-0.5.4.ebuild | 72 -------------------------------------
15 2 files changed, 73 deletions(-)
16
17 diff --git a/dev-util/bustle/Manifest b/dev-util/bustle/Manifest
18 index 0af30f8d576..d1939ed3d9e 100644
19 --- a/dev-util/bustle/Manifest
20 +++ b/dev-util/bustle/Manifest
21 @@ -1,2 +1 @@
22 -DIST bustle-0.5.4.tar.gz 122720 BLAKE2B b5a2315919644ab5c7712f9e9bde1bdea226b4e8898981f7150558bde648a5c7965be6ad8484c09727665292e5fe3f0cb545544dbb27f2a2553e513910289620 SHA512 56eaeef831fb5929d57a008ae71d8409048ce5d12eaada98830ef742baf3479264203465d77591cb338374096eac2dc2b68b44f075b2761f16df63fad54b91fd
23 DIST bustle-0.8.0.tar.gz 101175 BLAKE2B 30359a51da16631eda8f74239de7955d5887e12e7e99853dd930b12b351a0dd56425487c339ddf297dae02b271019c11329130aa0caabc4bf0c87e21600b707b SHA512 92f4757c4ed9dd88bfa144a0626d7530b6a1f859a8069d8631a9990b6a523dbb59d573c6ba142614c371171ccf391a3e77d1e8ba0c2155ecf231f9e7aa735f72
24
25 diff --git a/dev-util/bustle/bustle-0.5.4.ebuild b/dev-util/bustle/bustle-0.5.4.ebuild
26 deleted file mode 100644
27 index 6e92a1f7bcb..00000000000
28 --- a/dev-util/bustle/bustle-0.5.4.ebuild
29 +++ /dev/null
30 @@ -1,72 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -
36 -# ebuild generated by hackport 0.4.5.9999
37 -
38 -CABAL_FEATURES="bin test-suite"
39 -inherit eutils haskell-cabal toolchain-funcs
40 -
41 -DESCRIPTION="Draw sequence diagrams of D-Bus traffic"
42 -HOMEPAGE="https://hackage.haskell.org/package/bustle"
43 -SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz"
44 -
45 -LICENSE="LGPL-2 GPL-2 GPL-3"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~x86"
48 -IUSE="interactivetests +threaded"
49 -
50 -RESTRICT=test # fails one propery test
51 -
52 -RDEPEND="dev-haskell/cairo:=
53 - >=dev-haskell/dbus-0.10:=
54 - dev-haskell/gio:=
55 - dev-haskell/glib:=
56 - >=dev-haskell/gtk3-0.13.7:0=
57 - >=dev-haskell/hgettext-0.1.5:=
58 - dev-haskell/mtl:=
59 - dev-haskell/pango:=
60 - dev-haskell/parsec:=
61 - dev-haskell/pcap:=
62 - dev-haskell/setlocale:=
63 - dev-haskell/text:=
64 - >=dev-lang/ghc-7.4.1:=
65 - dev-libs/glib:2
66 - dev-perl/Locale-gettext
67 -"
68 -DEPEND="${RDEPEND}
69 - >=dev-haskell/cabal-1.8
70 - virtual/pkgconfig
71 - test? ( dev-haskell/hunit
72 - dev-haskell/quickcheck
73 - dev-haskell/test-framework
74 - dev-haskell/test-framework-hunit )
75 -"
76 -
77 -src_configure() {
78 - haskell-cabal_src_configure \
79 - $(cabal_flag interactivetests interactivetests) \
80 - $(cabal_flag threaded threaded)
81 -}
82 -
83 -src_compile() {
84 - # compile haskell part
85 - cabal_src_compile || die "could not build haskell parts"
86 -
87 - # compile C part
88 - emake \
89 - "CC=$(tc-getCC)" \
90 - "CFLAGS=${CFLAGS}" \
91 - "CPPFLAGS=${CPPFLAGS}" \
92 - "LDFLAGS=${LDFLAGS}"
93 -}
94 -
95 -src_install() {
96 - # install haskell part
97 - cabal_src_install || die "could not install haskell parts"
98 -
99 - dobin "${S}"/dist/build/bustle-pcap
100 - doman bustle-pcap.1
101 - dodoc README.md HACKING.md NEWS.md
102 -}