public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-sound/mac/files/
@ 2017-10-16 10:05 Patrice Clement
  0 siblings, 0 replies; 3+ messages in thread
From: Patrice Clement @ 2017-10-16 10:05 UTC (permalink / raw
  To: gentoo-commits

commit:     b5deff6256d089f43b17ae555ffa62bf0758950a
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Fri Oct 13 10:18:10 2017 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Oct 16 10:05:40 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5deff62

media-sound/mac: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/5938

 media-sound/mac/files/mac-3.99.4.5.7-gcc6.patch | 181 ------------------------
 1 file changed, 181 deletions(-)

diff --git a/media-sound/mac/files/mac-3.99.4.5.7-gcc6.patch b/media-sound/mac/files/mac-3.99.4.5.7-gcc6.patch
deleted file mode 100644
index e22d1c1f539..00000000000
--- a/media-sound/mac/files/mac-3.99.4.5.7-gcc6.patch
+++ /dev/null
@@ -1,181 +0,0 @@
-From: Peter Levine <plevine457@gmail.com>
---- mac-3.99-u4-b5-s7/src/Shared/NoWindows.h.old	2016-09-18 21:37:56.049105791 -0400
-+++ mac-3.99-u4-b5-s7/src/Shared/NoWindows.h	2016-09-18 21:55:29.666295506 -0400
-@@ -39,8 +39,8 @@
- typedef const wchar_t *     LPCWSTR;
- 
- #define ZeroMemory(POINTER, BYTES) memset(POINTER, 0, BYTES);
--#define max(a,b)    (((a) > (b)) ? (a) : (b))
--#define min(a,b)    (((a) < (b)) ? (a) : (b))
-+#define max_macro(a,b)    (((a) > (b)) ? (a) : (b))
-+#define min_macro(a,b)    (((a) < (b)) ? (a) : (b))
- 
- #define __stdcall
- #define CALLBACK
---- mac-3.99-u4-b5-s7/src/Shared/CircleBuffer.cpp.old	2016-09-18 21:43:44.270495095 -0400
-+++ mac-3.99-u4-b5-s7/src/Shared/CircleBuffer.cpp	2016-09-18 21:44:47.960148731 -0400
-@@ -45,7 +45,7 @@
- 
-     if (pBuffer != NULL && nBytes > 0)
-     {
--        int nHeadBytes = min(m_nEndCap - m_nHead, nBytes);
-+        int nHeadBytes = min_macro(m_nEndCap - m_nHead, nBytes);
-         int nFrontBytes = nBytes - nHeadBytes;
- 
-         memcpy(&pBuffer[0], &m_pBuffer[m_nHead], nHeadBytes);
-@@ -72,7 +72,7 @@
- 
- int CCircleBuffer::RemoveHead(int nBytes)
- {
--    nBytes = min(MaxGet(), nBytes);
-+    nBytes = min_macro(MaxGet(), nBytes);
-     m_nHead += nBytes;
-     if (m_nHead >= m_nEndCap)
-         m_nHead -= m_nEndCap;
-@@ -81,7 +81,7 @@
- 
- int CCircleBuffer::RemoveTail(int nBytes)
- {
--    nBytes = min(MaxGet(), nBytes);
-+    nBytes = min_macro(MaxGet(), nBytes);
-     m_nTail -= nBytes;
-     if (m_nTail < 0)
-         m_nTail += m_nEndCap;
---- mac-3.99-u4-b5-s7/src/MACLib/APECompress.cpp.old	2016-09-18 21:48:40.916547811 -0400
-+++ mac-3.99-u4-b5-s7/src/MACLib/APECompress.cpp	2016-09-18 21:51:43.670733601 -0400
-@@ -117,7 +117,7 @@
-             return ERROR_UNDEFINED;
-         
-         // calculate how many bytes to copy and add that much to the buffer
--        int nBytesToProcess = min(nBytesAvailable, nBytes - nBytesDone);
-+        int nBytesToProcess = min_macro(nBytesAvailable, nBytes - nBytesDone);
-         memcpy(pBuffer, &pData[nBytesDone], nBytesToProcess);
-                         
-         // unlock the buffer (fail if not successful)
-@@ -162,7 +162,7 @@
-         
-         while ((m_nBufferTail - m_nBufferHead) >= nThreshold)
-         {
--            int nFrameBytes = min(m_spAPECompressCreate->GetFullFrameBytes(), m_nBufferTail - m_nBufferHead);
-+            int nFrameBytes = min_macro(m_spAPECompressCreate->GetFullFrameBytes(), m_nBufferTail - m_nBufferHead);
-             
-             if (nFrameBytes == 0)
-                 break;
---- mac-3.99-u4-b5-s7/src/MACLib/APEDecompress.cpp.old	2016-09-18 21:46:56.962072960 -0400
-+++ mac-3.99-u4-b5-s7/src/MACLib/APEDecompress.cpp	2016-09-18 22:01:14.402044817 -0400
-@@ -35,8 +35,8 @@
-     m_bErrorDecodingCurrentFrame = FALSE;
- 
-     // set the "real" start and finish blocks
--    m_nStartBlock = (nStartBlock < 0) ? 0 : min(nStartBlock, GetInfo(APE_INFO_TOTAL_BLOCKS));
--    m_nFinishBlock = (nFinishBlock < 0) ? GetInfo(APE_INFO_TOTAL_BLOCKS) : min(nFinishBlock, GetInfo(APE_INFO_TOTAL_BLOCKS));
-+    m_nStartBlock = (nStartBlock < 0) ? 0 : min_macro(nStartBlock, GetInfo(APE_INFO_TOTAL_BLOCKS));
-+    m_nFinishBlock = (nFinishBlock < 0) ? GetInfo(APE_INFO_TOTAL_BLOCKS) : min_macro(nFinishBlock, GetInfo(APE_INFO_TOTAL_BLOCKS));
-     m_bIsRanged = (m_nStartBlock != 0) || (m_nFinishBlock != GetInfo(APE_INFO_TOTAL_BLOCKS));
- }
- 
-@@ -85,7 +85,7 @@
- 
-     // cap
-     int nBlocksUntilFinish = m_nFinishBlock - m_nCurrentBlock;
--    const int nBlocksToRetrieve = min(nBlocks, nBlocksUntilFinish);
-+    const int nBlocksToRetrieve = min_macro(nBlocks, nBlocksUntilFinish);
-     
-     // get the data
-     unsigned char * pOutputBuffer = (unsigned char *) pBuffer;
-@@ -99,7 +99,7 @@
- 
-         // analyze how much to remove from the buffer
-         const int nFrameBufferBlocks = m_nFrameBufferFinishedBlocks;
--        nBlocksThisPass = min(nBlocksLeft, nFrameBufferBlocks);
-+        nBlocksThisPass = min_macro(nBlocksLeft, nFrameBufferBlocks);
- 
-         // remove as much as possible
-         if (nBlocksThisPass > 0)
-@@ -182,7 +182,7 @@
- 
-         int nFrameOffsetBlocks = m_nCurrentFrameBufferBlock % GetInfo(APE_INFO_BLOCKS_PER_FRAME);
-         int nFrameBlocksLeft = nFrameBlocks - nFrameOffsetBlocks;
--        int nBlocksThisPass = min(nFrameBlocksLeft, nBlocksLeft);
-+        int nBlocksThisPass = min_macro(nFrameBlocksLeft, nBlocksLeft);
- 
-         // start the frame if we need to
-         if (nFrameOffsetBlocks == 0)
---- mac-3.99-u4-b5-s7/src/MACLib/APESimple.cpp.old	2016-09-18 21:47:16.972925909 -0400
-+++ mac-3.99-u4-b5-s7/src/MACLib/APESimple.cpp	2016-09-18 21:52:39.022779503 -0400
-@@ -193,7 +193,7 @@
-     nBytesRead = 1;
-     while ((nBytesLeft > 0) && (nBytesRead > 0))
-     {
--        int nBytesToRead = min(16384, nBytesLeft);
-+        int nBytesToRead = min_macro(16384, nBytesLeft);
-         if (pIO->Read(spBuffer, nBytesToRead, &nBytesRead) != ERROR_SUCCESS)
-             return ERROR_IO_READ;
- 
---- mac-3.99-u4-b5-s7/src/MACLib/APETag.cpp.old	2016-09-18 21:55:53.331533348 -0400
-+++ mac-3.99-u4-b5-s7/src/MACLib/APETag.cpp	2016-09-18 21:58:21.508345586 -0400
-@@ -16,7 +16,7 @@
-     memcpy(m_spFieldNameUTF16, pFieldName, (wcslen(pFieldName) + 1) * sizeof(str_utf16));
-     
-     // data (we'll always allocate two extra bytes and memset to 0 so we're safely NULL terminated)
--    m_nFieldValueBytes = max(nFieldBytes, 0);
-+    m_nFieldValueBytes = max_macro(nFieldBytes, 0);
-     m_spFieldValue.Assign(new char [m_nFieldValueBytes + 2], TRUE);
-     memset(m_spFieldValue, 0, m_nFieldValueBytes + 2);
-     if (m_nFieldValueBytes > 0)
---- mac-3.99-u4-b5-s7/src/MACLib/BitArray.cpp.old	2016-09-18 21:53:24.090030009 -0400
-+++ mac-3.99-u4-b5-s7/src/MACLib/BitArray.cpp	2016-09-18 22:00:13.500083252 -0400
-@@ -113,7 +113,7 @@
-         m_nCurrentBitIndex = (m_nCurrentBitIndex & 31);
-         
-         // zero the rest of the memory (may not need the +1 because of frame byte alignment)
--        memset(&m_pBitArray[1], 0, min(nBytesToWrite + 1, BIT_ARRAY_BYTES - 1));
-+        memset(&m_pBitArray[1], 0, min_macro(nBytesToWrite + 1, BIT_ARRAY_BYTES - 1));
-     }
-     
-     // return a success
-@@ -247,7 +247,7 @@
-         BitArrayState.k++;
- 
-     // figure the pivot value
--    int nPivotValue = max(nOriginalKSum / 32, 1);
-+    int nPivotValue = max_macro(nOriginalKSum / 32, 1);
-     int nOverflow = nEncode / nPivotValue;
-     int nBase = nEncode - (nOverflow * nPivotValue);
- 
---- mac-3.99-u4-b5-s7/src/MACLib/MACProgressHelper.cpp.old	2016-09-18 21:56:44.606337012 -0400
-+++ mac-3.99-u4-b5-s7/src/MACLib/MACProgressHelper.cpp	2016-09-18 21:59:55.854310134 -0400
-@@ -35,7 +35,7 @@
-         m_nCurrentStep = nCurrentStep;
- 
-     // figure the percentage done
--    float fPercentageDone = float(m_nCurrentStep) / float(max(m_nTotalSteps, 1));
-+    float fPercentageDone = float(m_nCurrentStep) / float(max_macro(m_nTotalSteps, 1));
-     int nPercentageDone = (int) (fPercentageDone * 1000 * 100);
-     if (nPercentageDone > 100000) nPercentageDone = 100000;
- 
---- mac-3.99-u4-b5-s7/src/MACLib/Prepare.cpp.old	2016-09-18 21:56:29.974394222 -0400
-+++ mac-3.99-u4-b5-s7/src/MACLib/Prepare.cpp	2016-09-18 21:59:28.214726465 -0400
-@@ -177,9 +177,9 @@
- 
-             if (LPeak == 0) { *pSpecialCodes |= SPECIAL_FRAME_LEFT_SILENCE; }
-             if (RPeak == 0) { *pSpecialCodes |= SPECIAL_FRAME_RIGHT_SILENCE; }
--            if (max(LPeak, RPeak) > *pPeakLevel) 
-+            if (max_macro(LPeak, RPeak) > *pPeakLevel) 
-             {
--                *pPeakLevel = max(LPeak, RPeak);
-+                *pPeakLevel = max_macro(LPeak, RPeak);
-             }
- 
-             // check for pseudo-stereo files
---- mac-3.99-u4-b5-s7/src/MACLib/UnBitArray.cpp.old	2016-09-18 21:56:16.548445898 -0400
-+++ mac-3.99-u4-b5-s7/src/MACLib/UnBitArray.cpp	2016-09-18 21:58:56.148161050 -0400
-@@ -110,7 +110,7 @@
-     if (m_nVersion >= 3990)
-     {
-         // figure the pivot value
--        int nPivotValue = max(BitArrayState.nKSum / 32, 1);
-+        int nPivotValue = max_macro(BitArrayState.nKSum / 32, 1);
-         
-         // get the overflow
-         int nOverflow = 0;


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/mac/files/
@ 2023-09-30 14:47 Daniel Pielmeier
  0 siblings, 0 replies; 3+ messages in thread
From: Daniel Pielmeier @ 2023-09-30 14:47 UTC (permalink / raw
  To: gentoo-commits

commit:     e0e8fbe3c6e96c86b95825f3ddb8b89518c89782
Author:     Daniel Pielmeier <billie <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 30 14:46:45 2023 +0000
Commit:     Daniel Pielmeier <billie <AT> gentoo <DOT> org>
CommitDate: Sat Sep 30 14:46:45 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0e8fbe3

media-sound/mac/files: Add missing patches

Signed-off-by: Daniel Pielmeier <billie <AT> gentoo.org>

 media-sound/mac/files/mac-10.18-linux.patch  | 24 ++++++++++++++++++
 media-sound/mac/files/mac-10.18-output.patch | 37 ++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/media-sound/mac/files/mac-10.18-linux.patch b/media-sound/mac/files/mac-10.18-linux.patch
new file mode 100644
index 000000000000..0346101f3eb0
--- /dev/null
+++ b/media-sound/mac/files/mac-10.18-linux.patch
@@ -0,0 +1,24 @@
+diff -Naur mac-10.18_orig/Shared/All.h mac-10.18/Shared/All.h
+--- mac-10.18_orig/Shared/All.h	2023-08-13 18:59:03.447085864 +0200
++++ mac-10.18/Shared/All.h	2023-08-13 19:00:20.053081298 +0200
+@@ -11,7 +11,7 @@
+ **************************************************************************************************/
+ #if !defined(PLATFORM_WINDOWS) && !defined(PLATFORM_APPLE) && !defined(PLATFORM_LINUX)
+     #pragma message("No platform set for MACLib, defaulting to Windows")
+-    #define PLATFORM_WINDOWS
++    #define PLATFORM_LINUX
+ #endif
+ 
+ #ifdef PLATFORM_ANDROID
+diff -Naur mac-10.18_orig/Source/Shared/All.h mac-10.18/Source/Shared/All.h
+--- mac-10.18_orig/Source/Shared/All.h	2023-08-13 18:59:03.453085864 +0200
++++ mac-10.18/Source/Shared/All.h	2023-08-13 19:00:12.732081734 +0200
+@@ -11,7 +11,7 @@
+ **************************************************************************************************/
+ #if !defined(PLATFORM_WINDOWS) && !defined(PLATFORM_APPLE) && !defined(PLATFORM_LINUX)
+     #pragma message("No platform set for MACLib, defaulting to Windows")
+-    #define PLATFORM_WINDOWS
++    #define PLATFORM_LINUX
+ #endif
+ 
+ #ifdef PLATFORM_ANDROID

diff --git a/media-sound/mac/files/mac-10.18-output.patch b/media-sound/mac/files/mac-10.18-output.patch
new file mode 100644
index 000000000000..f790842a93f8
--- /dev/null
+++ b/media-sound/mac/files/mac-10.18-output.patch
@@ -0,0 +1,37 @@
+diff -Naur mac-10.18_orig/Source/Console/Console.cpp mac-10.18/Source/Console/Console.cpp
+--- mac-10.18_orig/Source/Console/Console.cpp	2023-08-14 19:06:29.480902250 +0200
++++ mac-10.18/Source/Console/Console.cpp	2023-08-14 19:07:11.613901402 +0200
+@@ -67,7 +67,7 @@
+ **************************************************************************************************/
+ static void DisplayProperUsage(FILE * pFile)
+ {
+-    fwprintf(pFile, L"Proper Usage: [EXE] [Input File] [Output File] [Mode]\n\n");
++    fwprintf(pFile, L"Proper Usage: [mac] [Input File] [Output File] [Mode]\n\n");
+ 
+     fwprintf(pFile, L"Modes: \n");
+     fwprintf(pFile, L"    Compress (fast): '-c1000'\n");
+@@ -83,15 +83,15 @@
+     fwprintf(pFile, L"    Remove Tag: '-r'\n\n");
+ 
+     fwprintf(pFile, L"Examples:\n");
+-    fwprintf(pFile, L"    Compress: mac.exe \"Metallica - One.wav\" \"Metallica - One.ape\" -c2000\n");
+-    fwprintf(pFile, L"    Compress: mac.exe \"Metallica - One.wav\" \"Metallica - One.ape\" -c2000 -t \"Artist=Metallica|Album=Black|Name=One\"\n");
+-    fwprintf(pFile, L"    Transcode from pipe: ffmpeg.exe -i \"Metallica - One.flac\" -f wav - | mac.exe - \"Metallica - One.ape\" -c2000\n");
+-    fwprintf(pFile, L"    Decompress: mac.exe \"Metallica - One.ape\" \"Metallica - One.wav\" -d\n");
+-    fwprintf(pFile, L"    Decompress: mac.exe \"Metallica - One.ape\" auto -d\n");
+-    fwprintf(pFile, L"    Verify: mac.exe \"Metallica - One.ape\" -v\n");
+-    fwprintf(pFile, L"    Full Verify: mac.exe \"Metallica - One.ape\" -V\n");
+-    fwprintf(pFile, L"    Tag: mac.exe \"Metallica - One.ape\" -t \"Artist=Metallica|Album=Black|Name=One|Comment=\\\"This is in quotes\\\"\"\n");
+-    fwprintf(pFile, L"    Remove tag: mac.exe \"Metallica - One.ape\" -r\n");
++    fwprintf(pFile, L"    Compress: mac \"Metallica - One.wav\" \"Metallica - One.ape\" -c2000\n");
++    fwprintf(pFile, L"    Compress: mac \"Metallica - One.wav\" \"Metallica - One.ape\" -c2000 -t \"Artist=Metallica|Album=Black|Name=One\"\n");
++    fwprintf(pFile, L"    Transcode from pipe: ffmpeg -i \"Metallica - One.flac\" -f wav - | mac - \"Metallica - One.ape\" -c2000\n");
++    fwprintf(pFile, L"    Decompress: mac \"Metallica - One.ape\" \"Metallica - One.wav\" -d\n");
++    fwprintf(pFile, L"    Decompress: mac \"Metallica - One.ape\" auto -d\n");
++    fwprintf(pFile, L"    Verify: mac \"Metallica - One.ape\" -v\n");
++    fwprintf(pFile, L"    Full Verify: mac \"Metallica - One.ape\" -V\n");
++    fwprintf(pFile, L"    Tag: mac \"Metallica - One.ape\" -t \"Artist=Metallica|Album=Black|Name=One|Comment=\\\"This is in quotes\\\"\"\n");
++    fwprintf(pFile, L"    Remove tag: mac \"Metallica - One.ape\" -r\n");
+     fwprintf(pFile, L"    (note: int filenames must be put inside of quotations)\n");
+ }
+ 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/mac/files/
@ 2024-03-05 18:03 Daniel Pielmeier
  0 siblings, 0 replies; 3+ messages in thread
From: Daniel Pielmeier @ 2024-03-05 18:03 UTC (permalink / raw
  To: gentoo-commits

commit:     270fa8bebcc55e33f1951c597f768283891824ac
Author:     Daniel Pielmeier <billie <AT> gentoo <DOT> org>
AuthorDate: Tue Mar  5 18:02:49 2024 +0000
Commit:     Daniel Pielmeier <billie <AT> gentoo <DOT> org>
CommitDate: Tue Mar  5 18:02:49 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=270fa8be

media-sound/mac: Remove unused file

Signed-off-by: Daniel Pielmeier <billie <AT> gentoo.org>

 media-sound/mac/files/mac-10.18-output.patch | 37 ----------------------------
 1 file changed, 37 deletions(-)

diff --git a/media-sound/mac/files/mac-10.18-output.patch b/media-sound/mac/files/mac-10.18-output.patch
deleted file mode 100644
index f790842a93f8..000000000000
--- a/media-sound/mac/files/mac-10.18-output.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-diff -Naur mac-10.18_orig/Source/Console/Console.cpp mac-10.18/Source/Console/Console.cpp
---- mac-10.18_orig/Source/Console/Console.cpp	2023-08-14 19:06:29.480902250 +0200
-+++ mac-10.18/Source/Console/Console.cpp	2023-08-14 19:07:11.613901402 +0200
-@@ -67,7 +67,7 @@
- **************************************************************************************************/
- static void DisplayProperUsage(FILE * pFile)
- {
--    fwprintf(pFile, L"Proper Usage: [EXE] [Input File] [Output File] [Mode]\n\n");
-+    fwprintf(pFile, L"Proper Usage: [mac] [Input File] [Output File] [Mode]\n\n");
- 
-     fwprintf(pFile, L"Modes: \n");
-     fwprintf(pFile, L"    Compress (fast): '-c1000'\n");
-@@ -83,15 +83,15 @@
-     fwprintf(pFile, L"    Remove Tag: '-r'\n\n");
- 
-     fwprintf(pFile, L"Examples:\n");
--    fwprintf(pFile, L"    Compress: mac.exe \"Metallica - One.wav\" \"Metallica - One.ape\" -c2000\n");
--    fwprintf(pFile, L"    Compress: mac.exe \"Metallica - One.wav\" \"Metallica - One.ape\" -c2000 -t \"Artist=Metallica|Album=Black|Name=One\"\n");
--    fwprintf(pFile, L"    Transcode from pipe: ffmpeg.exe -i \"Metallica - One.flac\" -f wav - | mac.exe - \"Metallica - One.ape\" -c2000\n");
--    fwprintf(pFile, L"    Decompress: mac.exe \"Metallica - One.ape\" \"Metallica - One.wav\" -d\n");
--    fwprintf(pFile, L"    Decompress: mac.exe \"Metallica - One.ape\" auto -d\n");
--    fwprintf(pFile, L"    Verify: mac.exe \"Metallica - One.ape\" -v\n");
--    fwprintf(pFile, L"    Full Verify: mac.exe \"Metallica - One.ape\" -V\n");
--    fwprintf(pFile, L"    Tag: mac.exe \"Metallica - One.ape\" -t \"Artist=Metallica|Album=Black|Name=One|Comment=\\\"This is in quotes\\\"\"\n");
--    fwprintf(pFile, L"    Remove tag: mac.exe \"Metallica - One.ape\" -r\n");
-+    fwprintf(pFile, L"    Compress: mac \"Metallica - One.wav\" \"Metallica - One.ape\" -c2000\n");
-+    fwprintf(pFile, L"    Compress: mac \"Metallica - One.wav\" \"Metallica - One.ape\" -c2000 -t \"Artist=Metallica|Album=Black|Name=One\"\n");
-+    fwprintf(pFile, L"    Transcode from pipe: ffmpeg -i \"Metallica - One.flac\" -f wav - | mac - \"Metallica - One.ape\" -c2000\n");
-+    fwprintf(pFile, L"    Decompress: mac \"Metallica - One.ape\" \"Metallica - One.wav\" -d\n");
-+    fwprintf(pFile, L"    Decompress: mac \"Metallica - One.ape\" auto -d\n");
-+    fwprintf(pFile, L"    Verify: mac \"Metallica - One.ape\" -v\n");
-+    fwprintf(pFile, L"    Full Verify: mac \"Metallica - One.ape\" -V\n");
-+    fwprintf(pFile, L"    Tag: mac \"Metallica - One.ape\" -t \"Artist=Metallica|Album=Black|Name=One|Comment=\\\"This is in quotes\\\"\"\n");
-+    fwprintf(pFile, L"    Remove tag: mac \"Metallica - One.ape\" -r\n");
-     fwprintf(pFile, L"    (note: int filenames must be put inside of quotations)\n");
- }
- 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-03-05 18:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-16 10:05 [gentoo-commits] repo/gentoo:master commit in: media-sound/mac/files/ Patrice Clement
  -- strict thread matches above, loose matches on Subject: below --
2023-09-30 14:47 Daniel Pielmeier
2024-03-05 18:03 Daniel Pielmeier

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