public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-sound/entagged-tageditor/, profiles/, ...
@ 2021-06-06 17:22 David Seifert
  0 siblings, 0 replies; only message in thread
From: David Seifert @ 2021-06-06 17:22 UTC (permalink / raw
  To: gentoo-commits

commit:     51c661bd975d201866b470deda7e1f49737f8d8d
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Sun Jun  6 17:21:39 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Jun  6 17:21:39 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51c661bd

media-sound/entagged-tageditor: Remove last-rited pkg

Closes: https://bugs.gentoo.org/787428
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 media-sound/entagged-tageditor/Manifest            |  1 -
 .../entagged-tageditor-0.35.ebuild                 | 46 ----------------------
 .../files/entagged-tageditor-0.35-buildfixes.patch | 31 ---------------
 media-sound/entagged-tageditor/metadata.xml        | 10 -----
 profiles/package.mask                              |  6 ---
 5 files changed, 94 deletions(-)

diff --git a/media-sound/entagged-tageditor/Manifest b/media-sound/entagged-tageditor/Manifest
deleted file mode 100644
index 3555bdfbeae..00000000000
--- a/media-sound/entagged-tageditor/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST entagged-tageditor-0.35.tar.gz 4606721 BLAKE2B c7013ed9bbef046bc46897f59e6bf668f835dd80ece83d19ef9ea83f089461cb677cd55a98554310734c36bb97945db7db13eb00cd7ae06e82c0f3ea00e928ae SHA512 cefebce7381d489ccd821933c3a1d330713d4de6cf9366aa699f5017939620589c95a2ee162aabc7bfa6d42d56b5986f4ecaa2f1f77ec586cda5f6780f0a06f3

diff --git a/media-sound/entagged-tageditor/entagged-tageditor-0.35.ebuild b/media-sound/entagged-tageditor/entagged-tageditor-0.35.ebuild
deleted file mode 100644
index 1113fa708d1..00000000000
--- a/media-sound/entagged-tageditor/entagged-tageditor-0.35.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop java-pkg-2 java-ant-2
-
-DESCRIPTION="Open-source audiofile tagger"
-HOMEPAGE="http://entagged.sourceforge.net/"
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-S="${WORKDIR}"
-
-RDEPEND=">=virtual/jre-1.5
-	dev-java/squareness-jlf:0
-	dev-db/hsqldb:0"
-
-DEPEND=">=virtual/jdk-1.5
-	dev-db/hsqldb:0"
-
-EANT_BUILD_XML="entagged/build.xml"
-EANT_BUILD_TARGET="build"
-
-src_prepare() {
-	java-pkg-2_src_prepare
-	mkdir -p test/entagged/junit || die
-	mv entagged/entagged/junit test/entagged || die
-	rm entagged/*.jar || die
-	java-pkg_jarfrom hsqldb hsqldb.jar entagged/hsqldb.jar
-	cd entagged || die
-	eapply "${FILESDIR}"/${P}-buildfixes.patch
-}
-
-src_install() {
-	cd entagged || die
-	java-pkg_newjar ${P}.jar ${PN}.jar
-	java-pkg_register-dependency squareness-jlf
-	java-pkg_dolauncher ${PN} --main entagged.tageditor.TagEditorFrameSplash
-	newicon entagged/tageditor/resources/icons/entagged-icon.png ${PN}.png
-	make_desktop_entry ${PN} "Entagged Tag Editor" ${PN}
-}

diff --git a/media-sound/entagged-tageditor/files/entagged-tageditor-0.35-buildfixes.patch b/media-sound/entagged-tageditor/files/entagged-tageditor-0.35-buildfixes.patch
deleted file mode 100644
index 709b16b32a5..00000000000
--- a/media-sound/entagged-tageditor/files/entagged-tageditor-0.35-buildfixes.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- a/build.xml	2007-03-23 16:25:25.000000000 +0200
-+++ b/build.xml	2007-09-01 09:20:44.000000000 +0300
-@@ -30,7 +30,7 @@
- 	<property name="entagged_dir" location="."/>
- 	<property name="entagged_base_dir" location=".."/>
- 	<property name="tageditor_dir" location="tageditor"/>
--	<property name="tageditor_version" value="0.21"/>
-+	<property name="tageditor_version" value="0.35"/>
- 	<property name="tageditor_jar" value="entagged-tageditor-${tageditor_version}.jar"/>
- 	<property name="tageditor_zip" value="entagged-tageditor-${tageditor_version}.zip"/>
- 	<property name="tageditor_tar" value="entagged-tageditor-${tageditor_version}.tar"/>
-@@ -52,7 +52,7 @@
- 	
- 	<!-- Compile the sources -->
-     <target name="compile" depends="clean">
--		<javac srcdir="${entagged_dir}" classpath="${entagged_base_dir}" excludes="entagged/junit/*" source="1.4"/>
-+		<javac srcdir="${entagged_dir}" classpath="hsqldb.jar" excludes="entagged/junit/*"/>
- <echo>
- Entagged Tag editor is now fully compiled.
- You can use either:
-@@ -71,9 +71,8 @@
- 	<!-- Prepares the classes to be packaged -->
- 	<target name="build" depends="compile">
- 		<!-- Jar the classes files  -->
--		<jar destfile="${tageditor_jar}" basedir="${entagged_base_dir}" includes="entagged/**/*.class entagged/**/*.xsl entagged/**/*.dtd entagged/**/*.properties entagged/**/*.html entagged/tageditor/resources/**/*" excludes="**/*.java" >
-+		<jar destfile="${tageditor_jar}" basedir="${entagged_base_dir}/entagged" includes="entagged/**/*.class entagged/**/*.xsl entagged/**/*.dtd entagged/**/*.properties entagged/**/*.html entagged/tageditor/resources/**/* miage/**/*.class" excludes="**/*.java" >
- 			<manifest>
--				<attribute name="Class-Path" value="${tageditor_jar_classpath}"/>
- 				<attribute name="Main-Class" value="${tageditor_jar_mainclass}"/>
- 			</manifest>
- 		</jar>

diff --git a/media-sound/entagged-tageditor/metadata.xml b/media-sound/entagged-tageditor/metadata.xml
deleted file mode 100644
index 4d2b70e37ef..00000000000
--- a/media-sound/entagged-tageditor/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>java@gentoo.org</email>
-	</maintainer>
-	<upstream>
-		<remote-id type="sourceforge">entagged</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/profiles/package.mask b/profiles/package.mask
index bff175bec43..9304f827fcc 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -404,12 +404,6 @@ app-office/hourglass
 # see bug: https://bugs.gentoo.org/787368
 dev-util/jarwizard
 
-# Miroslav Šulc <fordfrog@gentoo.org> (2021-05-05)
-# no consumers, last release in 2008
-# removal in 30 days
-# see bug: https://bugs.gentoo.org/787428
-media-sound/entagged-tageditor
-
 # Eray Aslan <eras@gentoo.org> (2021-04-29)
 # Mask experimental software
 =mail-mta/postfix-3.7*


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

only message in thread, other threads:[~2021-06-06 17:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-06 17:22 [gentoo-commits] repo/gentoo:master commit in: media-sound/entagged-tageditor/, profiles/, David Seifert

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