git: 39a875a7915d - main - audio/id3ren: Remove expired port:
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 31 Mar 2023 00:01:23 UTC
The branch main has been updated by bofh:
URL: https://cgit.FreeBSD.org/ports/commit/?id=39a875a7915dcc854087caceb37859b6d8ba1021
commit 39a875a7915dcc854087caceb37859b6d8ba1021
Author: Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2023-03-25 13:16:55 +0000
Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2023-03-30 23:59:31 +0000
audio/id3ren: Remove expired port:
2023-03-31 audio/id3ren: Abandonware and obsolete, doesn't support ID3v2 tagging
---
MOVED | 1 +
audio/Makefile | 1 -
audio/id3ren/Makefile | 38 -----------------------------------
audio/id3ren/distinfo | 2 --
audio/id3ren/files/patch-Makefile | 18 -----------------
audio/id3ren/files/patch-man_Makefile | 12 -----------
audio/id3ren/files/patch-src_Makefile | 27 -------------------------
audio/id3ren/files/patch-src_id3tag.c | 10 ---------
audio/id3ren/pkg-descr | 4 ----
9 files changed, 1 insertion(+), 112 deletions(-)
diff --git a/MOVED b/MOVED
index 5823cd550095..6195c097754e 100644
--- a/MOVED
+++ b/MOVED
@@ -17834,3 +17834,4 @@ audio/dagrab||2023-03-31|Has expired: Abandonware and superseded by audio/cdpara
audio/dekagen||2023-03-31|Has expired: Abandonware, last release in 2004. Please consider using audio/cyanrip or audio/abcde
audio/gervill||2023-03-31|Has expired: Integrated as of JDK6
audio/id3ed||2023-03-31|Has expired: Abandonware and obsolete, doesn't support ID3v2 tagging
+audio/id3ren||2023-03-31|Has expired: Abandonware and obsolete, doesn't support ID3v2 tagging
diff --git a/audio/Makefile b/audio/Makefile
index fa8ef1ec4082..b6e84b26acfd 100644
--- a/audio/Makefile
+++ b/audio/Makefile
@@ -301,7 +301,6 @@
SUBDIR += id3el
SUBDIR += id3lib
SUBDIR += id3mtag
- SUBDIR += id3ren
SUBDIR += id3tool
SUBDIR += id3v2
SUBDIR += iir1
diff --git a/audio/id3ren/Makefile b/audio/id3ren/Makefile
deleted file mode 100644
index b99800890a36..000000000000
--- a/audio/id3ren/Makefile
+++ /dev/null
@@ -1,38 +0,0 @@
-PORTNAME= id3ren
-PORTVERSION= 1.1b0
-CATEGORIES= audio
-
-MAINTAINER= crees@FreeBSD.org
-COMMENT= Rename MP3 files, edit tags, search, etc
-WWW= https://github.com/sebcode/id3ren
-
-LICENSE= GPLv2
-
-DEPRECATED= Abandonware and obsolete, doesn't support ID3v2 tagging
-EXPIRATION_DATE=2023-03-31
-
-USE_GITHUB= yes
-GH_ACCOUNT= sebcode
-GH_TAGNAME= 322ee77
-
-PLIST_FILES= bin/id3ren man/man1/id3ren.1.gz
-PORTDOCS= AUTHORS ChangeLog FEATURES FEEDBACK INSTALL PORTS \
- README THANKS TODO USAGE
-
-OPTIONS_DEFINE= DOCS
-
-pre-patch:
- @${REINPLACE_CMD} -e 's,<malloc.h>,<stdlib.h>,' \
- ${WRKSRC}/src/id3ren.c ${WRKSRC}/src/id3misc.c
- ${RM} ${WRKSRC}/src/id3ren
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
- ${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1.gz \
- ${STAGEDIR}${PREFIX}/man/man1/
-
-post-install-DOCS-on:
- ${MKDIR} ${STAGEDIR}${DOCSDIR}
- ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
-
-.include <bsd.port.mk>
diff --git a/audio/id3ren/distinfo b/audio/id3ren/distinfo
deleted file mode 100644
index 4956dfd41d9c..000000000000
--- a/audio/id3ren/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (sebcode-id3ren-1.1b0-322ee77_GH0.tar.gz) = e7aafe9e895dfbfa371b5dd2e0dfc50bb3b4c03d262ff1a7968209ecbc726afa
-SIZE (sebcode-id3ren-1.1b0-322ee77_GH0.tar.gz) = 44089
diff --git a/audio/id3ren/files/patch-Makefile b/audio/id3ren/files/patch-Makefile
deleted file mode 100644
index 32610598805e..000000000000
--- a/audio/id3ren/files/patch-Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
---- Makefile.orig 2012-05-15 20:31:03 UTC
-+++ Makefile
-@@ -1,12 +1,12 @@
- all:
-- make -C src all
-+ cd src && ${MAKE} all
-
- debug:
- make -C src debug
-
- install:
-- make -C src install
-- make -C man install
-+ cd src && ${MAKE} install
-+ cd man && ${MAKE} install
-
- clean:
- make -C src clean
diff --git a/audio/id3ren/files/patch-man_Makefile b/audio/id3ren/files/patch-man_Makefile
deleted file mode 100644
index 70e46829965f..000000000000
--- a/audio/id3ren/files/patch-man_Makefile
+++ /dev/null
@@ -1,12 +0,0 @@
---- man/Makefile.orig 2012-05-15 20:31:03 UTC
-+++ man/Makefile
-@@ -1,6 +1,6 @@
--RM = rm -f
--INSTALL = install -m 755
--INSTALL_DIR = /usr/man/man1
-+RM ?= rm -f
-+INSTALL = ${BSD_INSTALL_DATA}
-+INSTALL_DIR = ${PREFIX}/man/man1
- INSTALL_NAME = id3ren.1.gz
-
- all:
diff --git a/audio/id3ren/files/patch-src_Makefile b/audio/id3ren/files/patch-src_Makefile
deleted file mode 100644
index 4034c47a10d2..000000000000
--- a/audio/id3ren/files/patch-src_Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
---- src/Makefile.orig 2012-05-15 20:31:03 UTC
-+++ src/Makefile
-@@ -1,9 +1,10 @@
- CFLAGSDEBUG = -g -O2 -Wall -DDEBUG
--CFLAGS = -s -O2 -Wall
--CC = gcc
--RM = rm -f
--INSTALL = install -s -m 755
--INSTALL_DIR = /usr/bin
-+CFLAGS ?= -O2 -Wall
-+STRIP ?= -s
-+CC ?= gcc
-+RM ?= rm -f
-+INSTALL = ${BSD_INSTALL_PROGRAM}
-+INSTALL_DIR = ${PREFIX}/bin
- INSTALL_NAME = id3ren
-
- SOURCES = id3ren.c id3tag.c id3file.c id3misc.c
-@@ -12,7 +13,7 @@ INCLUDES = id3ren.h id3tag.h id3file.h i
- all: ${INSTALL_NAME}
-
- ${INSTALL_NAME}: ${SOURCES} ${INCLUDES}
-- ${CC} ${CFLAGS} -o ${INSTALL_NAME} ${SOURCES}
-+ ${CC} ${CFLAGS} ${STRIP} -o ${INSTALL_NAME} ${SOURCES}
-
- debug:
- ${CC} ${CFLAGSDEBUG} -o ${INSTALL_NAME} ${SOURCES}
diff --git a/audio/id3ren/files/patch-src_id3tag.c b/audio/id3ren/files/patch-src_id3tag.c
deleted file mode 100644
index cbeab83878cc..000000000000
--- a/audio/id3ren/files/patch-src_id3tag.c
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/id3tag.c.orig 2012-05-15 20:31:03 UTC
-+++ src/id3tag.c
-@@ -363,6 +363,7 @@ get_tag_string (int size, char *def_stri
- return TRUE;
- }
-
-+ memset(string, 0, size);
- fgets(string, size, stdin);
-
- if (string[strlen(string)-1] == '\n')
diff --git a/audio/id3ren/pkg-descr b/audio/id3ren/pkg-descr
deleted file mode 100644
index 58be7c592100..000000000000
--- a/audio/id3ren/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-The id3 Renamer is used to rename batches of mpeg3 files by reading the
-ID3 tag at the end of the file which contains the song name, artist,
-album, year, and a comment. The secondary function of id3 Renamer is
-a tagger, which can create, modify, or remove ID3 tags.