[arch-commits] Commit in toolame/repos/community-x86_64 (4 files)
Antonio Rojas
arojas at archlinux.org
Sat Jun 9 09:24:29 UTC 2018
Date: Saturday, June 9, 2018 @ 09:24:28
Author: arojas
Revision: 342156
archrelease: copy trunk to community-x86_64
Added:
toolame/repos/community-x86_64/PKGBUILD
(from rev 342155, toolame/trunk/PKGBUILD)
toolame/repos/community-x86_64/toolame-02l.patch
(from rev 342155, toolame/trunk/toolame-02l.patch)
Deleted:
toolame/repos/community-x86_64/PKGBUILD
toolame/repos/community-x86_64/toolame-02l.patch
-------------------+
PKGBUILD | 63 ++++++++++---------
toolame-02l.patch | 172 ++++++++++++++++++++++++++--------------------------
2 files changed, 120 insertions(+), 115 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2018-06-09 09:24:01 UTC (rev 342155)
+++ PKGBUILD 2018-06-09 09:24:28 UTC (rev 342156)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
-# Contributor: Victor Martinez Romanos <vmromanos at gmail.com>
-
-pkgname=toolame
-pkgver=02l
-pkgrel=10
-pkgdesc="An optimized mpeg 1/2 layer 2 audio encoder"
-arch=('i686' 'x86_64')
-url="http://sourceforge.net/projects/toolame"
-license=('LGPL')
-depends=('glibc')
-source=(http://downloads.sourceforge.net/sourceforge/toolame/toolame-02l.tgz
- toolame-02l.patch)
-md5sums=('5946e2dd78fbb57e54386b3b5d873fee'
- '7fe02630ce8f08bd279a4bce93e64128')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- patch -p0 < ../toolame-02l.patch
- [ "$CARCH" = "x86_64" ] && sed -i "s|-march=i686|-march=x86-64|g" Makefile
- make
-}
-
-package() {
- cd $srcdir/$pkgname-$pkgver
- install -D -m755 toolame $pkgdir/usr/bin/toolame
-}
Copied: toolame/repos/community-x86_64/PKGBUILD (from rev 342155, toolame/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2018-06-09 09:24:28 UTC (rev 342156)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
+# Contributor: Victor Martinez Romanos <vmromanos at gmail.com>
+
+pkgname=toolame
+pkgver=02l
+pkgrel=11
+pkgdesc="An optimized mpeg 1/2 layer 2 audio encoder"
+arch=('x86_64')
+url="http://sourceforge.net/projects/toolame"
+license=('LGPL')
+depends=('glibc')
+source=(https://downloads.sourceforge.net/sourceforge/toolame/toolame-02l.tgz
+ toolame-02l.patch)
+sha256sums=('3b95cd2504bceac4aab2fca03bb3b5974d1d44b5afdd8eb4cc0f0899521bffc4'
+ 'ec5932294146af74e8861537f42621a5df6e78d46ff45e41f1b4e214401f3bde')
+
+prepare() {
+ cd $pkgname-$pkgver
+ patch -p0 < ../toolame-02l.patch
+ [ "$CARCH" = "x86_64" ] && sed -i "s|-march=i686|-march=x86-64|g" Makefile
+ sed -e 's|INLINE void putbits|void putbits|' -i bitstream.h # Fix build
+}
+
+build() {
+ cd "$srcdir"/$pkgname-$pkgver
+ make
+}
+
+package() {
+ cd "$srcdir"/$pkgname-$pkgver
+ install -D -m755 toolame "$pkgdir"/usr/bin/toolame
+}
Deleted: toolame-02l.patch
===================================================================
--- toolame-02l.patch 2018-06-09 09:24:01 UTC (rev 342155)
+++ toolame-02l.patch 2018-06-09 09:24:28 UTC (rev 342156)
@@ -1,86 +0,0 @@
---- Makefile 2006-02-07 16:32:57.000000000 +0100
-+++ Makefile 2006-02-07 16:39:07.000000000 +0100
-@@ -1,6 +1,3 @@
--
--CC = gcc
--
- c_sources = \
- common.c \
- encode.c \
-@@ -28,16 +25,16 @@
-
- #Uncomment this if you want to do some profiling/debugging
- #PG = -g -pg
--PG = -fomit-frame-pointer
-+PG = -pipe
-
- # Optimize flag. 3 is about as high as you can sanely go with GCC3.2.
--OPTIM = -O3
-+OPTIM = -O2
-
- # These flags are pretty much mandatory
- REQUIRED = -DNDEBUG -DINLINE=inline
-
- #pick your architecture
--ARCH = -march=pentium
-+ARCH = -march=i686
- #Possible x86 architectures
- #gcc3.2 => i386, i486, i586, i686, pentium, pentium-mmx
- # pentiumpro, pentium2, pentium3, pentium4, k6, k6-2, k6-3,
-@@ -56,7 +53,7 @@
-
- NEW_02L_FIXES = -DNEWENCODE -DNEWATAN
-
--CC_SWITCHES = $(OPTIM) $(REQUIRED) $(ARCH) $(PG) $(TWEAKS) $(WARNINGS) $(NEW_02L_FIXES)
-+CC_SWITCHES = $(OPTIM) $(REQUIRED) $(ARCH) $(PG) $(FLAGS) $(WARNINGS) $(NEW_02L_FIXES)
-
- PGM = toolame
-
-@@ -75,16 +72,16 @@
- $(CC) $(CC_SWITCHES) -c $< -o $@
-
- $(PGM): $(OBJ) Makefile
-- $(CC) $(PG) -o $(PGM) $(OBJ) $(LIBS)
-+ $(CC) -o $(PGM) $(OBJ) $(LIBS)
-
- clean:
-- -rm $(OBJ) $(DEP)
-+ -rm $(OBJ) $(DEP) 2>/dev/null
-
- megaclean:
-- -rm $(OBJ) $(DEP) $(PGM) \#*\# *~
-+ -rm $(OBJ) $(DEP) $(PGM) \#*\# *~ 2>/dev/null
-
- distclean:
-- -rm $(OBJ) $(DEP) $(PGM) \#* *~ gmon.out gprof* core *shit* *.wav *.mp2 *.c.* *.mp2.* *.da *.h.* *.d *.mp3 *.pcm *.wav logfile
-+ -rm $(OBJ) $(DEP) $(PGM) \#* *~ gmon.out gprof* core *shit* *.wav *.mp2 *.c.* *.mp2.* *.da *.h.* *.d *.mp3 *.pcm *.wav logfile 2>/dev/null
-
- tags: TAGS
-
-
---- audio_read.c 2003-03-01 17:18:30.000000000 -0800
-+++ audio_read.c 2005-04-19 22:32:41.288998770 -0700
-@@ -436,7 +436,7 @@
-
- if (pcm_aiff_data->sampleSize != sizeof (short) * BITS_IN_A_BYTE) {
- fprintf (stderr, "Sound data is not %d bits in \"%s\".\n",
-- sizeof (short) * BITS_IN_A_BYTE, file_name);
-+ (int)(sizeof (short) * BITS_IN_A_BYTE), file_name);
- exit (1);
- }
-
-
---- fft.c 2003-03-01 23:14:45.000000000 -0800
-+++ fft.c 2005-04-19 22:47:49.019986989 -0700
-@@ -1190,9 +1190,9 @@
- static FLOAT atan_t[ATANSIZE];
-
- INLINE FLOAT atan_table(FLOAT y, FLOAT x) {
-- int index;
-+ unsigned int index;
-
-- index = (int)(ATANSCALE * fabs(y/x));
-+ index = (unsigned int)(ATANSCALE * fabs(y/x));
- if (index>=ATANSIZE)
- index = ATANSIZE-1;
-
Copied: toolame/repos/community-x86_64/toolame-02l.patch (from rev 342155, toolame/trunk/toolame-02l.patch)
===================================================================
--- toolame-02l.patch (rev 0)
+++ toolame-02l.patch 2018-06-09 09:24:28 UTC (rev 342156)
@@ -0,0 +1,86 @@
+--- Makefile 2006-02-07 16:32:57.000000000 +0100
++++ Makefile 2006-02-07 16:39:07.000000000 +0100
+@@ -1,6 +1,3 @@
+-
+-CC = gcc
+-
+ c_sources = \
+ common.c \
+ encode.c \
+@@ -28,16 +25,16 @@
+
+ #Uncomment this if you want to do some profiling/debugging
+ #PG = -g -pg
+-PG = -fomit-frame-pointer
++PG = -pipe
+
+ # Optimize flag. 3 is about as high as you can sanely go with GCC3.2.
+-OPTIM = -O3
++OPTIM = -O2
+
+ # These flags are pretty much mandatory
+ REQUIRED = -DNDEBUG -DINLINE=inline
+
+ #pick your architecture
+-ARCH = -march=pentium
++ARCH = -march=i686
+ #Possible x86 architectures
+ #gcc3.2 => i386, i486, i586, i686, pentium, pentium-mmx
+ # pentiumpro, pentium2, pentium3, pentium4, k6, k6-2, k6-3,
+@@ -56,7 +53,7 @@
+
+ NEW_02L_FIXES = -DNEWENCODE -DNEWATAN
+
+-CC_SWITCHES = $(OPTIM) $(REQUIRED) $(ARCH) $(PG) $(TWEAKS) $(WARNINGS) $(NEW_02L_FIXES)
++CC_SWITCHES = $(OPTIM) $(REQUIRED) $(ARCH) $(PG) $(FLAGS) $(WARNINGS) $(NEW_02L_FIXES)
+
+ PGM = toolame
+
+@@ -75,16 +72,16 @@
+ $(CC) $(CC_SWITCHES) -c $< -o $@
+
+ $(PGM): $(OBJ) Makefile
+- $(CC) $(PG) -o $(PGM) $(OBJ) $(LIBS)
++ $(CC) -o $(PGM) $(OBJ) $(LIBS)
+
+ clean:
+- -rm $(OBJ) $(DEP)
++ -rm $(OBJ) $(DEP) 2>/dev/null
+
+ megaclean:
+- -rm $(OBJ) $(DEP) $(PGM) \#*\# *~
++ -rm $(OBJ) $(DEP) $(PGM) \#*\# *~ 2>/dev/null
+
+ distclean:
+- -rm $(OBJ) $(DEP) $(PGM) \#* *~ gmon.out gprof* core *shit* *.wav *.mp2 *.c.* *.mp2.* *.da *.h.* *.d *.mp3 *.pcm *.wav logfile
++ -rm $(OBJ) $(DEP) $(PGM) \#* *~ gmon.out gprof* core *shit* *.wav *.mp2 *.c.* *.mp2.* *.da *.h.* *.d *.mp3 *.pcm *.wav logfile 2>/dev/null
+
+ tags: TAGS
+
+
+--- audio_read.c 2003-03-01 17:18:30.000000000 -0800
++++ audio_read.c 2005-04-19 22:32:41.288998770 -0700
+@@ -436,7 +436,7 @@
+
+ if (pcm_aiff_data->sampleSize != sizeof (short) * BITS_IN_A_BYTE) {
+ fprintf (stderr, "Sound data is not %d bits in \"%s\".\n",
+- sizeof (short) * BITS_IN_A_BYTE, file_name);
++ (int)(sizeof (short) * BITS_IN_A_BYTE), file_name);
+ exit (1);
+ }
+
+
+--- fft.c 2003-03-01 23:14:45.000000000 -0800
++++ fft.c 2005-04-19 22:47:49.019986989 -0700
+@@ -1190,9 +1190,9 @@
+ static FLOAT atan_t[ATANSIZE];
+
+ INLINE FLOAT atan_table(FLOAT y, FLOAT x) {
+- int index;
++ unsigned int index;
+
+- index = (int)(ATANSCALE * fabs(y/x));
++ index = (unsigned int)(ATANSCALE * fabs(y/x));
+ if (index>=ATANSIZE)
+ index = ATANSIZE-1;
+
More information about the arch-commits
mailing list