public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mikle Kolyada" <zlogene@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/cvm/
Date: Thu, 26 Jul 2018 01:46:42 +0000 (UTC)	[thread overview]
Message-ID: <1532569584.4864903fbe09a0db76f2e12adf4636a6f3ab6ddf.zlogene@gentoo> (raw)

commit:     4864903fbe09a0db76f2e12adf4636a6f3ab6ddf
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 26 01:46:24 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Jul 26 01:46:24 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4864903f

net-libs/cvm: Drop old (EAPI=2)

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-libs/cvm/Manifest        |   1 -
 net-libs/cvm/cvm-0.82.ebuild | 103 -------------------------------------------
 2 files changed, 104 deletions(-)

diff --git a/net-libs/cvm/Manifest b/net-libs/cvm/Manifest
index 16e7b06de0f..20d601ec49f 100644
--- a/net-libs/cvm/Manifest
+++ b/net-libs/cvm/Manifest
@@ -1,3 +1,2 @@
 DIST cvm-0.76.tar.gz 91957 BLAKE2B 4b1ff780fa0842f2dba7afafe98479b76b95c3dc71ea3fe0321c92039697fde1fa69a99ee78450cadae6b23941344c48f4d4c845f9c3fcc8a69a5f8f208fbee6 SHA512 f3634be766e1381a95c09514547679f458e92b5f4de468b5d3b4e5f7e8f1eb8d1aa7eb5e2b15a374cbf51cc5f6e6269e7f5e7d9daf8d2adfaed37d2e11f472fa
-DIST cvm-0.82.tar.gz 93615 BLAKE2B 0d2dd8d19fed2587806bcbb314241c7d9c2ea9d17e09f7201a516667861c5b8652d460a60b9546dfb2d99e579d315e9e2115440beb7b690cfa209eb2300327cb SHA512 a9d94d993f91395a3a1c5dd16570ddf05d725b799754d4fd7d76959774fabc6f73356dbcd61a4ff28cca8551bd7d7c55249009da5d801a0d883e63aaf778c013
 DIST cvm-0.96.tar.gz 127999 BLAKE2B bf6a0f26538f4f10dafe9d021e6f3ef22ee57230f64cf50cba95be3cb5ddf54a0479d033936d26ee9526745ead61fc6af7bfd1fdc3da10a6915108b2d873772c SHA512 23adf39571bf414fa61084ac824a54b3cb37ef32a46c72ad50734743fb66bb923168eb866d72fba7f88397b37831e2ce7603c7d543996b28761ed1d5b053d73d

diff --git a/net-libs/cvm/cvm-0.82.ebuild b/net-libs/cvm/cvm-0.82.ebuild
deleted file mode 100644
index 089b8e086f7..00000000000
--- a/net-libs/cvm/cvm-0.82.ebuild
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-
-inherit toolchain-funcs eutils
-
-DESCRIPTION="Credential Validation Modules by Bruce Guenter"
-HOMEPAGE="http://untroubled.org/cvm/"
-SRC_URI="${HOMEPAGE}archive/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~ppc ~sparc ~x86 ~amd64"
-IUSE="mysql postgres test vpopmail"
-
-RDEPEND="dev-db/cdb"
-DEPEND="${RDEPEND}
-		>=dev-libs/bglibs-1.041
-		mysql? ( virtual/mysql )
-		postgres? ( dev-db/postgresql[server] )
-		vpopmail? ( net-mail/vpopmail )
-		test? ( app-editors/vim )"
-# some of the testcases use ex/vi/xxd
-
-src_unpack() {
-	unpack ${A}
-	# disable this test, as it breaks under Portage
-	# and there is no easy fix
-	sed -i.orig \
-		-e '/qmail-lookup-nodomain/,/^END_OF_TEST_RESULTS/d' \
-		"${S}"/tests.sh || die "sed failed"
-	# Fix the vpopmail build
-	sed -i.orig \
-		-e '/.\/ltload cvm-vchkpw/s,-lmysqlclient,,g' \
-		-e '/.\/ltload cvm-vchkpw/s,-L/usr/local/vpopmail/lib,,g' \
-		-e '/.\/ltload cvm-vchkpw/s,-L/var/vpopmail/lib,,g' \
-		-e '/.\/ltload cvm-vchkpw/s,-L/usr/local/lib/mysql,,g' \
-		-e '/.\/ltload cvm-vchkpw/s,\.la,.la `cat /var/vpopmail/etc/lib_deps`,g' \
-		"${S}"/Makefile \
-		|| die "Failed to fix vpopmail linking parts of Makefile"
-	sed -i.orig \
-		-e '/.\/compile cvm-vchkpw/s,$, `cat /var/vpopmail/etc/inc_deps`,g' \
-		"${S}"/Makefile \
-		|| die "Failed to fix vpopmail compiling parts of Makefile"
-}
-
-src_compile() {
-	echo "/usr/include/bglibs" > conf-bgincs
-	echo "/usr/lib/bglibs" > conf-bglibs
-	echo "/usr/include" > conf-include
-	echo "/usr/lib" > conf-lib
-	echo "/usr/bin" > conf-bin
-	echo "$(tc-getCC) ${CFLAGS}" > conf-cc
-	echo "$(tc-getCC) ${LDFLAGS} -lcrypt" > conf-ld
-	emake || die
-
-	if use mysql; then
-		einfo "Building MySQL support"
-		emake mysql || die "making mysql support failed"
-	fi
-
-	if use postgres; then
-		einfo "Building Postgresql support"
-		emake pgsql || die "making postgres support failed"
-	fi
-
-	if use vpopmail; then
-		einfo "Building vpopmail support"
-		emake cvm-vchkpw || die "making vpopmail support failed"
-	fi
-}
-
-src_install() {
-	# Upstreams installer is incredibly broken
-	dolib .libs/*.a .libs/*.so.*
-	for i in a so ; do
-		dosym libcvm-v2client.${i} /usr/$(get_libdir)/libcvm-client.${i}
-	done
-
-	for i in {bench,test}client chain checkpassword pwfile qmail unix \
-			vmailmgr{,-local,-udp} v1{benchclient,checkpassword,testclient} \
-			; do
-			dobin .libs/cvm-${i}
-	done
-	use mysql && dobin .libs/cvm-mysql{,-local,-udp}
-	use postgres && dobin .libs/cvm-pgsql{,-local,-udp}
-	use vpopmail && dobin .libs/cvm-vchkpw
-
-	insinto /usr/include/cvm
-	doins {credentials,errors,facts,module,protocol,sasl,v1client,v2client}.h
-	dosym v1client.h /usr/include/cvm/client.h
-	dosym cvm/sasl.h /usr/include/cvm-sasl.h
-
-	dodoc ANNOUNCEMENT NEWS{,.sql,.vmailmgr}
-	dodoc README{,.vchkpw,.vmailmgr}
-	dodoc TODO VERSION ChangeLog*
-	dohtml *.html
-}
-
-src_test() {
-	sh tests.sh || die "Testing Failed"
-}


             reply	other threads:[~2018-07-26  1:46 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-26  1:46 Mikle Kolyada [this message]
  -- strict thread matches above, loose matches on Subject: below --
2019-02-15 13:56 [gentoo-commits] repo/gentoo:master commit in: net-libs/cvm/ Brian Evans
2019-04-28  7:42 Sergei Trofimovich
2019-05-17 17:41 Stefan Strogin
2019-09-27 14:59 Michał Górny
2019-10-03  8:12 Agostino Sarubbo
2019-10-04 14:11 Ulrich Müller
2020-04-08 10:58 Agostino Sarubbo
2022-03-03 21:45 Sam James
2022-10-08 12:17 Sam James
2022-10-08 12:17 Sam James
2023-06-23 18:07 Matt Turner

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=1532569584.4864903fbe09a0db76f2e12adf4636a6f3ab6ddf.zlogene@gentoo \
    --to=zlogene@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