diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2019-11-27 14:45:16 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2019-11-27 14:45:26 +0100 |
commit | c51057293adbae49612d877a3ee481ff19023cc5 (patch) | |
tree | 61f10e48d1c65c8f20cb5b45d1f031988c4c9e48 /sys-process/at | |
parent | media-libs/tiff: m68k stable wrt bug #699868 (diff) | |
download | gentoo-c51057293adbae49612d877a3ee481ff19023cc5.tar.gz gentoo-c51057293adbae49612d877a3ee481ff19023cc5.tar.bz2 gentoo-c51057293adbae49612d877a3ee481ff19023cc5.zip |
sys-process/at: Removed old
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'sys-process/at')
-rw-r--r-- | sys-process/at/Manifest | 1 | ||||
-rw-r--r-- | sys-process/at/at-3.1.18-r1.ebuild | 89 |
2 files changed, 0 insertions, 90 deletions
diff --git a/sys-process/at/Manifest b/sys-process/at/Manifest index 8395c7f38668..c7b41635cae7 100644 --- a/sys-process/at/Manifest +++ b/sys-process/at/Manifest @@ -1,3 +1,2 @@ -DIST at_3.1.18.orig.tar.gz 124499 BLAKE2B b7c65d33fea3d3345ec7d1eb82652c787cfa86520bdd8ac0329baad5cd19cf85ffefe695e86480d38833abe131da8e9c2ea8685699bcfe8baafb3e2cfa57502e SHA512 5ec7512663461ffa1922cef0d99c3cc4882defbea7b1ab855b05bb83e9d3817535db73db74413bcc8af005c956032ec3dc7c83ac16fde96bb315094dae654042 DIST at_3.1.23.orig.tar.gz 126284 BLAKE2B b2af9dfa4ed87ee93489b98acae6b7eb005d6db7e2401ec7d4d21353af636b232d57e92e4cd6e81f52115aa9d29fadf440809a9d77cb1eb5d40d42ec7fe640b0 SHA512 ee5cf5abf32cf1e89746e427d1cc20005ef49fad47db55512c90042a77e86b2c15f5de029c79573bc86ce4aead6ed2d561b89812510aadbc5763f9288b467cfd DIST at_3.2.1.orig.tar.gz 127577 BLAKE2B 4e8f4aa889075dcede894062b2926afd7892ef15d4ca5bf855b699d1dab9f49a56fd5bd8da376b178032e70cdef72eba2a7d9d6da577982773351633ce85d003 SHA512 8109b2acf220ffc14ea78e7d5671507e8cad41a163c1d7f96de18aae05c8617071c6306e04446450190f492a65ca31f51ed040fba5719b67625a58f738fc9c9e diff --git a/sys-process/at/at-3.1.18-r1.ebuild b/sys-process/at/at-3.1.18-r1.ebuild deleted file mode 100644 index abcb07354996..000000000000 --- a/sys-process/at/at-3.1.18-r1.ebuild +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools eutils flag-o-matic pam user systemd - -DESCRIPTION="Queues jobs for later execution" -HOMEPAGE="https://packages.qa.debian.org/a/at.html" -SRC_URI="mirror://debian/pool/main/a/at/${PN}_${PV}.orig.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86" -IUSE="pam selinux" - -DEPEND="virtual/mta - >=sys-devel/autoconf-2.64 - sys-devel/bison - >=sys-devel/flex-2.5.4a - pam? ( sys-libs/pam )" -RDEPEND="virtual/mta - virtual/logger - selinux? ( sec-policy/selinux-at )" - -S="${WORKDIR}" - -PATCHES=( - "${FILESDIR}"/${PN}-3.1.8-more-deny.patch - "${FILESDIR}"/${PN}-3.1.14-Makefile.patch - # fix parallel make issues, bug #244884 - "${FILESDIR}"/${PN}-3.1.10.2-Makefile.in-parallel-make-fix.patch - "${FILESDIR}"/${PN}-3.1.13-configure.in-fix-PAM-automagick-dep.patch - # Fix parallel make issue (bug #408375) - "${FILESDIR}"/${PN}-3.1.13-parallel-make-fix.patch - "${FILESDIR}"/${PN}-3.1.13-getloadavg.patch -) - -pkg_setup() { - enewgroup at 25 - enewuser at 25 -1 /var/spool/at/atjobs at -} - -src_prepare() { - default - eautoconf -} - -src_configure() { - local myconf=() - use pam || my_conf+=( --without-pam ) - use selinux && my_conf+=( --with-selinux ) - econf \ - --sysconfdir=/etc/at \ - --with-jobdir=/var/spool/at/atjobs \ - --with-atspool=/var/spool/at/atspool \ - --with-etcdir=/etc/at \ - --with-daemon_username=at \ - --with-daemon_groupname=at \ - ${my_conf[@]} -} - -src_install() { - emake install IROOT="${D}" - - newinitd "${FILESDIR}"/atd.rc8 atd - newconfd "${FILESDIR}"/atd.confd atd - newpamd "${FILESDIR}"/at.pamd-3.1.13-r1 atd - - # Preserve existing .SEQ files (bug #386625) - local seq_file="${ROOT}/var/spool/at/atjobs/.SEQ" - if [ -f "${seq_file}" ] ; then - einfo "Preserving existing .SEQ file (bug #386625)." - cp -p "${seq_file}" "${D}"/var/spool/at/atjobs/ || die - fi - - systemd_dounit "${FILESDIR}/atd.service" -} - -pkg_postinst() { - einfo "Forcing correct permissions on /var/spool/at" - local atspooldir="${ROOT}/var/spool/at" - chown at:at "${atspooldir}/atjobs" - chmod 1770 "${atspooldir}/atjobs" - chown at:at "${atspooldir}/atjobs/.SEQ" - chmod 0600 "${atspooldir}/atjobs/.SEQ" - chown at:at "${atspooldir}/atspool" - chmod 1770 "${atspooldir}/atspool" -} |