commit:     68b72f74324fca91e14b27179748464f1defcc05
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  5 22:33:22 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Nov  5 22:33:22 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68b72f74

app-cdr/mode2cdmaker: Remove last-rited pkg

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

 app-cdr/mode2cdmaker/Manifest                      |  1 -
 .../files/mode2cdmaker-1.5.1-gentoo.patch          | 46 ----------------------
 app-cdr/mode2cdmaker/metadata.xml                  |  5 ---
 app-cdr/mode2cdmaker/mode2cdmaker-1.5.1.ebuild     | 36 -----------------
 profiles/package.mask                              |  1 -
 5 files changed, 89 deletions(-)

diff --git a/app-cdr/mode2cdmaker/Manifest b/app-cdr/mode2cdmaker/Manifest
deleted file mode 100644
index fbeeca1cd7a..00000000000
--- a/app-cdr/mode2cdmaker/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST mode2cdmaker-1.5.1-src.zip 57049 BLAKE2B 
f314dcd862732598a6c0035dc50fcbbebb14da3c8941d9d34ebc8c012add030040b9a8465c2b5bf526da792738119c570eb98ab840d9b376c7fd7f602f6c2388
 SHA512 
854aea23ae83521f689c5e4d91e6b3aba3e0977a987eb5a88fd340bb2b3f795ba76bf227a84727f3792b4f2453b4a4710d5e3782ccbfda79569506c23e77302f

diff --git a/app-cdr/mode2cdmaker/files/mode2cdmaker-1.5.1-gentoo.patch 
b/app-cdr/mode2cdmaker/files/mode2cdmaker-1.5.1-gentoo.patch
deleted file mode 100644
index 502819c11df..00000000000
--- a/app-cdr/mode2cdmaker/files/mode2cdmaker-1.5.1-gentoo.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-diff -ur mode2cdmaker-1.5.1.orig/Makefile.linux 
mode2cdmaker-1.5.1/Makefile.linux
---- mode2cdmaker-1.5.1.orig/Makefile.linux     2003-02-01 16:27:18.000000000 
+0200
-+++ mode2cdmaker-1.5.1/Makefile.linux  2008-06-15 19:24:14.000000000 +0300
-@@ -4,8 +4,8 @@
- output=mode2cdmaker
- 
- all:
--      gcc -c $(srcs)
--      gcc -o $(output) $(objs)
-+      $(CC) ${CFLAGS} -DMAX_PATH=512 -c $(srcs)
-+      $(CC) ${LDFLAGS} -o $(output) $(objs)
- 
- clean:
-       -rm -f $(objs) $(output)
-diff -ur mode2cdmaker-1.5.1.orig/mkvcdfs.c mode2cdmaker-1.5.1/mkvcdfs.c
---- mode2cdmaker-1.5.1.orig/mkvcdfs.c  2003-03-14 19:57:38.000000000 +0200
-+++ mode2cdmaker-1.5.1/mkvcdfs.c       2008-06-15 19:23:25.000000000 +0300
-@@ -120,6 +120,7 @@
- #endif
- #endif
- #include <stdio.h>
-+#include <stdlib.h>
- #include <fcntl.h>
- #include <string.h>
- #include <ctype.h>
-@@ -629,7 +630,7 @@
-                               next_command[1]=(char*)malloc(256);
-                               while (fgets(next_command[1],256,pf))
-                               {
--                                      
next_command[1][lstrlen(next_command[1])-1]=0;
-+                                      
next_command[1][strlen(next_command[1])-1]=0;
-                                       parse_params(2,next_command,idepth+1);
-                               }
-                               fclose(pf);
-diff -ur mode2cdmaker-1.5.1.orig/vcdisofs.c mode2cdmaker-1.5.1/vcdisofs.c
---- mode2cdmaker-1.5.1.orig/vcdisofs.c 2003-02-02 00:02:44.000000000 +0200
-+++ mode2cdmaker-1.5.1/vcdisofs.c      2008-06-15 19:19:59.000000000 +0300
-@@ -80,6 +80,8 @@
- #include <windows.h>
- #endif
- #include <stdio.h>
-+#include <stdlib.h>
-+#include <string.h>
- #include <time.h>
- #include "defaults.h"
- 

diff --git a/app-cdr/mode2cdmaker/metadata.xml 
b/app-cdr/mode2cdmaker/metadata.xml
deleted file mode 100644
index 6f49eba8f49..00000000000
--- a/app-cdr/mode2cdmaker/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>

diff --git a/app-cdr/mode2cdmaker/mode2cdmaker-1.5.1.ebuild 
b/app-cdr/mode2cdmaker/mode2cdmaker-1.5.1.ebuild
deleted file mode 100644
index d3f0bde8ee9..00000000000
--- a/app-cdr/mode2cdmaker/mode2cdmaker-1.5.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Utility to create mode-2 CDs, for example XCDs"
-HOMEPAGE="https://www.gentoo.org/";
-SRC_URI="mirror://gentoo/${P}-src.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-DEPEND="app-arch/unzip"
-RDEPEND=""
-
-S=${WORKDIR}
-
-src_unpack() {
-       unpack ${A}
-       cd "${S}"
-       epatch "${FILESDIR}"/${P}-gentoo.patch
-}
-
-src_compile() {
-       tc-export CC
-       emake -f Makefile.linux || die
-}
-
-src_install() {
-       dobin mode2cdmaker || die
-       dodoc {bugs,compatibility,readme}.txt
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index 80f40f46efc..35586683519 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -379,7 +379,6 @@ net-libs/openslp
 # the maintainer.
 # Removal in 30 days.  Bug #696252.
 app-benchmarks/volanomark
-app-cdr/mode2cdmaker
 mail-filter/clamsmtp
 sys-auth/pam_require
 

Reply via email to