Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/liblockfile/
Date: Sun, 09 Feb 2020 12:02:29
Message-Id: 1581249681.6292dc144149c596d99829ac2f346b4ee3ca8adc.zlogene@gentoo
1 commit: 6292dc144149c596d99829ac2f346b4ee3ca8adc
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 9 12:01:21 2020 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 9 12:01:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6292dc14
7
8 net-libs/liblockfile: Drop old
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 net-libs/liblockfile/Manifest | 1 -
14 net-libs/liblockfile/liblockfile-1.09.ebuild | 47 ----------------------------
15 2 files changed, 48 deletions(-)
16
17 diff --git a/net-libs/liblockfile/Manifest b/net-libs/liblockfile/Manifest
18 index 359b33c2dd2..25f238e989c 100644
19 --- a/net-libs/liblockfile/Manifest
20 +++ b/net-libs/liblockfile/Manifest
21 @@ -1,2 +1 @@
22 DIST liblockfile-1.16.tar.gz 68591 BLAKE2B f41df23ee405425265dbf5ca66dacf8e5dac84f40c16d192f1afbb40399f2a68bb92f5e24bbf0d2fb7fc143a92f8fa2713ebccbab70ceb9e67d9c7ae21f42802 SHA512 ee75ecf0dd25744de4e3ce7d6b12483ead2deaf0cd6a527e8493100c5d714751fe97e057873c8c7b04a935f9b46a5ea502950f15d3ce54ecc63d997ab1cee33d
23 -DIST liblockfile_1.09.orig.tar.gz 32178 BLAKE2B b78f632e3bf1ed926596abf9fb0450cc325f888ba245d724f6c02800d939f2d5933b0f90bac92d543cdc5ee6b27f8c4fb70901742e83e8d5becbdbc60e20e5b3 SHA512 8577f8bfa9c78983d6a409bc449be0d981e599a6a5f2fc8b43f76a238810ec5e3c180e27280719398f31041ed837fe8ba61df208ce77db77a354453e4579848a
24
25 diff --git a/net-libs/liblockfile/liblockfile-1.09.ebuild b/net-libs/liblockfile/liblockfile-1.09.ebuild
26 deleted file mode 100644
27 index eeb84dd9633..00000000000
28 --- a/net-libs/liblockfile/liblockfile-1.09.ebuild
29 +++ /dev/null
30 @@ -1,47 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=4
35 -
36 -inherit eutils multilib autotools user
37 -
38 -DESCRIPTION="Implements functions designed to lock the standard mailboxes"
39 -HOMEPAGE="http://www.debian.org/"
40 -SRC_URI="mirror://debian/pool/main/libl/${PN}/${PN}_${PV}.orig.tar.gz"
41 -
42 -LICENSE="LGPL-2"
43 -SLOT="0"
44 -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
45 -IUSE=""
46 -
47 -pkg_setup() {
48 - enewgroup mail 12
49 -}
50 -
51 -src_prepare() {
52 - epatch "${FILESDIR}"/${PN}-1.06-respectflags.patch
53 - epatch "${FILESDIR}"/${PN}-orphan-file.patch
54 -
55 - # I don't feel like making the Makefile portable
56 - [[ ${CHOST} == *-darwin* ]] \
57 - && cp "${FILESDIR}"/Makefile.Darwin.in Makefile.in
58 -
59 - eautoreconf
60 -}
61 -
62 -src_configure() {
63 - local grp=mail
64 - if use prefix ; then
65 - # we never want to use LDCONFIG
66 - export LDCONFIG=${EPREFIX}/bin/true
67 - # in unprivileged installs this is "mail"
68 - grp=$(id -g)
69 - fi
70 - econf --with-mailgroup=${grp} --enable-shared
71 -}
72 -
73 -src_install() {
74 - dodir /usr/{bin,include,$(get_libdir)} /usr/share/man/{man1,man3}
75 - emake ROOT="${D}" install
76 - dodoc README Changelog
77 -}