r21766 - in /desktop/unstable/anjuta/debian: README.source changelog control.in patches/02_mips_language_c_defined.patch patches/series rules

lethalman-guest at users.alioth.debian.org lethalman-guest at users.alioth.debian.org
Sun Oct 4 09:19:49 UTC 2009


Author: lethalman-guest
Date: Sun Oct  4 09:19:41 2009
New Revision: 21766

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=21766
Log:
  * New upstream release.
  * debian/control.in:
    - Build-Depends:
      + Bump libgtk2.0-dev to 2.14.0, libgdl-1-dev to 2.27.1.
      + Remove libglade2-dev, libgnome2-dev, libgnomeui-dev,
        libgraphviz-dev, binutils-dev.
      + Add missing gconf2 for installing schemas.
    - Package anjuta-dev, according to libanjuta-1.0.pc:
      + Remove shlibs:Depends, libgnomeui and libglade2.
      + Add libgconf2-dev and libgtk2.0-dev.
    - Add perl:Depends to anjuta-common due to perl files in the package.
  * debian/rules:
    - Valgrind plugin is no more included, remove check for kfreebsd.
    - Do not install INSTALL.gz and COPYING.gz.
    - The libfile-manager.so symlink has been fixed upstream.
  * debian/patches/02_mips_language_c_defined.patch:
    - Remove, applied upstream.
  * debian/README.sources:
    - Added, refers to quilt.


Added:
    desktop/unstable/anjuta/debian/README.source
Removed:
    desktop/unstable/anjuta/debian/patches/02_mips_language_c_defined.patch
Modified:
    desktop/unstable/anjuta/debian/changelog
    desktop/unstable/anjuta/debian/control.in
    desktop/unstable/anjuta/debian/patches/series
    desktop/unstable/anjuta/debian/rules

Added: desktop/unstable/anjuta/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/anjuta/debian/README.source?rev=21766&op=file
==============================================================================
--- desktop/unstable/anjuta/debian/README.source (added)
+++ desktop/unstable/anjuta/debian/README.source [utf-8] Sun Oct  4 09:19:41 2009
@@ -1,0 +1,57 @@
+This package uses quilt to manage all modifications to the upstream
+source.  Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+
+To configure quilt to use debian/patches instead of patches, you want
+either to export QUILT_PATCHES=debian/patches in your environment
+or use this snippet in your ~/.quiltrc:
+
+    for where in ./ ../ ../../ ../../../ ../../../../ ../../../../../; do
+        if [ -e ${where}debian/rules -a -d ${where}debian/patches ]; then
+                export QUILT_PATCHES=debian/patches
+        fi
+    done
+
+To get the fully patched source after unpacking the source package, cd to
+the root level of the source package and run:
+
+    quilt push -a
+
+The last patch listed in debian/patches/series will become the current
+patch.
+
+To add a new set of changes, first run quilt push -a, and then run:
+
+    quilt new <patch>
+
+where <patch> is a descriptive name for the patch, used as the filename in
+debian/patches.  Then, for every file that will be modified by this patch,
+run:
+
+    quilt add <file>
+
+before editing those files.  You must tell quilt with quilt add what files
+will be part of the patch before making changes or quilt will not work
+properly.  After editing the files, run:
+
+    quilt refresh
+
+to save the results as a patch.
+
+Alternately, if you already have an external patch and you just want to
+add it to the build system, run quilt push -a and then:
+
+    quilt import -P <patch> /path/to/patch
+    quilt push -a
+
+(add -p 0 to quilt import if needed). <patch> as above is the filename to
+use in debian/patches.  The last quilt push -a will apply the patch to
+make sure it works properly.
+
+To remove an existing patch from the list of patches that will be applied,
+run:
+
+    quilt delete <patch>
+
+You may need to run quilt pop -a to unapply patches first before running
+this command.

Modified: desktop/unstable/anjuta/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/anjuta/debian/changelog?rev=21766&op=diff
==============================================================================
--- desktop/unstable/anjuta/debian/changelog [utf-8] (original)
+++ desktop/unstable/anjuta/debian/changelog [utf-8] Sun Oct  4 09:19:41 2009
@@ -1,9 +1,31 @@
-anjuta (2:2.26.2.2-3) UNRELEASED; urgency=low
-
+anjuta (2:2.28.0.0-1) UNRELEASED; urgency=low
+
+  [ Josselin Mouette ]
   * Conflict/replace libgbf-1-0 (etch) and libgbf-1-1 (lenny) as well as 
     the existing libgbf-1-2 conflict. Closes: #548159.
 
- -- Josselin Mouette <joss at debian.org>  Thu, 24 Sep 2009 13:05:09 +0200
+  [ Luca Bruno ]
+  * New upstream release.
+  * debian/control.in:
+    - Build-Depends:
+      + Bump libgtk2.0-dev to 2.14.0, libgdl-1-dev to 2.27.1.
+      + Remove libglade2-dev, libgnome2-dev, libgnomeui-dev,
+        libgraphviz-dev, binutils-dev.
+      + Add missing gconf2 for installing schemas.
+    - Package anjuta-dev, according to libanjuta-1.0.pc:
+      + Remove shlibs:Depends, libgnomeui and libglade2.
+      + Add libgconf2-dev and libgtk2.0-dev.
+    - Add perl:Depends to anjuta-common due to perl files in the package.
+  * debian/rules:
+    - Valgrind plugin is no more included, remove check for kfreebsd.
+    - Do not install INSTALL.gz and COPYING.gz.
+    - The libfile-manager.so symlink has been fixed upstream.
+  * debian/patches/02_mips_language_c_defined.patch:
+    - Remove, applied upstream.
+  * debian/README.sources:
+    - Added, refers to quilt.
+
+ -- Luca Bruno <lethalman88 at gmail.com>  Sun, 04 Oct 2009 00:08:46 +0200
 
 anjuta (2:2.26.2.2-2) unstable; urgency=low
 

Modified: desktop/unstable/anjuta/debian/control.in
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/anjuta/debian/control.in?rev=21766&op=diff
==============================================================================
--- desktop/unstable/anjuta/debian/control.in [utf-8] (original)
+++ desktop/unstable/anjuta/debian/control.in [utf-8] Sun Oct  4 09:19:41 2009
@@ -8,26 +8,22 @@
                quilt,
                gnome-common,
                gnome-doc-utils,
+               gconf2,
                libglib2.0-dev (>= 2.16.0),
-               libgtk2.0-dev (>= 2.12.10),
+               libgtk2.0-dev (>= 2.14.0),
                liborbit2-dev (>= 1:2.6.0),
-               libglade2-dev (>= 1:2.3.0),
-               libgnome2-dev (>= 2.12.0),
-               libgnomeui-dev (>= 2.12.0),
                libgconf2-dev (>= 2.12.0),
                libgda-4.0-dev,
                libvte-dev (>= 1:0.13.1),
                libxml2-dev (>= 2.4.23),
                libdevhelp-1-dev (>= 0.22),
-               libgdl-1-dev (>= 2.26.0),
+               libgdl-1-dev (>= 2.27.1),
                libgladeui-1-dev (>= 3.6.0),
-               libgraphviz-dev (>= 1.0),
                libneon27-gnutls-dev (>= 0.28.2),
                libsvn-dev (>= 1.5.0),
 # Workaround for #544877
  libsasl2-dev, libneon27-gnutls-dev, libserf-0-0-dev,
                libgtksourceview2.0-dev (>= 2.4.0),
-               binutils-dev (>= 2.15.92),
                libwnck-dev (>= 2.12),
                libunique-dev (>= 1.0.0),
                libwebkit-dev,
@@ -78,7 +74,8 @@
 Architecture: all
 Section: devel
 Suggests: anjuta
-Depends: ${misc:Depends}
+Depends: ${misc:Depends},
+         ${perl:Depends}
 Conflicts: anjuta (<= 1.2.1)
 Replaces: anjuta (<= 1.2.1)
 Description: A GNOME development IDE, for C/C++ - data files
@@ -92,9 +89,8 @@
 Section: devel
 Depends: anjuta (= ${binary:Version}),
          ${misc:Depends},
-         ${shlibs:Depends},
-         libgnomeui-dev (>= 2.12.0),
-         libglade2-dev (>= 1:2.3.0)
+         libgconf2-dev,
+         libgtk2.0-dev
 Conflicts: anjuta (<= 2.0.0)
 Replaces: anjuta (<= 2.0.0)
 Description: A GNOME development IDE, for C/C++ - development files

Modified: desktop/unstable/anjuta/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/anjuta/debian/patches/series?rev=21766&op=diff
==============================================================================
--- desktop/unstable/anjuta/debian/patches/series [utf-8] (original)
+++ desktop/unstable/anjuta/debian/patches/series [utf-8] Sun Oct  4 09:19:41 2009
@@ -1,2 +1,1 @@
-02_mips_language_c_defined.patch
 99_ltmain_as-needed.patch

Modified: desktop/unstable/anjuta/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/anjuta/debian/rules?rev=21766&op=diff
==============================================================================
--- desktop/unstable/anjuta/debian/rules [utf-8] (original)
+++ desktop/unstable/anjuta/debian/rules [utf-8] Sun Oct  4 09:19:41 2009
@@ -10,10 +10,6 @@
 
 LDFLAGS += -Wl,-O1 -Wl,--as-needed
 
-ifeq ($(DEB_HOST_ARCH_OS),kfreebsd)
-DEB_CONFIGURE_EXTRA_FLAGS += --disable-plugin-valgrind
-endif
-
 DEB_CONFIGURE_EXTRA_FLAGS += --disable-scrollkeeper
 
 DEB_DH_INSTALLMIME_ARGS += mime/anjuta.xml
@@ -21,9 +17,8 @@
 DEB_DH_MAKESHLIBS_ARGS_anjuta += -Xusr/lib/anjuta/
 
 install/anjuta::
-	cd debian/tmp/usr/lib/anjuta/ && \
-		rm -f libfile-manager.so.0 libfile-manager.so && \
-		mv libfile-manager.so.0.0.0 libfile-manager.so
+	rm -f debian/tmp/usr/share/doc/anjuta/INSTALL
+	rm -f debian/tmp/usr/share/doc/anjuta/COPYING
 
 clean::
 	rm -vf anjuta.desktop




More information about the pkg-gnome-commits mailing list