Change log for amoeba package in Debian

115 of 15 results
Published in bookworm-release
Published in sid-release
amoeba (1.1-31) unstable; urgency=medium

  * Convert package to using dh. (Closes: #999190)
    * Bump debhelper dependency and compat to 13.
  * Move from GTK+ 2 to 3. (Closes: #967253)
    * 29-no-dynamic-gtk.diff: New patch, don't load GDK and GTK+ dynamically;
      all modern Linux systems have this, and we have a hard dependency in
      the Debian package anyway.
    * 30-fix-gtk-deprecations.diff: New patch, fix all GTK+ 2 deprecation
      warnings/errors.
    * 31-move-to-gtk3.diff: New patch, Build and link against GTK+ 3 instead
      of 2 (needs only a few small changes from GtkObject to GObject after
      the last patch has been applied).
    * Build-Depend on libgtk-3-dev instead of libgtk2.0-dev.

 -- Steinar H. Gunderson <email address hidden>  Mon, 15 Nov 2021 00:04:44 +0100
Published in bullseye-release
Published in buster-release
Superseded in sid-release
amoeba (1.1-30) unstable; urgency=medium

  * 28-freetype-config.diff: New patch, use pkg-config instead of
    freetype-config, which no longer exists in newer Freetype.
    (Closes: #911461)

 -- Steinar H. Gunderson <email address hidden>  Sat, 20 Oct 2018 14:59:58 +0200
Superseded in buster-release
Published in stretch-release
Superseded in sid-release
amoeba (1.1-29.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Fix FTBFS with libpng16 -- missing include string.h (Closes: #742559)
  * Add Misc:Depends to the binary package (fix lintian warning)

 -- Tobias Frost <email address hidden>  Fri, 08 Jan 2016 16:18:52 +0100

Available diffs

Superseded in stretch-release
Superseded in sid-release
amoeba (1.1-29) unstable; urgency=medium

  * 26-alsa-support.diff: Only try to compile ALSA support if the headers have
    new enough API; will prevent us from trying to compile against OSS4's
    ALSA emulation (which has an ancient version) on non-Linux platforms.
    Fixes FTBFS on Hurd and FreeBSD. (We still link against the library,
    although then uselessly on those platforms.)

 -- Steinar H. Gunderson <email address hidden>  Fri, 01 May 2015 20:22:46 -0700

Available diffs

Superseded in stretch-release
Superseded in sid-release
amoeba (1.1-28) unstable; urgency=high

  * Add missing build-dependency on libasound2-dev; fixed FTBFS.
    (Closes: #783523)

 -- Steinar H. Gunderson <email address hidden>  Wed, 29 Apr 2015 21:08:53 -0700
Superseded in sid-release
amoeba (1.1-27) unstable; urgency=medium


  * debian/patches/25-libpng-1.5-fixes.diff: Remove a stray variable declaration
    that causes compilation problems with some versions of libpng.
  * 26-alsa-support.diff: New patch, support ALSA as well as OSS
    (including support for multiple sound cards if you are using the GTK+ GUI).

 -- Steinar H. Gunderson <email address hidden>  Sun, 19 Apr 2015 20:02:33 +0200
Published in jessie-release
Published in wheezy-release
Superseded in sid-release
amoeba (1.1-26) unstable; urgency=low


  * 24-build-on-kfreebsd.diff: Added missing __linux__ -> __unix__
    replacements in opengl/glwindow.h; should fix building on non-Linux
    platforms. (Closes: #673201)

 -- Steinar H. Gunderson <email address hidden>  Thu, 17 May 2012 10:22:37 +0000

Available diffs

Superseded in sid-release
amoeba (1.1-25) unstable; urgency=low


  * debian/patches/25-libpng-1.5-fixes.diff: New patch, fixes compilation
    with libpng 1.5 or newer. (Closes: #650593)

 -- Steinar H. Gunderson <email address hidden>  Mon, 14 May 2012 19:07:31 +0200
Superseded in wheezy-release
Superseded in sid-release
amoeba (1.1-24) unstable; urgency=low


  * Remove obsolete file debian/patches/debian-changes-1.1-21
    (see changelog for 1.1-22).
  * 24-build-on-kfreebsd.diff: New patch, based on work by
    Christoph Egger; should make Amoeba compile and work on kFreeBSD.

 -- Steinar H. Gunderson <email address hidden>  Sat, 14 Apr 2012 14:11:44 +0200

Available diffs

Superseded in wheezy-release
Superseded in sid-release
amoeba (1.1-23) unstable; urgency=low


  * Build-Depend on libjpeg-dev instead of libjpeg62-dev.
    (Closes: #649760) 

 -- Steinar H. Gunderson <email address hidden>  Wed, 23 Nov 2011 21:46:16 +0100
Superseded in wheezy-release
Superseded in sid-release
amoeba (1.1-22) unstable; urgency=low
  * Remove URL to Underscore from the description, as the domain no longer    exists. (Closes: #556401)  * 23-link-with-libdl.diff: Link with -ldl to avoid FTBFS with GNU gold.    Patch from Ubuntu. (Closes: #556751)  * Fold debian-changes-1.1-21 into 22-tighten-up-non-const-chars.diff,    where it was meant to be all along.  * Update Standards-Version to 3.9.1 (no changes needed). -- Steinar H. Gunderson <email address hidden>  Mon, 21 Feb 2011 02:04:59 +0100
Superseded in wheezy-release
Superseded in sid-release
Published in squeeze-release
amoeba (1.1-21) unstable; urgency=low


  * Switch to dpkg-source 3.0 (quilt) format.
    * Add debian/source/format file.
    * Remove everything related to quilt from debian/rules file.
    * Remove quilt build-dependency.
  * Refer explicitly to GPL-2 in the debian/copyright file.
  * Update Standards-Version to 3.8.4 (no changes needed).
  * 20-fix-invalid-conversion.diff: Don't write to a char*
    returned by strchr() on a const char *. Based on a patch from Ubuntu.
  * 21-dont-link-uselessly.diff: Don't add -lXext -lvorbis -logg
    explicitly during linking, as we don't need any of their symbols directly.
  * 22-tighten-up-non-const-chars.diff: Tighten up the use of non-const char
    pointers in prototypes, so that we don't make any assumptions that
    string literals can be used as (non-const) char*. Removes a slew of
    warnings, and probably FTBFS at some future point.

 -- Steinar H. Gunderson <email address hidden>  Thu, 06 May 2010 01:56:22 +0200
Superseded in squeeze-release
Superseded in sid-release
amoeba (1.1-20) unstable; urgency=low


  * Reinstate the GUI.
    * Remove 19-disable-gtk-config-interface.diff.
    * 19-update-config-interface-to-gtk2.diff: New patch, port GUI to GTK+ 2.
      (Closes: #511953)
    * 09-dont-set-gtk-locale.diff: Change to setting C locale explicitly,
      since GTK+ 2 sets locale unconditionally. Rename to 09-set-c-locale.diff.
    * Build-depend on libgtk2.0-dev.
    * Add Recommends on libgtk2.0-0.
  * Change build-dependency from outdated package from xlibmesa-gl-dev to
    libgl1-mesa-dev.

 -- Steinar H. Gunderson <email address hidden>  Wed, 15 Jul 2009 00:39:47 +0200
Superseded in sid-release
amoeba (1.1-19.1) unstable; urgency=low


  * Non-maintainer upload.
  * Disable GUI configuration interface, based on GTK 1.2, which is
    scheduled for removal. The configuration settings can still be
    set on the command line. (Closes: 511953)

 -- Moritz Muehlenhoff <email address hidden>  Sun, 22 Feb 2009 12:09:22 +0100
Superseded in squeeze-release
Superseded in sid-release
Published in lenny-release
amoeba (1.1-19) unstable; urgency=low


  * Update Standards-Version to 3.7.2 (no changes needed).
  * Update to debhelper compatibility mode version 5 (no changes needed).
    * Update versioned build-dependency on debhelper.
  * Don't ignore all make clean errors; use "[ ! -f Makefile ] ||" instead of
    the hyphen.
  * Make empty binary-indep target, to make lintian happy.
  * Remove obsolete DEB_BUILD_OPTIONS checking; we always build with -g
    anyway, and INSTALL_PROGRAM isn't ever used.
  * Use nroff escape \[:o] instead of verbatim ISO-8859-1 character รถ in the
    man page.
  * Switch to quilt for managing patches.
    * Build-depend on quilt (>= 0.40).
    * Make debian/patches/ directory.
    * Include /usr/share/quilt/quilt.make in debian/rules, and depend on patch
      and unpatch targets. Split clean into a dummy clean and a real-clean,
      as unpatch fiddles with the Makefile and we thus want unpatch to run
      after make clean. (Actually, clean needs to patch first, then clean,
      then unpatch. Yes, it's kind of silly.)
    * Split monolithic diff into smaller diffs (and clean up some of them):
      * 01-debian-policy-cflags.diff: Policy-compliant CFLAGS/CXXFLAGS.
      * 02-executable-filename.diff: Call output executable "amoeba".
      * 03-shell-in-makefile.diff: Use $(shell foo) instead of `foo`.
      * 04-install-target.diff: Add an install target to the Makefile.
      * 05-nudge-texcoords.diff: Various "nudges" to texture coordinates to
        avoid gaps. (Note: I've since found out that the notion of "nudging"
        is all wrong and will probably cause some smearing of the texture.
        However, there are so many broken drivers out there, and the problem
        in backgroundhandler.cpp will probably require border texels and other
        ugliness, so I'm leaving it as-is for now.) [minor tidying done]
      * 06-proper-curve-cleaning.diff: Handle the special case "hashtable of
        curves", so that the destructors are called properly. [minor tidying
        done]
      * 07-drop-compiled-vertex-arrays.diff: Don't use compiled vertex arrays
        in twisthandler; I believe this was done in its time to work around a
        bug in the ATI FireGL drivers. Probably fixed now, but I don't have
        the opportunity to check right now, so it's staying for now.
        [minor tidying done]
      * 08-single-point-spline.diff: Handle the special case of a single-point
        spline correctly, without causing Valgrind hits. [minor tidying done]
      * 09-dont-set-gtk-locale.diff: Don't set the (GTK) locale, as it causes
        problems reading the object files depending on LC_CTYPE.
      * 10-xopendisplay.diff: Give NULL instead of 0 to XOpenDisplay (as it
        expects a char *; it's only cosmetic, though), and give a proper error
        message if it fails, instead of crashing. [minor tidying done]
      * 11-friendly-error-messages.diff: Give slightly friendlier messages in
        common, fatal error situations. [minor tidying done]
      * 12-i386-asm.diff: Don't try to use i386 assembler on non-i386
        platforms.
      * 13-libpng-64-bit-fixes.diff: Fix PNG loading issues on systems where
        sizeof(png_uint_32) > sizeof(unsigned int).
      * 14-properly-delete-vfcache.diff: Use delete[] instead of delete on
        vfcache, as it was allocated using new[].
      * 15-fix-pakfile-endianness.diff: Make the packer work regardless of
        system endianness.
      * 16-pakfile-debian-location.diff: Make the packer look for the pakfile
        where the amoeba-data package puts it, instead of in the local
        directory.
      * 17-fix-audio-endianness.diff: Make the audio system work properly 
        regardless of system endianness.
      * 18-declare-glxgetprocaddressarb.diff: Manually declare
        glXGetProcAddressARB, as not all OpenGL headers do. [minor tidying
        done]
    * Two patches were dropped from the monolithic diff:
      * The first change caused wglGetProcAddressARB() to be used instead of
        wglGetProcAddress() on Windows, which is irrelevant for Debian.
      * The other change used "static struct" instead of "struct" in the global
        texture array, without any apparent reason.

 -- Steinar H. Gunderson <email address hidden>  Fri, 29 Jun 2007 12:02:25 +0200
115 of 15 results