Gentoo Archives: gentoo-commits

From: "Lars Wendler (polynomial-c)" <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-process/at: ChangeLog at-3.1.10.2-r2.ebuild at-3.1.13.ebuild at-3.1.10.2-r1.ebuild
Date: Mon, 31 Oct 2011 01:17:30
Message-Id: 20111031011719.AA9A22004B@flycatcher.gentoo.org
1 polynomial-c 11/10/31 01:17:19
2
3 Modified: ChangeLog at-3.1.10.2-r2.ebuild at-3.1.13.ebuild
4 at-3.1.10.2-r1.ebuild
5 Log:
6 Better fix for bug #386625
7
8 (Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.31 sys-process/at/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/at/ChangeLog?rev=1.31&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/at/ChangeLog?rev=1.31&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/at/ChangeLog?r1=1.30&r2=1.31
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-process/at/ChangeLog,v
20 retrieving revision 1.30
21 retrieving revision 1.31
22 diff -u -r1.30 -r1.31
23 --- ChangeLog 10 Oct 2011 10:56:16 -0000 1.30
24 +++ ChangeLog 31 Oct 2011 01:17:19 -0000 1.31
25 @@ -1,6 +1,10 @@
26 # ChangeLog for sys-process/at
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-process/at/ChangeLog,v 1.30 2011/10/10 10:56:16 polynomial-c Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-process/at/ChangeLog,v 1.31 2011/10/31 01:17:19 polynomial-c Exp $
30 +
31 + 31 Oct 2011; Lars Wendler <polynomial-c@g.o> at-3.1.10.2-r1.ebuild,
32 + at-3.1.10.2-r2.ebuild, at-3.1.13.ebuild:
33 + non-maintainer commit: Better fix for bug #386625.
34
35 10 Oct 2011; Lars Wendler <polynomial-c@g.o> at-3.1.13.ebuild:
36 non-maintainer commit: Added bug ID to comment about .SEQ file.
37
38
39
40 1.3 sys-process/at/at-3.1.10.2-r2.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/at/at-3.1.10.2-r2.ebuild?rev=1.3&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/at/at-3.1.10.2-r2.ebuild?rev=1.3&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/at/at-3.1.10.2-r2.ebuild?r1=1.2&r2=1.3
45
46 Index: at-3.1.10.2-r2.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.10.2-r2.ebuild,v
49 retrieving revision 1.2
50 retrieving revision 1.3
51 diff -u -r1.2 -r1.3
52 --- at-3.1.10.2-r2.ebuild 10 Oct 2011 10:42:43 -0000 1.2
53 +++ at-3.1.10.2-r2.ebuild 31 Oct 2011 01:17:19 -0000 1.3
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2011 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.10.2-r2.ebuild,v 1.2 2011/10/10 10:42:43 polynomial-c Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.10.2-r2.ebuild,v 1.3 2011/10/31 01:17:19 polynomial-c Exp $
59
60 inherit eutils flag-o-matic autotools pam
61
62 @@ -58,15 +58,17 @@
63 src_install() {
64 make install IROOT="${D}" || die
65
66 - # Don't install .SEQ file when it's already installed (bug #386625)
67 - if [ -e "${ROOT}/var/spool/at/atjobs/.SEQ" ] ; then
68 - rm "${D}/var/spool/at/atjobs/.SEQ" || die
69 - fi
70 -
71 newinitd "${FILESDIR}"/atd.rc6 atd
72 newconfd "${FILESDIR}"/atd.confd atd
73 newpamd "${FILESDIR}"/at.pamd atd
74 prepalldocs
75 +
76 + # Preserve existing .SEQ files (bug #386625)
77 + local seq_file="${ROOT}/var/spool/at/atjobs/.SEQ"
78 + if [ -f "${seq_file}" ] ; then
79 + einfo"Preserving existing .SEQ file (bug #386625)."
80 + cp -p "${seq_file}" "${D}"/var/spool/at/atjobs/ || die
81 + fi
82 }
83
84 pkg_postinst() {
85
86
87
88 1.5 sys-process/at/at-3.1.13.ebuild
89
90 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/at/at-3.1.13.ebuild?rev=1.5&view=markup
91 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/at/at-3.1.13.ebuild?rev=1.5&content-type=text/plain
92 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/at/at-3.1.13.ebuild?r1=1.4&r2=1.5
93
94 Index: at-3.1.13.ebuild
95 ===================================================================
96 RCS file: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.13.ebuild,v
97 retrieving revision 1.4
98 retrieving revision 1.5
99 diff -u -r1.4 -r1.5
100 --- at-3.1.13.ebuild 10 Oct 2011 10:56:16 -0000 1.4
101 +++ at-3.1.13.ebuild 31 Oct 2011 01:17:19 -0000 1.5
102 @@ -1,6 +1,6 @@
103 # Copyright 1999-2011 Gentoo Foundation
104 # Distributed under the terms of the GNU General Public License v2
105 -# $Header: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.13.ebuild,v 1.4 2011/10/10 10:56:16 polynomial-c Exp $
106 +# $Header: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.13.ebuild,v 1.5 2011/10/31 01:17:19 polynomial-c Exp $
107
108 EAPI=4
109
110 @@ -52,14 +52,16 @@
111 src_install() {
112 make install IROOT="${D}" || die
113
114 - # Don't install .SEQ file when it's already installed (bug #386625)
115 - if [ -e "${ROOT}/var/spool/at/atjobs/.SEQ" ] ; then
116 - rm "${D}/var/spool/at/atjobs/.SEQ" || die
117 - fi
118 -
119 newinitd "${FILESDIR}"/atd.rc6 atd
120 newconfd "${FILESDIR}"/atd.confd atd
121 newpamd "${FILESDIR}"/at.pamd atd
122 +
123 + # Preserve existing .SEQ files (bug #386625)
124 + local seq_file="${ROOT}/var/spool/at/atjobs/.SEQ"
125 + if [ -f "${seq_file}" ] ; then
126 + einfo "Preserving existing .SEQ file (bug #386625)."
127 + cp -p "${seq_file}" "${D}"/var/spool/at/atjobs/ || die
128 + fi
129 }
130
131 pkg_postinst() {
132
133
134
135 1.10 sys-process/at/at-3.1.10.2-r1.ebuild
136
137 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/at/at-3.1.10.2-r1.ebuild?rev=1.10&view=markup
138 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/at/at-3.1.10.2-r1.ebuild?rev=1.10&content-type=text/plain
139 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/at/at-3.1.10.2-r1.ebuild?r1=1.9&r2=1.10
140
141 Index: at-3.1.10.2-r1.ebuild
142 ===================================================================
143 RCS file: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.10.2-r1.ebuild,v
144 retrieving revision 1.9
145 retrieving revision 1.10
146 diff -u -r1.9 -r1.10
147 --- at-3.1.10.2-r1.ebuild 10 Oct 2011 10:42:43 -0000 1.9
148 +++ at-3.1.10.2-r1.ebuild 31 Oct 2011 01:17:19 -0000 1.10
149 @@ -1,6 +1,6 @@
150 # Copyright 1999-2011 Gentoo Foundation
151 # Distributed under the terms of the GNU General Public License v2
152 -# $Header: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.10.2-r1.ebuild,v 1.9 2011/10/10 10:42:43 polynomial-c Exp $
153 +# $Header: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.10.2-r1.ebuild,v 1.10 2011/10/31 01:17:19 polynomial-c Exp $
154
155 inherit eutils flag-o-matic autotools pam
156
157 @@ -58,14 +58,16 @@
158 src_install() {
159 make install IROOT="${D}" || die
160
161 - # Don't install .SEQ file when it's already installed (bug #386625)
162 - if [ -e "${ROOT}/var/spool/at/atjobs/.SEQ" ] ; then
163 - rm "${D}/var/spool/at/atjobs/.SEQ" || die
164 - fi
165 -
166 newinitd "${FILESDIR}"/atd.rc6 atd
167 newpamd "${FILESDIR}"/at.pamd atd
168 prepalldocs
169 +
170 + # Preserve existing .SEQ files (bug #386625)
171 + local seq_file="${ROOT}/var/spool/at/atjobs/.SEQ"
172 + if [ -f "${seq_file}" ] ; then
173 + einfo"Preserving existing .SEQ file (bug #386625)."
174 + cp -p "${seq_file}" "${D}"/var/spool/at/atjobs/ || die
175 + fi
176 }
177
178 pkg_postinst() {