public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/ezmlm-idx/
Date: Sat, 12 Oct 2019 07:01:44 +0000 (UTC)	[thread overview]
Message-ID: <1570863672.bb4179843d43833cf2c7a1e06932c8a67e5902cd.mgorny@gentoo> (raw)

commit:     bb4179843d43833cf2c7a1e06932c8a67e5902cd
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 12 07:01:12 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Oct 12 07:01:12 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb417984

net-mail/ezmlm-idx: Drop old (EAPI 0)

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-mail/ezmlm-idx/Manifest               |  2 -
 net-mail/ezmlm-idx/ezmlm-idx-6.0.0.ebuild | 78 -------------------------------
 2 files changed, 80 deletions(-)

diff --git a/net-mail/ezmlm-idx/Manifest b/net-mail/ezmlm-idx/Manifest
index 81e834d823c..0f8c7e98d57 100644
--- a/net-mail/ezmlm-idx/Manifest
+++ b/net-mail/ezmlm-idx/Manifest
@@ -1,3 +1 @@
-DIST ezmlm-0.53.tar.gz 62693 BLAKE2B f417522da8d2b3ae7d0465e7226cd95dc85b55a397b61a6ce20df15544639377667a8912f7a26daf83e54fd3f26881c4e771409c98a640b7b94c7b6e3fef7461 SHA512 0dc1c64168428c531dbf78ca99582de4d4193d10bb38e87d3ee8f33f78083dc696bfd0681e3f2f690d7aa78b55b1b91c4ea6900c109406063445104826ff6d94
-DIST ezmlm-idx-6.0.0.tar.gz 659996 BLAKE2B bf5f7ac0a40d1167d42ef26c4b28f95899f5a72d4c969c975368f61902f5ce9b5721143c251cdcb70c58149e6d7eb28c834b26426d9611b4249a285b523c38d8 SHA512 547186a2e32f3861ef51a9012442e7d8b553d90f2af949bb51845c29178ee2a44760471852c7c23fbd241c14753f22357463c5d5f10b70eceb05603cc6d83d4a
 DIST ezmlm-idx-7.0.0.tar.gz 689019 BLAKE2B 22c66a4a2fcc6c0c754061ff0d93bde8fd192266112da0516e936278610288dc11d44d1959cd135a90eacb4befa43d62f53b3bedb94e994afc13aed986834bce SHA512 c0fc35aef4a72aefa4cdaee4c1933cc00aab82ee81ad7577793952fbf57106c06e4a5844a2bbf3919ad2985d2062ba1edf8831e6aa66d7e762210e7e147210ef

diff --git a/net-mail/ezmlm-idx/ezmlm-idx-6.0.0.ebuild b/net-mail/ezmlm-idx/ezmlm-idx-6.0.0.ebuild
deleted file mode 100644
index 155478ffaeb..00000000000
--- a/net-mail/ezmlm-idx/ezmlm-idx-6.0.0.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-EZMLM_P=ezmlm-0.53
-
-inherit eutils fixheadtails
-
-DESCRIPTION="Simple yet powerful mailing list manager for qmail"
-HOMEPAGE="http://www.ezmlm.org"
-SRC_URI="http://cr.yp.to/software/${EZMLM_P}.tar.gz
-	http://www.ezmlm.org/archive/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~mips ppc sparc x86"
-IUSE="mysql postgres"
-
-DEPEND="
-	mysql? ( virtual/mysql )
-	postgres? ( dev-db/postgresql )
-"
-RDEPEND="${DEPEND}
-	virtual/qmail"
-
-S="${WORKDIR}"/${EZMLM_P}
-
-pkg_setup() {
-	if use mysql && use postgres; then
-		die "cannot build mysql and pgsql support at the same time"
-	fi
-}
-
-src_unpack() {
-	unpack ${A}
-	mv "${WORKDIR}"/${P}/* "${S}" || die
-	cd "${S}"
-
-	epatch "${S}"/idx.patch
-
-	ht_fix_file Makefile
-
-	echo /usr/bin > conf-bin
-	echo /usr/lib/ezmlm > conf-lib
-	echo /etc/ezmlm > conf-etc
-	echo /usr/share/man > conf-man
-	echo /var/qmail > conf-qmail
-
-	echo $(tc-getCC) ${CFLAGS} -I/usr/include/{my,postgre}sql > conf-cc
-	echo $(tc-getCC) ${CFLAGS} > conf-ld
-
-	# fix DESTDIR and skip cat man-pages
-	sed -e "s:\(/install\) \(\"\`head\):\1 ${D}\2:" \
-		-e "s:\(./install.*\) < MAN$:grep -v \:/cat MAN | \1:" \
-		-e "s:\(\"\`head -n 1 conf-etc\`\"/default\):${D}\1:" \
-		-i Makefile
-
-	# ezmlm-mktab-{my|pg}sql may or may not be made
-	sed -i -e "s/\(^.*mktab\)/?\1/" BIN
-}
-
-src_compile() {
-	emake it man || die "make failed"
-
-	if use mysql; then
-		emake mysql || die "make mysql failed"
-	elif use postgres; then
-		emake pgsql || die "make pgsql failed"
-	fi
-}
-
-src_install () {
-	dodir /usr/bin /usr/lib/ezmlm /etc/ezmlm /usr/share/man
-	dobin ezmlm-cgi
-
-	make DESTDIR="${D}" setup || die "make setup failed"
-}


             reply	other threads:[~2019-10-12  7:01 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-12  7:01 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-06-23 18:07 [gentoo-commits] repo/gentoo:master commit in: net-mail/ezmlm-idx/ Matt Turner
2022-11-05 17:11 Agostino Sarubbo
2022-11-05  4:42 Sam James
2022-11-05  2:38 Sam James
2022-11-04 20:23 Arthur Zamarin
2022-10-08 12:17 Sam James
2021-05-31 17:43 Sergei Trofimovich
2021-01-21  1:05 Sam James
2021-01-20  9:30 Sam James
2021-01-20  9:29 Sam James
2021-01-20  9:28 Sam James
2021-01-20  0:52 Sam James
2021-01-05 11:48 Stephan Hartmann
2019-10-12  4:30 Matt Turner
2019-10-11 22:32 Sergei Trofimovich
2019-10-07 19:22 Sergei Trofimovich
2019-10-07 10:44 Agostino Sarubbo
2019-10-07  8:59 Agostino Sarubbo
2019-02-18 20:49 Brian Evans
2018-06-03  2:59 Aaron Bauman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1570863672.bb4179843d43833cf2c7a1e06932c8a67e5902cd.mgorny@gentoo \
    --to=mgorny@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox