Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/clair/
Date: Thu, 28 Mar 2019 16:22:52
Message-Id: 1553790153.d258c3d5912fa0d83ff7b8ac0b909799f9680611.mrueg@gentoo
1 commit: d258c3d5912fa0d83ff7b8ac0b909799f9680611
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 28 16:22:33 2019 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 28 16:22:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d258c3d5
7
8 dev-util/clair: Remove old
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>
12
13 dev-util/clair/Manifest | 3 ---
14 dev-util/clair/clair-2.0.3.ebuild | 46 ---------------------------------------
15 dev-util/clair/clair-2.0.4.ebuild | 45 --------------------------------------
16 dev-util/clair/clair-2.0.5.ebuild | 45 --------------------------------------
17 4 files changed, 139 deletions(-)
18
19 diff --git a/dev-util/clair/Manifest b/dev-util/clair/Manifest
20 index 0aed11cb33a..a0473bd6b5b 100644
21 --- a/dev-util/clair/Manifest
22 +++ b/dev-util/clair/Manifest
23 @@ -1,5 +1,2 @@
24 -DIST clair-2.0.3.tar.gz 5194681 BLAKE2B b4f809e7699fbf66745c7f528f3f2c249e81541a64c540a8c39b9fa8f5b581d1297abdfe80bdb0ca3aec00010c6c95e8073397df284d2a92a3e95f91049cde80 SHA512 bf2d4ab15efc50bce3e828d0510ceb44463a6c1d978a854b3a05899996203a7c33bb6e60470eccb6e0a1e23b8ff41955cd0fdda4b77a9a7e042e1e27dd2e0885
25 -DIST clair-2.0.4.tar.gz 5194393 BLAKE2B 631ab14acfcf516a5dd65753fe2088dbabf1c7d13a6b079cb09f0c6a3000b346da948d9c6edd16c999753342d67b9bb2165a1b38956ee8957b48953d10490430 SHA512 fee3b9fe2865c0e352b454767383bf47d67bd14f7d08171197350c20f32bc80eb318db10c9fd4bd9da0024dac97ae287cb8dcc7605c3094f4d567122bfe3f7ed
26 -DIST clair-2.0.5.tar.gz 5194565 BLAKE2B 19eb49b5b3d4d3c3694c4aefc21abbdefbc5b6d3a53a0f845c587bfc98052be93bb83283b0b3fe42a5ed950e55390810032abb4ae4eba8de999f99f07528b1a5 SHA512 551b006c32f6e0c93f2ace33151864f876a7e32c85cf13d8e1dcf23b91f79c32d4b4a4c9bbb3991ff6955897c8dcdfdcec2d6fbbbdcf0b684522375269abca89
27 DIST clair-2.0.6.tar.gz 5195113 BLAKE2B 6044ba36d63d74eaecad5cc48173cd56867fb3004c7a667b9134105815171fb34b99d86f7fbb7b9a3f69ff6061a7419a63ceb23a07280eedba36b9046a401ad6 SHA512 7d996200e9a30fb569243592f88a9ef4b3a7b32852abb953518e3b6b2833bdb8e81fa8528f35feda0a16d514e48714fa60b716d038fdeafd5f3398cbccec145a
28 DIST clair-2.0.8.tar.gz 5196242 BLAKE2B 9daa91599f9fe98f9a30a043fd261882b36abde5fe985097b47b48a9630db528d978f90f6bd68b32bae9d20a92f598199054cf188b1514a42876666703937b3e SHA512 000ba7c10ca540aaba34de91cf8060f6d28b704060457d320791d188871bf10ea1a8b5eb0526ae0aeebf6b6a307b096c2cc4038ddd5f955d200d20b96f1a725b
29
30 diff --git a/dev-util/clair/clair-2.0.3.ebuild b/dev-util/clair/clair-2.0.3.ebuild
31 deleted file mode 100644
32 index 8c92e5db7e5..00000000000
33 --- a/dev-util/clair/clair-2.0.3.ebuild
34 +++ /dev/null
35 @@ -1,46 +0,0 @@
36 -# Copyright 1999-2018 Gentoo Foundation
37 -# Distributed under the terms of the GNU General Public License v2
38 -
39 -EAPI=6
40 -inherit user golang-build golang-vcs-snapshot
41 -
42 -EGO_PN="github.com/coreos/clair"
43 -EGIT_COMMIT="v${PV}"
44 -ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
45 -KEYWORDS="~amd64"
46 -
47 -DESCRIPTION="Vulnerability Static Analysis for Containers"
48 -HOMEPAGE="https://github.com/coreos/clair"
49 -SRC_URI="${ARCHIVE_URI}"
50 -LICENSE="Apache-2.0"
51 -SLOT="0"
52 -IUSE=""
53 -
54 -RDEPEND="app-arch/rpm
55 - app-arch/xz-utils
56 - dev-vcs/bzr
57 - dev-vcs/git
58 - !!sci-visualization/xd3d" # File collision (Bug #621044)
59 -
60 -pkg_setup() {
61 - enewgroup ${PN}
62 - enewuser ${PN} -1 -1 -1 ${PN}
63 -}
64 -
65 -src_compile() {
66 - GOPATH="${S}" go build -o bin/${PN} -v ${EGO_PN}/cmd/${PN} || die
67 -}
68 -
69 -src_install() {
70 - dobin bin/${PN}
71 - pushd src/${EGO_PN} || die
72 - dodoc {README,ROADMAP,CONTRIBUTING}.md
73 - insinto /etc/${PN}
74 - doins config.example.yaml
75 - popd || die
76 -
77 - newinitd "${FILESDIR}"/${PN}.initd ${PN}
78 - newconfd "${FILESDIR}"/${PN}.confd ${PN}
79 - keepdir /var/log/${PN}
80 - fowners ${PN}:${PN} /var/log/${PN}
81 -}
82
83 diff --git a/dev-util/clair/clair-2.0.4.ebuild b/dev-util/clair/clair-2.0.4.ebuild
84 deleted file mode 100644
85 index 1cb27791309..00000000000
86 --- a/dev-util/clair/clair-2.0.4.ebuild
87 +++ /dev/null
88 @@ -1,45 +0,0 @@
89 -# Copyright 1999-2018 Gentoo Foundation
90 -# Distributed under the terms of the GNU General Public License v2
91 -
92 -EAPI=6
93 -inherit user golang-build golang-vcs-snapshot
94 -
95 -EGO_PN="github.com/coreos/clair"
96 -EGIT_COMMIT="v${PV}"
97 -ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
98 -KEYWORDS="~amd64"
99 -
100 -DESCRIPTION="Vulnerability Static Analysis for Containers"
101 -HOMEPAGE="https://github.com/coreos/clair"
102 -SRC_URI="${ARCHIVE_URI}"
103 -LICENSE="Apache-2.0"
104 -SLOT="0"
105 -IUSE=""
106 -
107 -RDEPEND="app-arch/rpm
108 - app-arch/xz-utils
109 - dev-vcs/git
110 - !!sci-visualization/xd3d" # File collision (Bug #621044)
111 -
112 -pkg_setup() {
113 - enewgroup ${PN}
114 - enewuser ${PN} -1 -1 -1 ${PN}
115 -}
116 -
117 -src_compile() {
118 - GOPATH="${S}" go build -o bin/${PN} -v ${EGO_PN}/cmd/${PN} || die
119 -}
120 -
121 -src_install() {
122 - dobin bin/${PN}
123 - pushd src/${EGO_PN} || die
124 - dodoc {README,ROADMAP,CONTRIBUTING}.md
125 - insinto /etc/${PN}
126 - doins config.example.yaml
127 - popd || die
128 -
129 - newinitd "${FILESDIR}"/${PN}.initd ${PN}
130 - newconfd "${FILESDIR}"/${PN}.confd ${PN}
131 - keepdir /var/log/${PN}
132 - fowners ${PN}:${PN} /var/log/${PN}
133 -}
134
135 diff --git a/dev-util/clair/clair-2.0.5.ebuild b/dev-util/clair/clair-2.0.5.ebuild
136 deleted file mode 100644
137 index 1cb27791309..00000000000
138 --- a/dev-util/clair/clair-2.0.5.ebuild
139 +++ /dev/null
140 @@ -1,45 +0,0 @@
141 -# Copyright 1999-2018 Gentoo Foundation
142 -# Distributed under the terms of the GNU General Public License v2
143 -
144 -EAPI=6
145 -inherit user golang-build golang-vcs-snapshot
146 -
147 -EGO_PN="github.com/coreos/clair"
148 -EGIT_COMMIT="v${PV}"
149 -ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
150 -KEYWORDS="~amd64"
151 -
152 -DESCRIPTION="Vulnerability Static Analysis for Containers"
153 -HOMEPAGE="https://github.com/coreos/clair"
154 -SRC_URI="${ARCHIVE_URI}"
155 -LICENSE="Apache-2.0"
156 -SLOT="0"
157 -IUSE=""
158 -
159 -RDEPEND="app-arch/rpm
160 - app-arch/xz-utils
161 - dev-vcs/git
162 - !!sci-visualization/xd3d" # File collision (Bug #621044)
163 -
164 -pkg_setup() {
165 - enewgroup ${PN}
166 - enewuser ${PN} -1 -1 -1 ${PN}
167 -}
168 -
169 -src_compile() {
170 - GOPATH="${S}" go build -o bin/${PN} -v ${EGO_PN}/cmd/${PN} || die
171 -}
172 -
173 -src_install() {
174 - dobin bin/${PN}
175 - pushd src/${EGO_PN} || die
176 - dodoc {README,ROADMAP,CONTRIBUTING}.md
177 - insinto /etc/${PN}
178 - doins config.example.yaml
179 - popd || die
180 -
181 - newinitd "${FILESDIR}"/${PN}.initd ${PN}
182 - newconfd "${FILESDIR}"/${PN}.confd ${PN}
183 - keepdir /var/log/${PN}
184 - fowners ${PN}:${PN} /var/log/${PN}
185 -}