commit:     6aa719e0df6ce6201e08d9b9fd62fc2113b4e4b0
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Apr  9 14:09:19 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Apr  9 14:10:45 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6aa719e0

app-arch/star: Remove last-rited pkg

Closes: https://bugs.gentoo.org/679030
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-arch/star/Manifest             |   1 -
 app-arch/star/metadata.xml         |  11 ----
 app-arch/star/star-1.5.3-r1.ebuild | 109 -------------------------------------
 profiles/package.mask              |   9 ---
 4 files changed, 130 deletions(-)

diff --git a/app-arch/star/Manifest b/app-arch/star/Manifest
deleted file mode 100644
index d0784749c16..00000000000
--- a/app-arch/star/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST star-1.5.3.tar.bz2 889881 BLAKE2B 
d5d21a99d78c877d422bb6326ec0833d11c35dbe591ba1b892b267f811ae7f6108d9e34c14925b873a53b0f12c703f7c646012010d79d841e0e7be04a5c9dfed
 SHA512 
622032a0e87f3df06ab1091af0af99d0362f478f70351cfe3d47195eec0fcc96f458fb6e50cae3531183984b1d390b598176ce008bcc5f29764795f66436efef

diff --git a/app-arch/star/metadata.xml b/app-arch/star/metadata.xml
deleted file mode 100644
index 5e16a72b054..00000000000
--- a/app-arch/star/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-  <maintainer type="project">
-    <email>shell-to...@gentoo.org</email>
-    <name>Gentoo Shell Tools Project</name>
-  </maintainer>
-  <upstream>
-    <remote-id type="sourceforge">s-tar</remote-id>
-  </upstream>
-</pkgmetadata>

diff --git a/app-arch/star/star-1.5.3-r1.ebuild 
b/app-arch/star/star-1.5.3-r1.ebuild
deleted file mode 100644
index 480ce97a432..00000000000
--- a/app-arch/star/star-1.5.3-r1.ebuild
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="An enhanced (world's fastest) tar, as well as enhanced mt/rmt"
-HOMEPAGE="http://s-tar.sourceforge.net/";
-SRC_URI="mirror://sourceforge/s-tar/${P}.tar.bz2"
-
-LICENSE="GPL-2 LGPL-2.1 CDDL-Schily"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos"
-IUSE="acl xattr"
-
-DEPEND="
-       sys-libs/libcap
-       acl? ( sys-apps/acl )
-       xattr? ( sys-apps/attr )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${P/_alpha[0-9][0-9]}"
-
-src_prepare() {
-       default
-
-       find -type f -exec chmod -c u+w '{}' + || die
-       sed \
-               -e "s:/opt/schily:${EPREFIX}/usr:g" \
-               -e 's:bin:root:g' \
-               -e "s:/usr/src/linux/include:${EPREFIX}/usr/include:" \
-               -i DEFAULTS/Defaults.linux || die
-
-       # Disable libacl autodependency (hacky build system, hacky fix...)
-       if use acl; then
-               sed \
-                       -e 's:[$]ac_cv_header_sys_acl_h:disable acl:' \
-                       -i autoconf/configure || die
-       fi
-
-       if use xattr; then
-               sed \
-                       -e 's:[$]ac_cv_header_attr_xattr_h:disable xattr:' \
-                       -i autoconf/configure || die
-       fi
-
-       # "echo -n" is not POSIX compliant
-       sed \
-               -e 's@echo $ac_n@printf@' \
-               -e '/printf/s@$ac_c@@g' \
-               -i autoconf/configure || die
-
-       # Create additional symlinks needed for some archs.
-       pushd "${S}/RULES" > /dev/null
-       local t
-       for t in ppc64 s390x ; do
-               ln -s i586-linux-cc.rul ${t}-linux-cc.rul || die
-               ln -s i586-linux-gcc.rul ${t}-linux-gcc.rul || die
-       done
-       popd > /dev/null
-}
-
-src_configure() { :; } #avoid ./configure run
-
-src_compile() {
-       emake \
-               GMAKE_NOWARN="true" \
-               CC="$(tc-getCC)" \
-               COPTX="${CFLAGS}" \
-               CPPOPTX="${CPPFLAGS}" \
-               COPTGPROF= \
-               COPTOPT= \
-               LDOPTX="${LDFLAGS}"
-}
-
-src_install() {
-       # Joerg Schilling suggested to integrate star into the main OS using 
call:
-       # make INS_BASE=/usr DESTDIR="${D}" install
-
-       dobin \
-               star/OBJ/*-*-cc/star \
-               tartest/OBJ/*-*-cc/tartest \
-               star_sym/OBJ/*-*-cc/star_sym \
-               mt/OBJ/*-*-cc/smt
-
-       newsbin rmt/OBJ/*-*-cc/rmt rmt.star
-       newman rmt/rmt.1 rmt.star.1
-
-       # Note that we should never install gnutar, tar or rmt in this package.
-       # tar and rmt are provided by app-arch/tar. gnutar is not compatible 
with
-       # GNU tar and breakes compilation, or init scripts. bug #33119
-       dosym {star,/usr/bin/ustar}
-       dosym {star,/usr/bin/spax}
-       dosym {star,/usr/bin/scpio}
-       dosym {star,/usr/bin/suntar}
-
-       #  match is needed to understand the pattern matcher, if you wondered 
why ;)
-       doman man/man1/match.1 tartest/tartest.1 \
-               star/{star.4,star.1,spax.1,scpio.1,suntar.1}
-
-       insinto /etc/default
-       newins star/star.dfl star
-       newins rmt/rmt.dfl rmt
-
-       dodoc star/{README.ACL,README.crash,README.largefiles,README.otherbugs} 
\
-               
star/{README.pattern,README.pax,README.posix-2001,README,STARvsGNUTAR} \
-                       rmt/default-rmt.sample TODO AN-* Changelog CONTRIBUTING
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index e38fc24709f..f73b0e272d9 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -665,15 +665,6 @@ dev-ruby/trollop:0
 # Merged in pytest, no revdep. Removal in 30 days. Bug #668746
 dev-python/pytest-capturelog
 
-# Michał Górny <mgo...@gentoo.org> (09 Mar 2019)
-# According to bug #678914, our version is over 5 years old.  It has
-# open bugs (#671742, #671990) and is non-trivial to bump due to being
-# merged into schily-tools (#672060).  It lacks dedicated maintainer
-# interested in doing that.  app-arch/tar (GPL) and app-arch/libarchive
-# (BSD) are good replacements for modern uses.
-# Removal in 30 days.  Bug #679030.
-app-arch/star
-
 # Eray Aslan <e...@gentoo.org> (01 Mar 2019)
 # Mask experimental software
 =mail-mta/postfix-3.5*

Reply via email to