Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Aug 2024 12:45:51 GMT
From:      Rene Ladan <rene@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: e42197f093f0 - main - audio/sidplay2: Remove expired port
Message-ID:  <202408041245.474Cjpof087539@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by rene:

URL: https://cgit.FreeBSD.org/ports/commit/?id=e42197f093f0f56d678792d62ec693d66df96387

commit e42197f093f0f56d678792d62ec693d66df96387
Author:     Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2024-08-04 12:45:43 +0000
Commit:     Rene Ladan <rene@FreeBSD.org>
CommitDate: 2024-08-04 12:45:43 +0000

    audio/sidplay2: Remove expired port
    
    2024-07-31 audio/sidplay2: Abandonware and superseded by audio/sidplayfp
---
 MOVED                                              |  1 +
 audio/Makefile                                     |  1 -
 audio/sidplay2/Makefile                            | 27 ----------------------
 audio/sidplay2/distinfo                            |  2 --
 audio/sidplay2/files/patch-src_args.cpp            | 23 ------------------
 .../sidplay2/files/patch-src_audio_oss_audiodrv.h  | 19 ---------------
 audio/sidplay2/pkg-descr                           |  4 ----
 7 files changed, 1 insertion(+), 76 deletions(-)

diff --git a/MOVED b/MOVED
index 6cc06465bdaf..66ecde673306 100644
--- a/MOVED
+++ b/MOVED
@@ -3415,3 +3415,4 @@ archivers/paq||2024-08-04|Has expired: Outdated, unmaintained and format that ne
 audio/optimfrog-sse2||2024-08-04|Has expired: Obsolete format that never gained traction, consider using audio/flac
 audio/cam||2024-08-04|Has expired: Abandonware and obsolete, consider using audio/mixertui
 audio/epos-devel||2024-08-04|Has expired: Abandonware, last release in 2006 and upstream is dead
+audio/sidplay2|audio/sidplayfp|2024-08-04|Has expired: Abandonware and superseded by audio/sidplayfp
diff --git a/audio/Makefile b/audio/Makefile
index 2a24ab0bd500..b71a825faf13 100644
--- a/audio/Makefile
+++ b/audio/Makefile
@@ -740,7 +740,6 @@
     SUBDIR += shortwave
     SUBDIR += shuriken
     SUBDIR += sidplay
-    SUBDIR += sidplay2
     SUBDIR += sidplayer
     SUBDIR += sidplayfp
     SUBDIR += simplemod
diff --git a/audio/sidplay2/Makefile b/audio/sidplay2/Makefile
deleted file mode 100644
index 5f511877faf5..000000000000
--- a/audio/sidplay2/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-PORTNAME=	sidplay2
-PORTVERSION=	2.0.9
-PORTREVISION=	5
-CATEGORIES=	audio emulators
-MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/sidplay-${PORTVERSION}
-DISTNAME=	sidplay-${PORTVERSION}
-
-MAINTAINER=	ports@FreeBSD.org
-COMMENT=	Commodore SID music player using libsidplay2
-WWW=		https://sidplay2.sourceforge.net/
-
-LICENSE=	GPLv2+
-LICENSE_FILE=	${WRKSRC}/COPYING
-
-DEPRECATED=	Abandonware and superseded by audio/sidplayfp
-EXPIRATION_DATE=2024-07-31
-
-LIB_DEPENDS=	libsidplay2.so:audio/libsidplay2
-
-GNU_CONFIGURE=	yes
-GNU_CONFIGURE_MANPREFIX=	${PREFIX}/share
-USES=		pkgconfig
-USE_CXXSTD=	c++98
-
-PLIST_FILES=	bin/sidplay2 share/man/man1/sidplay2.1.gz
-
-.include <bsd.port.mk>
diff --git a/audio/sidplay2/distinfo b/audio/sidplay2/distinfo
deleted file mode 100644
index 2cac9b759f44..000000000000
--- a/audio/sidplay2/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (sidplay-2.0.9.tar.gz) = b850986ce9226cb6eecca50057967be313771b67aed721421e74e6c931e02215
-SIZE (sidplay-2.0.9.tar.gz) = 362140
diff --git a/audio/sidplay2/files/patch-src_args.cpp b/audio/sidplay2/files/patch-src_args.cpp
deleted file mode 100644
index 4793c1d19592..000000000000
--- a/audio/sidplay2/files/patch-src_args.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
---- src/args.cpp.orig	2004-05-05 23:49:20 UTC
-+++ src/args.cpp
-@@ -95,7 +95,7 @@ using std::endl;
- // Convert time from integer
- bool ConsolePlayer::parseTime (const char *str, uint_least32_t &time)
- {
--    char *sep;
-+    const char *sep;
-     uint_least32_t _time;
- 
-     // Check for empty string
-@@ -110,8 +110,9 @@ bool ConsolePlayer::parseTime (const cha
-     else
-     {   // Read in MM:SS format
-         int val;
--        *sep = '\0';
--        val  = atoi (str);
-+        char *tmp = strndup(str, sep - str);
-+        val  = atoi (tmp);
-+        free(tmp);
-         if (val < 0 || val > 99)
-             return false;
-         _time = (uint_least32_t) val * 60;
diff --git a/audio/sidplay2/files/patch-src_audio_oss_audiodrv.h b/audio/sidplay2/files/patch-src_audio_oss_audiodrv.h
deleted file mode 100644
index 9534173d6cc0..000000000000
--- a/audio/sidplay2/files/patch-src_audio_oss_audiodrv.h
+++ /dev/null
@@ -1,19 +0,0 @@
---- src/audio/oss/audiodrv.h.orig	2001-10-30 23:35:35 UTC
-+++ src/audio/oss/audiodrv.h
-@@ -57,15 +57,7 @@
- #include <stdio.h>
- #include <unistd.h>
- 
--#if defined(HAVE_LINUX_SOUNDCARD_H)
--#   include <linux/soundcard.h>
--#elif defined(HAVE_MACHINE_SOUNDCARD_H)
--#   include <machine/soundcard.h>
--#elif defined(HAVE_SOUNDCARD_H)
--#   include <soundcard.h>
--#else
--#   error Audio driver not supported.
--#endif
-+#include <sys/soundcard.h>
- 
- #include "../AudioBase.h"
- 
diff --git a/audio/sidplay2/pkg-descr b/audio/sidplay2/pkg-descr
deleted file mode 100644
index 0a92c5c5081b..000000000000
--- a/audio/sidplay2/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-Sidplay 2 is the second in the Sidplay series originally developed by Michael
-Schwendt. This version is written by Simon White and is cycle accurate for
-improved sound reproduction. Sidplay 2 is capable of playing all C64 mono and
-stereo file formats.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202408041245.474Cjpof087539>