Hi, 

I am actually in the process of packaging the new upstream version,
but I won't upload it today,
(but these days in any case)

Guenter

On Wed, Oct 26, 2005 at 01:33:03PM +0200, Luk Claes wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> Hi
> 
> Attached the patch for the version I intend to upload. Please respond if
> you don't want this NMU to happen, if you are working yourself on a
> patch or if you think that the attached patch won't work.
> 
> Cheers
> 
> Luk
> 
> - --
> Luk Claes - http://people.debian.org/~luk - GPG key 1024D/9B7C328D
> Fingerprint:   D5AF 25FB 316B 53BB 08E7   F999 E544 DE07 9B7C 328D
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.2 (GNU/Linux)
> 
> iD8DBQFDX2lt5UTeB5t8Mo0RAmWeAJ4hphfEscbPZUSXKwlIRc+gIqJfHACfdHM0
> 3rOJr1JaSm4kxXO75+HMRJk=
> =h3ZS
> -----END PGP SIGNATURE-----

> diff -u sndobj-2.5.1/src/Makefile.oss sndobj-2.5.1/src/Makefile.oss
> --- sndobj-2.5.1/src/Makefile.oss
> +++ sndobj-2.5.1/src/Makefile.oss
> @@ -19,7 +19,7 @@
>  
>  # Flags for includes and libraries
>  
> -CFLAGS =    -O -I$(iDir) $(RTDEFS) -fPIC
> +CFLAGS =    -O2 -I$(iDir) $(RTDEFS) -fPIC
>  LFLAGS =    -O  
>  
>  # Core Library object files
> diff -u sndobj-2.5.1/debian/changelog sndobj-2.5.1/debian/changelog
> --- sndobj-2.5.1/debian/changelog
> +++ sndobj-2.5.1/debian/changelog
> @@ -1,3 +1,11 @@
> +sndobj (2.5.1-1.1) unstable; urgency=medium
> +
> +  * Non-maintainer upload.
> +  * C++ ABI transition.
> +  * Use -O2 instead of -0 (Closes: #282821).
> +  
> + -- Luk Claes <[EMAIL PROTECTED]>  Tue, 25 Oct 2005 19:45:41 +0200
> +
>  sndobj (2.5.1-1) unstable; urgency=low
>  
>    * New upstream version
> diff -u sndobj-2.5.1/debian/control sndobj-2.5.1/debian/control
> --- sndobj-2.5.1/debian/control
> +++ sndobj-2.5.1/debian/control
> @@ -2,20 +2,21 @@
>  Priority: optional
>  Maintainer: Guenter Geiger (Debian/GNU) <[EMAIL PROTECTED]>
>  Build-Depends: debhelper (>> 3.0.0), fftw-dev
> -Standards-Version: 3.8.0
> +Standards-Version: 3.5.0
>  
>  Package: libsndobj-dev
>  Section: devel
>  Architecture: any
> -Depends: libsndobj2 (= ${Source-Version}), fftw-dev
> +Depends: libsndobj2c2 (= ${Source-Version}), fftw-dev
>  Description: Sound Object development files
>   The Sound Object Library is an object-oriented audio processing library. 
>   It provides objects for synthesis and processing of sound that can be used 
>   to build applications for computer-generated music.
>   
> -Package: libsndobj2
> +Package: libsndobj2c2
>  Section: libs
>  Architecture: any
> +Conflicts: libsndobj2
>  Depends: ${shlibs:Depends}
>  Description: Sound Object library
>   The Sound Object Library is an object-oriented audio processing library.
> reverted:
> --- sndobj-2.5.1/debian/libsndobj2.dirs
> +++ sndobj-2.5.1.orig/debian/libsndobj2.dirs
> @@ -1,2 +0,0 @@
> -usr/lib
> -usr/include
> diff -u sndobj-2.5.1/debian/rules sndobj-2.5.1/debian/rules
> --- sndobj-2.5.1/debian/rules
> +++ sndobj-2.5.1/debian/rules
> @@ -70,11 +70,11 @@
>       dh_installdirs
>  
>       # Add here commands to install the package into debian/tmp
> -     $(MAKE) install LIBDEST=$(CURDIR)/debian/libsndobj$(major)/usr/lib 
> INCDEST=$(CURDIR)/debian/libsndobj$(major)/usr/include
> -     -rm -r `find $(CURDIR)/debian/libsndobj$(major)/usr/include -name CVS`
> -     install -m 644 lib/libsndobj.so.$(version) 
> $(CURDIR)/debian/libsndobj$(major)/usr/lib
> -     ln -s libsndobj.so.$(version) 
> $(CURDIR)/debian/libsndobj$(major)/usr/lib/libsndobj.so.$(major)
> -     ln -s libsndobj.so.$(version) 
> $(CURDIR)/debian/libsndobj$(major)/usr/lib/libsndobj.so
> +     $(MAKE) install LIBDEST=$(CURDIR)/debian/libsndobj$(major)c2/usr/lib 
> INCDEST=$(CURDIR)/debian/libsndobj$(major)c2/usr/include
> +     -rm -r `find $(CURDIR)/debian/libsndobj$(major)c2/usr/include -name CVS`
> +     install -m 644 lib/libsndobj.so.$(version) 
> $(CURDIR)/debian/libsndobj$(major)c2/usr/lib
> +     ln -s libsndobj.so.$(version) 
> $(CURDIR)/debian/libsndobj$(major)c2/usr/lib/libsndobj.so.$(major)
> +     ln -s libsndobj.so.$(version) 
> $(CURDIR)/debian/libsndobj$(major)c2/usr/lib/libsndobj.so
>  
>  # Build architecture-independent files here.
>  binary-indep: build install
> @@ -84,7 +84,7 @@
>  binary-arch: build install
>       dh_testdir
>       dh_testroot
> -     dh_movefiles --sourcedir=debian/libsndobj$(major)
> +     dh_movefiles --sourcedir=debian/libsndobj$(major)c2
>  
>  #    dh_installdebconf       
>       dh_installdocs
> only in patch2:
> unchanged:
> --- sndobj-2.5.1.orig/debian/libsndobj2c2.dirs
> +++ sndobj-2.5.1/debian/libsndobj2c2.dirs
> @@ -0,0 +1,2 @@
> +usr/lib
> +usr/include



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to