Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/sysstat/, app-admin/sysstat/files/
Date: Thu, 06 Jul 2017 19:41:39
Message-Id: 1499370091.e4a78db8fc03360234ca1bd7845087a3ed7d36cb.jer@gentoo
1 commit: e4a78db8fc03360234ca1bd7845087a3ed7d36cb
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 6 19:41:19 2017 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 6 19:41:31 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4a78db8
7
8 app-admin/sysstat: Old.
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 app-admin/sysstat/Manifest | 1 -
13 .../sysstat/files/sysstat-11.4.3-memalign.patch | 40 ---------
14 app-admin/sysstat/sysstat-11.4.3-r1.ebuild | 96 ----------------------
15 3 files changed, 137 deletions(-)
16
17 diff --git a/app-admin/sysstat/Manifest b/app-admin/sysstat/Manifest
18 index c8c0628e628..a6258551bac 100644
19 --- a/app-admin/sysstat/Manifest
20 +++ b/app-admin/sysstat/Manifest
21 @@ -1,5 +1,4 @@
22 DIST sysstat-11.4.0.tar.xz 343968 SHA256 b8518ca88acfcbc474a406022ee9c0c3210ccef4f0ec80e5b3e8c41dda8c16f2 SHA512 4a5c81d75fdbc8dcaf80685f302688c39bd7143554e5a06cb324532ddb5180caac19b261182d5320f40b317bdb1e81664887acc7cedfeb5a95dc6ad37a898604 WHIRLPOOL 39f48929040405f83a0d3c49dcf2aac471deeadd10d31181ee03809a30573868a7da43df160688ad553d305221bd21c2e253f56913f8f8a53020fb66f62c05ba
23 -DIST sysstat-11.4.3.tar.xz 344572 SHA256 02e9cafa5557fbae435d33e592373655df929d817ae711d31142dd2f7d4dcee7 SHA512 20862a6fd735aa0a6d571ffe0e1aa755ce9c5d8a704739f0095d19861394ea3a45c93e9f46ac5f42b6719ba1aa21e33261ac28fde643d7f5c315d7f0a7b0d74d WHIRLPOOL 64df9bf1a375ce7ebf727b07b10caa3b72ba3630a5a238e72dca017e09a65dbf3f1623f5e1115fb037974609e39c4fb4e3f2790c444b23eae4fb7af591bfd389
24 DIST sysstat-11.4.4.tar.xz 344756 SHA256 6585f08e24347d2d6462aee6ef97e80fe4cc869605193184500df0f80fa61cc8 SHA512 918b8c54ab6bdde568106254d1550644f6e962896b1923f4145bfbfb6c65542b08182141d2164be51667fc0dc5df57d94cbeb34cf5f8dfacb224559caef0740c WHIRLPOOL 09f873d65015037a780a5c8425bb2fc80c3124aa2560b8a8e1b3173676121b3e41d9606c2015439f00738be0da67c73ac92521bf882007c948e064d4c2ab5fed
25 DIST sysstat-11.4.5.tar.xz 344796 SHA256 785d754d64c746b21190773a846539ef2ee789bf908f05cd8245c234d15784ff SHA512 e195e0fa4afa45e894fc1089ecdc7e77dd0532f0db0d10b717b32e642710baa96de31be01c70c8a1173359c8f65f34dc72ac2722ecd2c8e63bf286a6eed202fd WHIRLPOOL a35f673129b873a0fac657447905d7662eaa22f3bd80a095d5c440586d116a595dab68136a147f3f50b0019eb1e244a29c8cdff0fb4b8e6698f31920a901f623
26 DIST sysstat-11.5.6.tar.xz 465576 SHA256 83a81e0a6c1d39a0985310dc2944ac6214c963adb4dc8af24ae03a9ae8d0f3ac SHA512 7541284a1a7bbd3eeccca1110176e5f261bba54ab27b1ea587d584e651e818c3c029aa07b98200e783257ebdffa48048f40dfbbaacb4cbbd1d51d40d7d48a64a WHIRLPOOL 16eb9c5919506df7c6685436874bab0ea5b51c711a6932681925cfd2f37f7da953613aa3397f931cf94d0e35b2de66712dd7ff511e11cc513b6f5cc5288a2c60
27
28 diff --git a/app-admin/sysstat/files/sysstat-11.4.3-memalign.patch b/app-admin/sysstat/files/sysstat-11.4.3-memalign.patch
29 deleted file mode 100644
30 index ab5fa7dbc95..00000000000
31 --- a/app-admin/sysstat/files/sysstat-11.4.3-memalign.patch
32 +++ /dev/null
33 @@ -1,40 +0,0 @@
34 -sysstat declares 16 bytes alignment for many structs. But realloc does not
35 -guarantee 16 byte alignment (it maxes out at 8 bytes for most systems).
36 -Because of declared 16 byte alignement, the compiler is free to generate SIMD
37 -16 byte loads which require aligned addresses. Use posix_memalign instead to
38 -enforce 16 bytes data alignment to avoid crashes.
39 -
40 -https://github.com/sysstat/sysstat/issues/148
41 -
42 -Patch by Manoj Gupta <manojgupta@××××××.com>
43 -
44 ---- a/common.h
45 -+++ b/common.h
46 -@@ -11,6 +11,7 @@
47 -
48 - #include <time.h>
49 - #include <sched.h> /* For __CPU_SETSIZE */
50 -+#include <stdlib.h>
51 - #include <limits.h>
52 -
53 - #ifdef HAVE_SYS_SYSMACROS_H
54 -@@ -91,13 +92,18 @@
55 - TYPE *_p_; \
56 - _p_ = S; \
57 - if (SIZE) { \
58 -- if ((S = (TYPE *) realloc(S, (SIZE))) == NULL) { \
59 -+ void *_ptr = NULL; \
60 -+ int error = posix_memalign(&_ptr, 16, SIZE); \
61 -+ if (error || _ptr == NULL) { \
62 - perror("realloc"); \
63 - exit(4); \
64 - } \
65 -+ S = (TYPE *)_ptr; \
66 - /* If the ptr was null, then it's a malloc() */ \
67 - if (!_p_) { \
68 - memset(S, 0, (SIZE)); \
69 -+ } else { \
70 -+ memcpy(S, _p_, (SIZE)); \
71 - } \
72 - } \
73 - if (!S) { \
74
75 diff --git a/app-admin/sysstat/sysstat-11.4.3-r1.ebuild b/app-admin/sysstat/sysstat-11.4.3-r1.ebuild
76 deleted file mode 100644
77 index 74edb096177..00000000000
78 --- a/app-admin/sysstat/sysstat-11.4.3-r1.ebuild
79 +++ /dev/null
80 @@ -1,96 +0,0 @@
81 -# Copyright 1999-2017 Gentoo Foundation
82 -# Distributed under the terms of the GNU General Public License v2
83 -
84 -EAPI=6
85 -inherit flag-o-matic multilib systemd toolchain-funcs
86 -
87 -DESCRIPTION="System performance tools for Linux"
88 -HOMEPAGE="http://pagesperso-orange.fr/sebastien.godard/"
89 -SRC_URI="${HOMEPAGE}${P}.tar.xz"
90 -
91 -LICENSE="GPL-2"
92 -SLOT="0"
93 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
94 -IUSE="debug isag nls lm_sensors selinux static"
95 -
96 -CDEPEND="
97 - isag? (
98 - dev-lang/tk:0
99 - dev-vcs/rcs
100 - sci-visualization/gnuplot
101 - )
102 - nls? ( virtual/libintl )
103 - lm_sensors? ( sys-apps/lm_sensors )
104 -"
105 -DEPEND="
106 - ${CDEPEND}
107 - nls? ( sys-devel/gettext )
108 -"
109 -RDEPEND="
110 - ${CDEPEND}
111 - selinux? ( sec-policy/selinux-sysstat )
112 -"
113 -PATCHES=(
114 - "${FILESDIR}"/${PN}-10.0.4-flags.patch
115 - "${FILESDIR}"/${PN}-11.0.4-cron.patch
116 - "${FILESDIR}"/${PN}-11.4.3-memalign.patch
117 -)
118 -
119 -SYSSTAT_FAKE_RC_DIR=Gentoo-does-not-use-rc.d
120 -
121 -src_prepare() {
122 - if use nls; then
123 - strip-linguas -i nls/
124 - local lingua pofile
125 - for pofile in nls/*.po; do
126 - lingua=${pofile/nls\/}
127 - lingua=${lingua/.po}
128 - if ! has ${lingua} ${LINGUAS}; then
129 - rm "nls/${lingua}.po" || die
130 - fi
131 - done
132 - fi
133 -
134 - default
135 -}
136 -
137 -src_configure() {
138 - tc-export AR
139 - use static && append-ldflags -static
140 -
141 - sa_lib_dir=/usr/$(get_libdir)/sa \
142 - conf_dir=/etc \
143 - rcdir=${SYSSTAT_FAKE_RC_DIR} \
144 - econf \
145 - $(use_enable debug debuginfo) \
146 - $(use_enable isag install-isag) \
147 - $(use_enable lm_sensors sensors) \
148 - $(use_enable nls) \
149 - --enable-copy-only \
150 - --enable-documentation \
151 - --enable-install-cron \
152 - --with-systemdsystemunitdir=$(systemd_get_systemunitdir)
153 -}
154 -
155 -src_compile() {
156 - emake LFLAGS="${LDFLAGS}"
157 -}
158 -
159 -src_install() {
160 - keepdir /var/log/sa
161 -
162 - emake \
163 - CHOWN=true \
164 - DESTDIR="${D}" \
165 - DOC_DIR=/usr/share/doc/${PF} \
166 - MANGRPARG='' \
167 - install
168 -
169 - dodoc contrib/sargraph/sargraph
170 -
171 - rm -r "${D}/${SYSSTAT_FAKE_RC_DIR}" || die
172 - newinitd "${FILESDIR}"/${PN}.init.d ${PN}
173 - systemd_dounit ${PN}.service
174 -
175 - rm -f "${D}"usr/share/doc/${PF}/COPYING
176 -}