Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/scdoc/
Date: Fri, 14 Feb 2020 16:47:03
Message-Id: 1581698813.ffcba52becb8763786fd813104e7f912042f04d1.prometheanfire@gentoo
1 commit: ffcba52becb8763786fd813104e7f912042f04d1
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 14 16:46:02 2020 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 14 16:46:53 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffcba52b
7
8 app-text/scdoc: cleanup
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 app-text/scdoc/Manifest | 3 ---
14 app-text/scdoc/scdoc-1.3.1.ebuild | 38 ----------------------------------
15 app-text/scdoc/scdoc-1.5.2.ebuild | 43 ---------------------------------------
16 app-text/scdoc/scdoc-1.8.1.ebuild | 43 ---------------------------------------
17 app-text/scdoc/scdoc-1.9.3.ebuild | 43 ---------------------------------------
18 5 files changed, 170 deletions(-)
19
20 diff --git a/app-text/scdoc/Manifest b/app-text/scdoc/Manifest
21 index 41fa8cc0cf0..02f5cf585a6 100644
22 --- a/app-text/scdoc/Manifest
23 +++ b/app-text/scdoc/Manifest
24 @@ -1,5 +1,2 @@
25 DIST scdoc-1.10.0.tar.gz 12414 BLAKE2B 3111b3ace102aca2f7da86e510e00f552874817b6b9d754770bd94f9482e4e444a4bc4d44a8317376a6c374bb7363eae96a49281fefd95dd663134087123034b SHA512 546743376380d84aa9c8be65529dbbe1634e574203220ce1c057341436bd3a15297f393ca79d29372cb125bf457cfc00f64ba2867b8d2e910ca6531acb552e97
26 -DIST scdoc-1.3.1.tar.gz 9392 BLAKE2B 609f25252f0ee864ba3500961aa1048c6490278f4861fb4494ca62365a20d0cb128e53a6397bd089bd5a37f25f7f3c080f6921f1c4f4ca7e4af729c87e1994fc SHA512 6064de8c76eb959708b32e93634223565e5d4b390069d4fcd2d87d27bb472a333c60b21de87d676eb57ff5f8ed6445d3c3bd92dfe7dd611f9886abc38e8d21d2
27 -DIST scdoc-1.5.2.tar.gz 10542 BLAKE2B 07ceb1b3b57026a4e67e575f02042c2c882cdbd29712a4d3726ff39b4356bb63a35a99b21dd68fee31aad6fb2df14b1886bb2694098bc9096c5ff9e41600e7c4 SHA512 755c1c7fbae6cbeb75ca2aa2498cb3b2cf644e5118188c3e4a4636d74764b475b1818dcb5bd08ff70e017af9c1f8cb2e351db36a2cc98885724731e4247201eb
28 -DIST scdoc-1.8.1.tar.gz 11204 BLAKE2B 0427aae7aa6ad5a5258d3e00f9ea87f4faa9c3c8f9931fbed66659eaf62263c32377ee3ea68afdd7c02720f0550b1c8a9f8849245f1ec560ce86c198f6c44d0c SHA512 16845acac3d59eb878f1a41d5fa95d9910166da3ac292173506b778d29f5289a26a6529aac765c07b2e04bbc6924b32b68ff68f7491a03a1050e53251a193eaf
29 DIST scdoc-1.9.3.tar.gz 11479 BLAKE2B 79aa3f18104e06722f087e9c2fa047f6e19fe8eb47ba0b4e6fa86f7abdc52b06a2dfcfd632b16dc7bce6e5ef3b0dbb40ce9170e678bc17c0a4e43dcc0099a1dc SHA512 77be81f042e2099de7fc84b0161bc8a95d5c3dde662284613d84a1e249fa0aa51dad73f53f265c833526d40f5e1f19fce99dc5cd6df35efb0a323c3db6084a55
30
31 diff --git a/app-text/scdoc/scdoc-1.3.1.ebuild b/app-text/scdoc/scdoc-1.3.1.ebuild
32 deleted file mode 100644
33 index c8999bc8053..00000000000
34 --- a/app-text/scdoc/scdoc-1.3.1.ebuild
35 +++ /dev/null
36 @@ -1,38 +0,0 @@
37 -# Copyright 1999-2018 Gentoo Authors
38 -# Distributed under the terms of the GNU General Public License v2
39 -
40 -EAPI=6
41 -
42 -inherit toolchain-funcs
43 -
44 -DESCRIPTION="Standalone tool for generating man pages with a simple syntax"
45 -HOMEPAGE="https://git.sr.ht/~sircmpwn/scdoc"
46 -SRC_URI="https://git.sr.ht/~sircmpwn/scdoc/archive/${PV}.tar.gz -> ${P}.tar.gz"
47 -
48 -LICENSE="MIT"
49 -SLOT="0"
50 -KEYWORDS="~amd64 ~x86"
51 -
52 -src_prepare() {
53 - default
54 -
55 - sed -e 's/-Werror//' \
56 - -e 's/CFLAGS=/CFLAGS+=/' \
57 - -i Makefile || die 'Failed to patch Makefile'
58 -}
59 -
60 -src_compile() {
61 - local MY_HS="./scdoc"
62 - if tc-is-cross-compiler; then
63 - tc-export_build_env
64 - MY_HS="./hostscdoc"
65 - emake scdoc HOST_SCDOC="./hostscdoc" OUTDIR="${S}/.build.host" CC="$(tc-getBUILD_CC)" \
66 - CFLAGS="${BUILD_CFLAGS} -DVERSION='\"${PV}\"'" LDFLAGS="${BUILD_LDFLAGS}"
67 - mv scdoc hostscdoc || die 'Failed to rename host scdoc'
68 - fi
69 - emake LDFLAGS="${LDFLAGS}" PREFIX="${EPREFIX}/usr" HOST_SCDOC="${MY_HS}"
70 -}
71 -
72 -src_install() {
73 - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" HOST_SCDOC="${MY_HS}" install
74 -}
75
76 diff --git a/app-text/scdoc/scdoc-1.5.2.ebuild b/app-text/scdoc/scdoc-1.5.2.ebuild
77 deleted file mode 100644
78 index 3c018008f00..00000000000
79 --- a/app-text/scdoc/scdoc-1.5.2.ebuild
80 +++ /dev/null
81 @@ -1,43 +0,0 @@
82 -# Copyright 1999-2018 Gentoo Authors
83 -# Distributed under the terms of the GNU General Public License v2
84 -
85 -EAPI=7
86 -
87 -inherit toolchain-funcs
88 -
89 -DESCRIPTION="Standalone tool for generating man pages with a simple syntax"
90 -HOMEPAGE="https://git.sr.ht/~sircmpwn/scdoc"
91 -
92 -if [[ ${PV} == 9999 ]]; then
93 - EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/scdoc"
94 - inherit git-r3
95 -else
96 - SRC_URI="https://git.sr.ht/~sircmpwn/scdoc/archive/${PV}.tar.gz -> ${P}.tar.gz"
97 - KEYWORDS="~amd64 ~x86"
98 -fi
99 -
100 -LICENSE="MIT"
101 -SLOT="0"
102 -
103 -src_prepare() {
104 - default
105 -
106 - sed -e 's/-Werror//' \
107 - -i Makefile || die 'Failed to patch Makefile'
108 -}
109 -
110 -src_compile() {
111 - local MY_HS="./scdoc"
112 - if tc-is-cross-compiler; then
113 - tc-export_build_env
114 - MY_HS="./hostscdoc"
115 - emake scdoc HOST_SCDOC="./hostscdoc" OUTDIR="${S}/.build.host" CC="$(tc-getBUILD_CC)" \
116 - CFLAGS="${BUILD_CFLAGS} -DVERSION='\"${PV}\"'" LDFLAGS="${BUILD_LDFLAGS}"
117 - mv scdoc hostscdoc || die 'Failed to rename host scdoc'
118 - fi
119 - emake LDFLAGS="${LDFLAGS}" PREFIX="${EPREFIX}/usr" HOST_SCDOC="${MY_HS}"
120 -}
121 -
122 -src_install() {
123 - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" HOST_SCDOC="${MY_HS}" install
124 -}
125
126 diff --git a/app-text/scdoc/scdoc-1.8.1.ebuild b/app-text/scdoc/scdoc-1.8.1.ebuild
127 deleted file mode 100644
128 index 2e828db3f05..00000000000
129 --- a/app-text/scdoc/scdoc-1.8.1.ebuild
130 +++ /dev/null
131 @@ -1,43 +0,0 @@
132 -# Copyright 1999-2019 Gentoo Authors
133 -# Distributed under the terms of the GNU General Public License v2
134 -
135 -EAPI=7
136 -
137 -inherit toolchain-funcs
138 -
139 -DESCRIPTION="Standalone tool for generating man pages with a simple syntax"
140 -HOMEPAGE="https://git.sr.ht/~sircmpwn/scdoc"
141 -
142 -if [[ ${PV} == 9999 ]]; then
143 - EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/scdoc"
144 - inherit git-r3
145 -else
146 - SRC_URI="https://git.sr.ht/~sircmpwn/scdoc/archive/${PV}.tar.gz -> ${P}.tar.gz"
147 - KEYWORDS="~amd64 ~x86"
148 -fi
149 -
150 -LICENSE="MIT"
151 -SLOT="0"
152 -
153 -src_prepare() {
154 - default
155 -
156 - sed -e 's/-Werror//' \
157 - -i Makefile || die 'Failed to patch Makefile'
158 -}
159 -
160 -src_compile() {
161 - local MY_HS="./scdoc"
162 - if tc-is-cross-compiler; then
163 - tc-export_build_env
164 - MY_HS="./hostscdoc"
165 - emake scdoc HOST_SCDOC="./hostscdoc" OUTDIR="${S}/.build.host" CC="$(tc-getBUILD_CC)" \
166 - CFLAGS="${BUILD_CFLAGS} -DVERSION='\"${PV}\"'" LDFLAGS="${BUILD_LDFLAGS}"
167 - mv scdoc hostscdoc || die 'Failed to rename host scdoc'
168 - fi
169 - emake LDFLAGS="${LDFLAGS}" PREFIX="${EPREFIX}/usr" HOST_SCDOC="${MY_HS}"
170 -}
171 -
172 -src_install() {
173 - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" HOST_SCDOC="${MY_HS}" install
174 -}
175
176 diff --git a/app-text/scdoc/scdoc-1.9.3.ebuild b/app-text/scdoc/scdoc-1.9.3.ebuild
177 deleted file mode 100644
178 index d32ef288448..00000000000
179 --- a/app-text/scdoc/scdoc-1.9.3.ebuild
180 +++ /dev/null
181 @@ -1,43 +0,0 @@
182 -# Copyright 1999-2019 Gentoo Authors
183 -# Distributed under the terms of the GNU General Public License v2
184 -
185 -EAPI=7
186 -
187 -inherit toolchain-funcs
188 -
189 -DESCRIPTION="Standalone tool for generating man pages with a simple syntax"
190 -HOMEPAGE="https://git.sr.ht/~sircmpwn/scdoc"
191 -
192 -if [[ ${PV} == 9999 ]]; then
193 - EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/scdoc"
194 - inherit git-r3
195 -else
196 - SRC_URI="https://git.sr.ht/~sircmpwn/scdoc/archive/${PV}.tar.gz -> ${P}.tar.gz"
197 - KEYWORDS="amd64 ~x86"
198 -fi
199 -
200 -LICENSE="MIT"
201 -SLOT="0"
202 -
203 -src_prepare() {
204 - default
205 -
206 - sed -e 's/-Werror//' \
207 - -i Makefile || die 'Failed to patch Makefile'
208 -}
209 -
210 -src_compile() {
211 - local MY_HS="./scdoc"
212 - if tc-is-cross-compiler; then
213 - tc-export_build_env
214 - MY_HS="./hostscdoc"
215 - emake scdoc HOST_SCDOC="./hostscdoc" OUTDIR="${S}/.build.host" CC="$(tc-getBUILD_CC)" \
216 - CFLAGS="${BUILD_CFLAGS} -DVERSION='\"${PV}\"'" LDFLAGS="${BUILD_LDFLAGS}"
217 - mv scdoc hostscdoc || die 'Failed to rename host scdoc'
218 - fi
219 - emake LDFLAGS="${LDFLAGS}" PREFIX="${EPREFIX}/usr" HOST_SCDOC="${MY_HS}"
220 -}
221 -
222 -src_install() {
223 - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" HOST_SCDOC="${MY_HS}" install
224 -}