Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/at/
Date: Sat, 02 Jul 2016 12:25:03
Message-Id: 1467462288.ee06f8502f7245f236d1ecea0fef2de92b155902.polynomial-c@gentoo
1 commit: ee06f8502f7245f236d1ecea0fef2de92b155902
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 2 12:13:20 2016 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 2 12:24:48 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee06f850
7
8 sys-process/at: Bump to version 3.1.20
9
10 Package-Manager: portage-2.3.0
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 sys-process/at/Manifest | 1 +
14 sys-process/at/at-3.1.20.ebuild | 88 +++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 89 insertions(+)
16
17 diff --git a/sys-process/at/Manifest b/sys-process/at/Manifest
18 index 5ca2785..e17d48d 100644
19 --- a/sys-process/at/Manifest
20 +++ b/sys-process/at/Manifest
21 @@ -1,2 +1,3 @@
22 DIST at_3.1.16.orig.tar.gz 123174 SHA256 cb9af59c6a54edce9536ba629841055409d1f89d8ae26494727a97141fb4d5c1 SHA512 d63132536d01153c4b38499b316c8a7980cd47a75b00fb5edc6e41f24345f97b55b20e5801d50f1bde2f337acc7bdb7e318456c241415e7b7bddee7e51e68ad5 WHIRLPOOL 7ad8a15e53afc915d0cf52b1b42d810876538317665e05232a3b898244558cdb76cad727e2479db3437249e3e63dab2c824c30bb94bd28e6f65edbd5848d2e2c
23 DIST at_3.1.18.orig.tar.gz 124499 SHA256 dbd5c8cb8edd53ef467363c3af0391c08769f1dbbd4d5002c59a4cd4cac11d52 SHA512 5ec7512663461ffa1922cef0d99c3cc4882defbea7b1ab855b05bb83e9d3817535db73db74413bcc8af005c956032ec3dc7c83ac16fde96bb315094dae654042 WHIRLPOOL ba2c9d09605cc66ce2a01113700d45c3ce37dddbd244928dca836c570450aaf6aceba15c834dca4e844bb27c9a74cc33eac38a1cbe0a1f5bb7c55ee42bd38424
24 +DIST at_3.1.20.orig.tar.gz 127666 SHA256 0871923cab73050b98ace020664eb2ddc1e669e4166b5abb64d864d02fcefab9 SHA512 20a13512a86f988728f590712f5bf8a23f4dc44f4b42521a4dd4783dc1ba7ac2016ee87b4c2c14f2346a5839168a983d99c3195e947014aea3096a3db16d176f WHIRLPOOL 7eb6ce93735005caddb2c4855de4fa746beb25ca75f1c0f6a48fc59bf3a3ae706ccb6290c52dd37a63b44fc3c748877f2e5e760083376f93e19574dd760b0ec2
25
26 diff --git a/sys-process/at/at-3.1.20.ebuild b/sys-process/at/at-3.1.20.ebuild
27 new file mode 100644
28 index 0000000..97e09ff
29 --- /dev/null
30 +++ b/sys-process/at/at-3.1.20.ebuild
31 @@ -0,0 +1,88 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=6
37 +
38 +inherit autotools eutils flag-o-matic pam user systemd
39 +
40 +DESCRIPTION="Queues jobs for later execution"
41 +HOMEPAGE="http://packages.qa.debian.org/a/at.html"
42 +SRC_URI="mirror://debian/pool/main/a/at/${PN}_${PV}.orig.tar.gz"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
47 +IUSE="pam selinux"
48 +
49 +DEPEND="virtual/mta
50 + >=sys-devel/autoconf-2.64
51 + sys-devel/bison
52 + >=sys-devel/flex-2.5.4a
53 + pam? ( virtual/pam )"
54 +RDEPEND="virtual/mta
55 + virtual/logger
56 + selinux? ( sec-policy/selinux-at )"
57 +
58 +PATCHES=(
59 + "${FILESDIR}"/${PN}-3.1.8-more-deny.patch
60 + "${FILESDIR}"/${PN}-3.1.14-Makefile.patch
61 + # fix parallel make issues, bug #244884
62 + "${FILESDIR}"/${PN}-3.1.10.2-Makefile.in-parallel-make-fix.patch
63 + "${FILESDIR}"/${PN}-3.1.13-configure.in-fix-PAM-automagick-dep.patch
64 + # Fix parallel make issue (bug #408375)
65 + "${FILESDIR}"/${PN}-3.1.13-parallel-make-fix.patch
66 + "${FILESDIR}"/${PN}-3.1.13-getloadavg.patch
67 +)
68 +
69 +pkg_setup() {
70 + enewgroup at 25
71 + enewuser at 25 -1 /var/spool/at/atjobs at
72 +}
73 +
74 +src_prepare() {
75 + default
76 + eautoreconf
77 +}
78 +
79 +src_configure() {
80 + local myconf=()
81 + use pam || my_conf+=( --without-pam )
82 + use selinux && my_conf+=( --with-selinux )
83 + econf \
84 + --sysconfdir=/etc/at \
85 + --with-jobdir=/var/spool/at/atjobs \
86 + --with-atspool=/var/spool/at/atspool \
87 + --with-etcdir=/etc/at \
88 + --with-daemon_username=at \
89 + --with-daemon_groupname=at \
90 + ${my_conf[@]}
91 +}
92 +
93 +src_install() {
94 + emake install IROOT="${D}"
95 +
96 + newinitd "${FILESDIR}"/atd.rc8 atd
97 + newconfd "${FILESDIR}"/atd.confd atd
98 + newpamd "${FILESDIR}"/at.pamd-3.1.13-r1 atd
99 +
100 + # Preserve existing .SEQ files (bug #386625)
101 + local seq_file="${ROOT}/var/spool/at/atjobs/.SEQ"
102 + if [ -f "${seq_file}" ] ; then
103 + einfo "Preserving existing .SEQ file (bug #386625)."
104 + cp -p "${seq_file}" "${D}"/var/spool/at/atjobs/ || die
105 + fi
106 +
107 + systemd_dounit "${FILESDIR}/atd.service"
108 +}
109 +
110 +pkg_postinst() {
111 + einfo "Forcing correct permissions on /var/spool/at"
112 + local atspooldir="${ROOT}/var/spool/at"
113 + chown at:at "${atspooldir}/atjobs"
114 + chmod 1770 "${atspooldir}/atjobs"
115 + chown at:at "${atspooldir}/atjobs/.SEQ"
116 + chmod 0600 "${atspooldir}/atjobs/.SEQ"
117 + chown at:at "${atspooldir}/atspool"
118 + chmod 1770 "${atspooldir}/atspool"
119 +}