Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmail/files/, dev-libs/libmail/, profiles/
Date: Sat, 12 Oct 2019 08:16:44
Message-Id: 1570868102.bc617305898e8f3de595eb98279c07038d9f96c6.mgorny@gentoo
1 commit: bc617305898e8f3de595eb98279c07038d9f96c6
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 12 08:15:02 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 12 08:15:02 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc617305
7
8 dev-libs/libmail: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/694192
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 dev-libs/libmail/Manifest | 1 -
14 .../libmail/files/libmail-0.3-respect-cflags.patch | 37 ---------------
15 dev-libs/libmail/libmail-0.3-r3.ebuild | 53 ----------------------
16 dev-libs/libmail/metadata.xml | 11 -----
17 profiles/package.mask | 5 --
18 5 files changed, 107 deletions(-)
19
20 diff --git a/dev-libs/libmail/Manifest b/dev-libs/libmail/Manifest
21 deleted file mode 100644
22 index 05dae1d6511..00000000000
23 --- a/dev-libs/libmail/Manifest
24 +++ /dev/null
25 @@ -1 +0,0 @@
26 -DIST libmail-0.3.tar.bz2 271946 BLAKE2B f03b5a07bb78423bc37111448e0b0b812d51172210a555a1cc8279ce66f62ea5033954bb37c01d6d225d53bab4996366ae803fab9a96ef97a841cbd88896454e SHA512 df4e0e549867f7cf73db8c965a28c14e3e089e54a8272b70be8b00c896dcd91d68625e2287a15d353eff75ec05e702e6d113f8122ed0e9d294766fe4f467e9d3
27
28 diff --git a/dev-libs/libmail/files/libmail-0.3-respect-cflags.patch b/dev-libs/libmail/files/libmail-0.3-respect-cflags.patch
29 deleted file mode 100644
30 index 7e22de4c757..00000000000
31 --- a/dev-libs/libmail/files/libmail-0.3-respect-cflags.patch
32 +++ /dev/null
33 @@ -1,37 +0,0 @@
34 ---- configure.ac.orig 2013-01-31 16:18:06.537834009 +0400
35 -+++ configure.ac 2013-01-31 16:19:00.138835711 +0400
36 -@@ -12,7 +12,7 @@
37 - AC_PROG_MAKE_SET
38 - AC_PROG_LIBTOOL
39 -
40 --CFLAGS="-D_GNU_SOURCE -Wall -Wunused -Wstrict-prototypes"
41 -+CFLAGS="-D_GNU_SOURCE -Wall -Wunused -Wstrict-prototypes ${CFLAGS}"
42 -
43 - use_sasl=false
44 - use_apop=false
45 -@@ -99,7 +99,6 @@
46 - ;;
47 - yes)
48 - AC_DEFINE(NDEBUG, [1], [Use debug functionality])
49 -- CFLAGS="$CFLAGS -g"
50 - optimize="no"
51 - ;;
52 - *)
53 -@@ -119,7 +118,6 @@
54 - ;;
55 - yes)
56 - AC_DEFINE(NDEBUG, [1], [Use debug functionality])
57 -- CFLAGS="$CFLAGS -pg -g"
58 - optimize="yes"
59 - ;;
60 - *)
61 -@@ -127,9 +125,6 @@
62 - ;;
63 - esac
64 - ])
65 --if test $optimize = "yes"; then
66 -- CFLAGS="$CFLAGS -O2"
67 --fi
68 - AM_CONDITIONAL([LIBMAIL_USE_SASL], [test x$use_sasl = xtrue])
69 - AM_CONDITIONAL([LIBMAIL_USE_APOP], [test x$use_apop = xtrue])
70 - AM_CONDITIONAL([LIBMAIL_USE_TLS], [test x$use_tls = xtrue])
71
72 diff --git a/dev-libs/libmail/libmail-0.3-r3.ebuild b/dev-libs/libmail/libmail-0.3-r3.ebuild
73 deleted file mode 100644
74 index c20fa7c5a90..00000000000
75 --- a/dev-libs/libmail/libmail-0.3-r3.ebuild
76 +++ /dev/null
77 @@ -1,53 +0,0 @@
78 -# Copyright 1999-2013 Gentoo Foundation
79 -# Distributed under the terms of the GNU General Public License v2
80 -
81 -EAPI=5
82 -
83 -AUTOTOOLS_IN_SOURCE_BUILD=1
84 -AUTOTOOLS_AUTORECONF=1
85 -inherit autotools-utils
86 -
87 -DESCRIPTION="A mail handling library"
88 -HOMEPAGE="http://libmail.sourceforge.net"
89 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
90 -
91 -LICENSE="GPL-3"
92 -SLOT="0"
93 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
94 -IUSE="apop debug gnutls profile sasl static-libs"
95 -
96 -DEPEND="gnutls? ( >=net-libs/gnutls-2 )
97 - sasl? ( >=dev-libs/cyrus-sasl-2 )"
98 -RDEPEND="${DEPEND}"
99 -
100 -DOCS=( AUTHORS ChangeLog NEWS README TODO )
101 -
102 -# Do not unset user's CFLAGS, bug #454558
103 -PATCHES=( "${FILESDIR}/${P}-respect-cflags.patch" )
104 -
105 -src_prepare() {
106 - # Drop quotes from ACLOCAL_AMFLAGS otherwise aclocal will fail
107 - # see 447760
108 - sed -i -e "/ACLOCAL_AMFLAGS/s:\"::g" Makefile.am || die
109 - autotools-utils_src_prepare
110 -}
111 -
112 -src_configure() {
113 - local myeconfargs=(
114 - $(use_enable apop)
115 - $(use_enable debug)
116 - $(use_enable gnutls tls)
117 - $(use_enable profile)
118 - $(use_enable sasl)
119 - )
120 - autotools-utils_src_configure
121 -}
122 -
123 -src_install() {
124 - autotools-utils_src_install
125 -
126 - # headers, that are wrongly skipped from installing
127 - insinto /usr/include/libmail
128 - doins libmail/libmail_intl.h
129 - doins config.h
130 -}
131
132 diff --git a/dev-libs/libmail/metadata.xml b/dev-libs/libmail/metadata.xml
133 deleted file mode 100644
134 index b77b86fc480..00000000000
135 --- a/dev-libs/libmail/metadata.xml
136 +++ /dev/null
137 @@ -1,11 +0,0 @@
138 -<?xml version="1.0" encoding="UTF-8"?>
139 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
140 -<pkgmetadata>
141 - <!-- maintainer-needed -->
142 - <use>
143 - <flag name="apop">Enables the APOP authentication method</flag>
144 - </use>
145 - <upstream>
146 - <remote-id type="sourceforge">libmail</remote-id>
147 - </upstream>
148 -</pkgmetadata>
149
150 diff --git a/profiles/package.mask b/profiles/package.mask
151 index 0636d2208b4..7cc08b4b720 100644
152 --- a/profiles/package.mask
153 +++ b/profiles/package.mask
154 @@ -683,11 +683,6 @@ dev-libs/libntru
155 # Removal in 30 days. Bug #694196.
156 dev-libs/libmongo-client
157
158 -# Michał Górny <mgorny@g.o> (2019-09-12)
159 -# Unmaintained. Last release in 2009. No reverse dependencies.
160 -# Removal in 30 days. Bug #694192.
161 -dev-libs/libmail
162 -
163 # Lars Wendler <polynomial-c@g.o> (2019-09-04)
164 # Unofficial build. Superseded by official 2.49.5 release.
165 # Masked for removal.