commit:     247d0eb22713bbe872f44cb576cb0f17475553e9
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 18 15:06:41 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Apr 18 15:08:46 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=247d0eb2

net-misc/apt-proxy: Remove last-rited pkg

 net-misc/apt-proxy/Manifest                       |  1 -
 net-misc/apt-proxy/apt-proxy-1.3.0.ebuild         | 69 -----------------------
 net-misc/apt-proxy/files/apt-proxy                | 16 ------
 net-misc/apt-proxy/files/apt-proxy-1.3.0-sh.patch | 11 ----
 net-misc/apt-proxy/metadata.xml                   |  8 ---
 profiles/package.mask                             |  5 --
 6 files changed, 110 deletions(-)

diff --git a/net-misc/apt-proxy/Manifest b/net-misc/apt-proxy/Manifest
deleted file mode 100644
index 07bac235709..00000000000
--- a/net-misc/apt-proxy/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST apt-proxy_1.3.0.tar.gz 37951 SHA256 
12e5c5361ba3050a715f21c8191a1f52e255d179af10e3d110271651cb739ea9 SHA512 
300d4684e726f0ac6ece0cf9dfe5c805f187651d36a38530cdf125f730f6c261dc1edd7ac5c0f54d6396a6aa8e3f007fa70a4c90e96bf672dfe9081c9a5b36d0
 WHIRLPOOL 
407a76367657baca536e5b753ea5ff01b9571d34f1b1d37d163c4586c09bd6a99168754ab22937994677e445941252374800d50258d61e4e5341a2b5865e67d4

diff --git a/net-misc/apt-proxy/apt-proxy-1.3.0.ebuild 
b/net-misc/apt-proxy/apt-proxy-1.3.0.ebuild
deleted file mode 100644
index 1fd6f7f02cc..00000000000
--- a/net-misc/apt-proxy/apt-proxy-1.3.0.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils user
-
-DESCRIPTION="Caching proxy for the Debian package system"
-HOMEPAGE="https://sourceforge.net/projects/apt-proxy/";
-SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="sys-apps/xinetd"
-
-pkg_setup () {
-       enewgroup ${PN}
-       enewuser ${PN} -1 -1 /dev/null ${PN}
-}
-
-src_prepare() {
-       epatch "${FILESDIR}"/${P}-sh.patch
-}
-
-src_install() {
-       dosbin ${PN}
-
-       insinto /etc/${PN}
-       doins ${PN}.conf
-
-       insinto /etc/xinetd.d
-       doins "${FILESDIR}"/${PN}
-
-       dodoc README INSTALL HISTORY
-       doman ${PN}.{8,conf.5}
-
-       # Create the log file with the proper permissions
-       dodir /var/log
-       touch "${D}"/var/log/${PN}.log
-       fowners ${PN}:${PN} /var/log/${PN}.log
-
-       # Create the cache directories and set the proper permissions
-       dodir /var/cache/${PN}
-       keepdir /var/cache/${PN}
-       fowners ${PN}:${PN} /var/cache/${PN}
-}
-
-pkg_postinst() {
-       einfo ""
-       einfo "Don't forget to modify the /etc/${PN}/${PN}.conf"
-       einfo "file to fit your needs..."
-       einfo ""
-       einfo "Also note that ${PN} is called from running xinetd"
-       einfo "and you have to enable it first (/etc/xinetd.d/${PN})..."
-       einfo ""
-}
-
-pkg_postrm() {
-       einfo ""
-       einfo "You have to remove the ${PN} cache by hand. It's located"
-       einfo "in the \"/var/cache/${PN}\" dir..."
-       einfo ""
-       einfo "You can also remove the ${PN} user and group..."
-       einfo ""
-}

diff --git a/net-misc/apt-proxy/files/apt-proxy 
b/net-misc/apt-proxy/files/apt-proxy
deleted file mode 100644
index 6f10c66b6cf..00000000000
--- a/net-misc/apt-proxy/files/apt-proxy
+++ /dev/null
@@ -1,16 +0,0 @@
-# default: off
-# description: this is a proxy for debian packages.  
-
-service apt-proxy
-{
-       type            = UNLISTED
-       port            = 9999
-       protocol        = tcp
-       socket_type     = stream
-       only_from       = 0.0.0.0
-       wait            = no
-       user            = apt-proxy
-       server          = /usr/sbin/apt-proxy
-       server_args     = /var/log/apt-proxy.log
-       disable         = yes
-}

diff --git a/net-misc/apt-proxy/files/apt-proxy-1.3.0-sh.patch 
b/net-misc/apt-proxy/files/apt-proxy-1.3.0-sh.patch
deleted file mode 100644
index 9f6b97625af..00000000000
--- a/net-misc/apt-proxy/files/apt-proxy-1.3.0-sh.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- apt-proxy  2002-04-04 14:30:19.000000000 +0200
-+++ apt-proxy.new      2003-03-13 00:49:48.000000000 +0100
-@@ -1,5 +1,7 @@
--#!/bin/ash
-+#!/bin/sh
- # (You may safely change the above to /bin/sh if you do not have ash 
available)
-+### I really modified it (was /bin/ash)
-+### Radek Podgorny <ra...@podgorny.cz> (for Gentoo)
- #
- # $Id$
- # Copyright Paul Russell <ru...@samba.org>

diff --git a/net-misc/apt-proxy/metadata.xml b/net-misc/apt-proxy/metadata.xml
deleted file mode 100644
index 42e0e7970ca..00000000000
--- a/net-misc/apt-proxy/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <!-- maintainer-needed -->
-       <upstream>
-               <remote-id type="sourceforge">apt-proxy</remote-id>
-       </upstream>
-</pkgmetadata>

diff --git a/profiles/package.mask b/profiles/package.mask
index e47776050f6..2c33bf89e16 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -171,11 +171,6 @@ dev-perl/File-DirWalk
 >=virtual/perl-ExtUtils-Command-7.180.0
 >=dev-perl/Net-Twitter-4.10.420
 
-# Michael Palimaka <kensing...@gentoo.org> (18 Mar 2017)
-# Broken. Dead upstream. Unmaintained.
-# Masked for removal in 30 days.
-net-misc/apt-proxy
-
 # Michael Palimaka <kensing...@gentoo.org> (13 Mar 2017)
 # Testing x32 patch backports from 3.9
 =dev-util/cmake-3.7.2-r10

Reply via email to