public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-util/cmt/files/, profiles/, dev-util/cmt/
@ 2020-01-14 16:23 Michał Górny
  0 siblings, 0 replies; only message in thread
From: Michał Górny @ 2020-01-14 16:23 UTC (permalink / raw
  To: gentoo-commits

commit:     f7c34ef001441c7a974d3382cb2833d7a97e99ef
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 14 16:20:52 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jan 14 16:20:52 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7c34ef0

dev-util/cmt: Remove last-rited pkg

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

 dev-util/cmt/Manifest                              |  2 -
 dev-util/cmt/cmt-1.26.ebuild                       | 90 ----------------------
 dev-util/cmt/cmt-1.26_p20160527.ebuild             | 90 ----------------------
 dev-util/cmt/files/80cmt-mode-gentoo.el            |  6 --
 .../cmt/files/cmt-1.26_p20160527-ldflags.patch     | 29 -------
 dev-util/cmt/metadata.xml                          | 16 ----
 profiles/package.mask                              |  5 --
 7 files changed, 238 deletions(-)

diff --git a/dev-util/cmt/Manifest b/dev-util/cmt/Manifest
deleted file mode 100644
index 2dd414d47b2..00000000000
--- a/dev-util/cmt/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST CMTv1r26.tar.gz 2194291 BLAKE2B 9c45cc5440fd8698c06343a1c5c0f26b9047c885bb93678cf15ec42b15951d055d45511b221642c756c447709e7ace480fff4ad88f8185ee5390f227d4f2ded8 SHA512 412366dbf4aaef9f092f9472792e314c6d8f3e0360ddfa6d135e2bea9a167b627ddc78ad5a2d4f5139b4835abb68c06166abf3204bf5ba3969089923782e817e
-DIST CMTv1r26p20160527.tar.gz 2221004 BLAKE2B f9a57fcba7982e9d2f4c04f0c7f8f541a4b16a1555b95d0bad98cc1cd0cc5df7cbf7a6be37442c849451a78770749040ec001f16a53340e0cd3bcb68c3f6aa2d SHA512 36b3f020973d2ec518c25c589fdd981abd594cc8f7651c6636d72d5f6fed3fe6c8ba6128690533a9ab748abfbdc9b47d1b2289c99686031a8cc7fe9a43b68a6e

diff --git a/dev-util/cmt/cmt-1.26.ebuild b/dev-util/cmt/cmt-1.26.ebuild
deleted file mode 100644
index af23fde137e..00000000000
--- a/dev-util/cmt/cmt-1.26.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils elisp-common multilib toolchain-funcs versionator
-
-CPV=($(get_version_components ${PV}))
-CMT_PV=v${CPV[0]}r${CPV[1]}
-
-DESCRIPTION="Cross platform configuration management environment"
-HOMEPAGE="http://www.cmtsite.net/"
-SRC_URI="http://www.cmtsite.net/${CMT_PV}/CMT${CMT_PV}.tar.gz"
-
-LICENSE="CeCILL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="emacs java doc"
-
-DEPEND="emacs? ( >=app-editors/emacs-23.1:* )"
-RDEPEND="${DEPEND}
-	java? ( virtual/jdk )"
-
-S="${WORKDIR}/CMT/${CMT_PV}"
-
-src_configure() {
-	cd "${S}"/mgr || die
-	./INSTALL || die
-	source setup.sh
-}
-
-src_compile() {
-	cd "${S}"/mgr || die
-	emake \
-		cpp="$(tc-getCXX)" \
-		cppflags="${CXXFLAGS}" \
-		cpplink="$(tc-getCXX) ${LDFLAGS}"
-
-	sed -i -e "s:${WORKDIR}:${EPREFIX}/usr/$(get_libdir):g" setup.*sh || die
-	cd "${S}" || die
-	mv src/demo . || die
-	rm ${CMTBIN}/*.o || die
-
-	use emacs && elisp-compile doc/cmt-mode.el
-}
-
-src_install() {
-	CMTDIR=/usr/$(get_libdir)/CMT/${CMT_PV}
-	dodir ${CMTDIR}
-	cp -pPR mgr src ${CMTBIN} "${ED}"/${CMTDIR} || die
-	dodir /usr/bin
-	dosym ${CMTDIR}/${CMTBIN}/cmt.exe /usr/bin/cmt
-
-	cat > 99cmt <<-EOF
-		 CMTROOT="${EROOT%/}${CMTDIR}"
-		 CMTBIN="$(uname)-$(uname -m | sed -e 's# ##g')"
-		 CMTCONFIG="$(${CMTROOT}/mgr/cmt_system.sh)"
-	EOF
-	if use java; then
-		cp -pPR java "${ED}"/${CMTDIR}
-		echo "#!${EPREFIX}/bin/sh" > jcmt
-		echo "java cmt_parser" >> jcmt
-		dobin jcmt
-		echo "CLASSPATH=\"${CMTDIR}/java/cmt.jar\"" >> 99cmt
-	fi
-
-	doenvd 99cmt
-	dodoc ChangeLog doc/*.txt
-	dohtml doc/{ChangeLog,ReleaseNotes}.html
-
-	if use doc; then
-		emake -C mgr gendoc
-		insinto /usr/share/doc/${PF}
-		doins -r doc/{CMTDoc,CMTFAQ}.{html,pdf} doc/Images
-		doins -r demo
-	fi
-
-	if use emacs; then
-		elisp-install ${PN} doc/cmt-mode.{el,elc} || die
-		elisp-site-file-install "${FILESDIR}"/80cmt-mode-gentoo.el || die
-	fi
-}
-
-pkg_postinst () {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}

diff --git a/dev-util/cmt/cmt-1.26_p20160527.ebuild b/dev-util/cmt/cmt-1.26_p20160527.ebuild
deleted file mode 100644
index 74ca45f7a69..00000000000
--- a/dev-util/cmt/cmt-1.26_p20160527.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit eutils elisp-common multilib toolchain-funcs
-
-CMT_PV=v$(ver_rs 1 r 2 "")
-
-DESCRIPTION="Cross platform configuration management environment"
-HOMEPAGE="http://www.cmtsite.net/"
-SRC_URI="http://www.cmtsite.net/${CMT_PV}/CMT${CMT_PV}.tar.gz"
-
-LICENSE="CeCILL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="emacs java doc"
-
-DEPEND="emacs? ( >=app-editors/emacs-23.1:* )"
-RDEPEND="${DEPEND}
-	java? ( virtual/jdk )"
-
-S="${WORKDIR}/CMT/${CMT_PV}"
-
-PATCHES=( "${FILESDIR}"/${PN}-1.26_p20160527-ldflags.patch )
-
-src_configure() {
-	cd "${S}"/mgr || die
-	./INSTALL || die
-	source setup.sh
-}
-
-src_compile() {
-	cd "${S}"/mgr || die
-	emake \
-		cpp="$(tc-getCXX)" \
-		cppflags="${CXXFLAGS}" \
-		cpplink="$(tc-getCXX) ${LDFLAGS}"
-
-	sed -i -e "s:${WORKDIR}:${EPREFIX}/usr/$(get_libdir):g" setup.*sh || die
-	cd "${S}" || die
-	mv src/demo . || die
-	rm ${CMTBIN}/*.o || die
-
-	use emacs && elisp-compile doc/cmt-mode.el
-}
-
-src_install() {
-	CMTDIR=/usr/$(get_libdir)/CMT/${CMT_PV}
-	dodir ${CMTDIR}
-	cp -pPR mgr src ${CMTBIN} "${ED}"/${CMTDIR} || die
-	dodir /usr/bin
-	dosym ${CMTDIR}/${CMTBIN}/cmt.exe /usr/bin/cmt
-
-	cat > 99cmt <<-EOF
-		 CMTROOT="${EROOT%/}${CMTDIR}"
-		 CMTBIN="$(uname)-$(uname -m | sed -e 's# ##g')"
-		 CMTCONFIG="$(${CMTROOT}/mgr/cmt_system.sh)"
-	EOF
-	if use java; then
-		cp -pPR java "${ED}"/${CMTDIR}
-		echo "#!${EPREFIX}/bin/sh" > jcmt
-		echo "java cmt_parser" >> jcmt
-		dobin jcmt
-		echo "CLASSPATH=\"${CMTDIR}/java/cmt.jar\"" >> 99cmt
-	fi
-
-	doenvd 99cmt
-	dodoc ChangeLog doc/*.txt doc/{ChangeLog,ReleaseNotes}.html
-
-	if use doc; then
-		emake -C mgr gendoc
-		insinto /usr/share/doc/${PF}
-		doins -r doc/{CMTDoc,CMTFAQ}.{html,pdf} doc/Images
-		doins -r demo
-	fi
-
-	if use emacs; then
-		elisp-install ${PN} doc/cmt-mode.{el,elc} || die
-		elisp-site-file-install "${FILESDIR}"/80cmt-mode-gentoo.el || die
-	fi
-}
-
-pkg_postinst () {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}

diff --git a/dev-util/cmt/files/80cmt-mode-gentoo.el b/dev-util/cmt/files/80cmt-mode-gentoo.el
deleted file mode 100644
index 91be98ebc61..00000000000
--- a/dev-util/cmt/files/80cmt-mode-gentoo.el
+++ /dev/null
@@ -1,6 +0,0 @@
-
-;;; cmt site-lisp configuration
-
-(add-to-list 'load-path "@SITELISP@")
-(autoload 'cmt-mode "cmt-mode" "CMT requirements file editing mode." t)
-(add-to-list 'auto-mode-alist '("requirements\\'" . cmt-mode))

diff --git a/dev-util/cmt/files/cmt-1.26_p20160527-ldflags.patch b/dev-util/cmt/files/cmt-1.26_p20160527-ldflags.patch
deleted file mode 100644
index e2491724938..00000000000
--- a/dev-util/cmt/files/cmt-1.26_p20160527-ldflags.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- a/mgr/requirements	2014-01-06 22:40:25.000000000 +0800
-+++ b/mgr/requirements	2019-12-09 22:33:53.375723322 +0800
-@@ -157,7 +157,7 @@
- macro cdebugflags     "" \
-       debug           "$(debug_option)"
- 
--macro cflags          "" \
-+macro cflags          "${CFLAGS}" \
-       LynxOS-VGPW2    "-X" \
-       insure          "-std1" \
-       HP-UX           "+Z" \
-@@ -252,7 +252,7 @@
-       hp700_ux101     "-fpic" \
-       HP-UX           "+Z -Wc,-ansi_for_scope,on" \
-       hp_ux102        "-z +p -Wc,-ansi_for_scope,on +O2 +Onoinitcheck" \
--      Linux           "-pipe -ansi -pedantic -W -Wall -Wwrite-strings -Wpointer-arith -Woverloaded-virtual " \
-+      Linux           "${CXXFLAGS}" \
-       SunOS           "-KPIC" \
-       VisualC         '/nologo /DWIN32 /MD /W3 $(includes) /c /EHsc'
- 
-@@ -403,7 +403,7 @@
- macro shlibflags    "" \
-       HP-UX         "-Wl,-a,shared -b +Z -q -Wl,+s -Wl,+vallcompatwarnings" \
-       OSF1          "-shared -expect_unresolved '*'" \
--      Linux         "-shared" \
-+      Linux         "-shared ${LDFLAGS}" \
-       CYGWIN        "-shared" \
-       SunOS         "$(debug_option)" \
-       VisualC       "" \

diff --git a/dev-util/cmt/metadata.xml b/dev-util/cmt/metadata.xml
deleted file mode 100644
index f4702aff866..00000000000
--- a/dev-util/cmt/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <maintainer type="person">
-    <email>heroxbd@gentoo.org</email>
-  </maintainer>
-  <longdescription lang="en">
-  CMT is a configuration management environment, based on some
-  management conventions and comprises several shell-based
-  utilities. It is an attempt to formalize software production and
-  especially configuration management around a package-oriented
-  principle. Used in High Energy Physics large experiments, where
-  tailored packages are developped and they do not know the existence
-  of portage and overlays.
-</longdescription>
-</pkgmetadata>

diff --git a/profiles/package.mask b/profiles/package.mask
index 37d3edfd691..7257dce9830 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -681,11 +681,6 @@ dev-lang/opendylan
 dev-lang/opendylan-bin
 dev-libs/mps
 
-# Aaron Bauman <bman@gentoo.org> (2019-12-12)
-# Multiple QA issues and docs no longer build
-# Removal in 30 days
-dev-util/cmt
-
 # David Seifert <soap@gentoo.org> (2019-12-08)
 # Unmaintained, build hangs, tons of other build failures, missing
 # dependencies.  Bug #663794, #666916, #666922, #667062, #678068,


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-01-14 16:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-14 16:23 [gentoo-commits] repo/gentoo:master commit in: dev-util/cmt/files/, profiles/, dev-util/cmt/ Michał Górny

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox