From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: From: Robert Schwebel Date: Sun, 30 Oct 2011 23:00:49 +0100 Message-Id: <1320012059-24971-18-git-send-email-r.schwebel@pengutronix.de> In-Reply-To: <1320012059-24971-1-git-send-email-r.schwebel@pengutronix.de> References: <20111030220011.GK14918@pengutronix.de> <1320012059-24971-1-git-send-email-r.schwebel@pengutronix.de> Subject: [ptxdist] [PATCH 18/28] eggdbus: clean up patches Reply-To: ptxdist@pengutronix.de List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: ptxdist-bounces@pengutronix.de Errors-To: ptxdist-bounces@pengutronix.de To: ptxdist@pengutronix.de Cc: Robert Schwebel Signed-off-by: Robert Schwebel --- .../0001-make-eggdbus-crosscompile-aware.patch | 55 +++++++++ ...build-tests-only-when-not-cross-compiling.patch | 50 ++++++++ .../eggdbus-0.6/0003-update-autotoolization.patch | 128 ++++++++++++++++++++ patches/eggdbus-0.6/0004-fix-dependencies.patch | 28 +++++ patches/eggdbus-0.6/eggdbus-0.6-autotools.diff | 123 ------------------- patches/eggdbus-0.6/eggdbus-0.6-fix-deps.diff | 23 ---- patches/eggdbus-0.6/eggdbus-0.6-host-tools.diff | 51 -------- patches/eggdbus-0.6/eggdbus-0.6-no-tests.diff | 46 ------- patches/eggdbus-0.6/series | 4 - 9 files changed, 261 insertions(+), 247 deletions(-) create mode 100644 patches/eggdbus-0.6/0001-make-eggdbus-crosscompile-aware.patch create mode 100644 patches/eggdbus-0.6/0002-build-tests-only-when-not-cross-compiling.patch create mode 100644 patches/eggdbus-0.6/0003-update-autotoolization.patch create mode 100644 patches/eggdbus-0.6/0004-fix-dependencies.patch delete mode 100644 patches/eggdbus-0.6/eggdbus-0.6-autotools.diff delete mode 100644 patches/eggdbus-0.6/eggdbus-0.6-fix-deps.diff delete mode 100644 patches/eggdbus-0.6/eggdbus-0.6-host-tools.diff delete mode 100644 patches/eggdbus-0.6/eggdbus-0.6-no-tests.diff delete mode 100644 patches/eggdbus-0.6/series diff --git a/patches/eggdbus-0.6/0001-make-eggdbus-crosscompile-aware.patch b/patches/eggdbus-0.6/0001-make-eggdbus-crosscompile-aware.patch new file mode 100644 index 0000000..39131de --- /dev/null +++ b/patches/eggdbus-0.6/0001-make-eggdbus-crosscompile-aware.patch @@ -0,0 +1,55 @@ +From 23dfa7c24cc1becc6e841cf8f803c4249c4944bb Mon Sep 17 00:00:00 2001 +From: Robert Schwebel +Date: Sat, 29 Oct 2011 19:14:59 +0200 +Subject: [PATCH 1/4] make eggdbus crosscompile aware + +The build system compiles tools like eggdbus-glib-genmarshal and +eggdbus-binding-tool; if you cross compile the package, these fines are +built for the "host" architecture, not for the "build" one, but the +Makefile tries to run the cross compiled binaries then. + +Make it possible to overwrite them from the configure command line. + +Signed-off-by: Robert Schwebel +--- + configure.ac | 10 ++++++++++ + src/eggdbus/Makefile.am | 2 +- + 2 files changed, 11 insertions(+), 1 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 497cb7f..a4e792a 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -34,6 +34,16 @@ AM_CONDITIONAL(MAN_PAGES_ENABLED, test x$enable_man_pages = xyes) + + GTK_DOC_CHECK([1.3]) + ++EGGDBUS_TOOLS="" ++AC_ARG_WITH(eggdbus-tools, ++ AS_HELP_STRING([--with-eggdbus-tools],[path to eggdbus-binding-tool (for cross compilation)]), ++[ ++ EGGDBUS_TOOLS="$withval" ++],[ ++ EGGDBUS_TOOLS="\$(top_builddir)/src/eggdbus" ++]) ++AC_SUBST(EGGDBUS_TOOLS) ++ + #### gcc warning flags + + if test "x$GCC" = "xyes"; then +diff --git a/src/eggdbus/Makefile.am b/src/eggdbus/Makefile.am +index aebb984..95615cd 100644 +--- a/src/eggdbus/Makefile.am ++++ b/src/eggdbus/Makefile.am +@@ -130,7 +130,7 @@ BUILT_SOURCES = \ + $(NULL) + + eggdbus-built-sources.stamp : eggdbus-binding-tool Makefile.am org.freedesktop.DBus.xml org.freedesktop.DBus.Peer.xml org.freedesktop.DBus.Properties.xml org.freedesktop.DBus.Introspectable.xml eggdbus-glib-genmarshal +- EGG_DBUS_GENMARSHAL=$(top_builddir)/src/eggdbus/eggdbus-glib-genmarshal $(top_builddir)/src/eggdbus/eggdbus-binding-tool \ ++ EGG_DBUS_GENMARSHAL=$(EGGDBUS_TOOLS)/eggdbus-glib-genmarshal $(EGGDBUS_TOOLS)/eggdbus-binding-tool \ + --namespace EggDBus \ + --dbus-namespace org.freedesktop.DBus \ + --interfaces-only \ +-- +1.7.7 + diff --git a/patches/eggdbus-0.6/0002-build-tests-only-when-not-cross-compiling.patch b/patches/eggdbus-0.6/0002-build-tests-only-when-not-cross-compiling.patch new file mode 100644 index 0000000..7f6b643 --- /dev/null +++ b/patches/eggdbus-0.6/0002-build-tests-only-when-not-cross-compiling.patch @@ -0,0 +1,50 @@ +From 5b0b8a6846941919d6f1b87dbe1329cdafbcaa8c Mon Sep 17 00:00:00 2001 +From: Robert Schwebel +Date: Sat, 29 Oct 2011 19:14:59 +0200 +Subject: [PATCH 2/4] build tests only when not cross compiling + +When building the tests, the makefiles try to run +eggdbus-glib-genmarshal and eggdbus-binding-tool, but this doesn't +really make any sense when cross compiling. + +The patch below disables the tests completely when cross compiling. + +Signed-off-by: Robert Schwebel +--- + configure.ac | 2 ++ + src/Makefile.am | 8 +++++++- + 2 files changed, 9 insertions(+), 1 deletions(-) + +diff --git a/configure.ac b/configure.ac +index a4e792a..0f31dea 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -44,6 +44,8 @@ AC_ARG_WITH(eggdbus-tools, + ]) + AC_SUBST(EGGDBUS_TOOLS) + ++AM_CONDITIONAL([CROSS_COMPILE], [test "${cross_compiling}" = yes]) ++ + #### gcc warning flags + + if test "x$GCC" = "xyes"; then +diff --git a/src/Makefile.am b/src/Makefile.am +index 60fb584..cec7e43 100644 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -1,5 +1,11 @@ + +-SUBDIRS = eggdbus tests ++if CROSS_COMPILE ++TESTDIR= ++else ++TESTDIR=tests ++endif ++ ++SUBDIRS = eggdbus $(TESTDIR) + + clean-local : + rm -f *~ +-- +1.7.7 + diff --git a/patches/eggdbus-0.6/0003-update-autotoolization.patch b/patches/eggdbus-0.6/0003-update-autotoolization.patch new file mode 100644 index 0000000..8fdf33e --- /dev/null +++ b/patches/eggdbus-0.6/0003-update-autotoolization.patch @@ -0,0 +1,128 @@ +From 0823435d4863aa94d0d47a672beaba462559b645 Mon Sep 17 00:00:00 2001 +From: Michael Olbrich +Date: Sat, 29 Oct 2011 19:14:59 +0200 +Subject: [PATCH 3/4] update autotoolization + +This patch updates the autotool-infrastructure for recent tools. + +Signed-off-by: Michael Olbrich +--- + Makefile.am | 2 ++ + configure.ac | 15 ++++++++------- + docs/eggdbus/Makefile.am | 2 +- + docs/tests/Makefile.am | 2 +- + src/eggdbus/Makefile.am | 2 +- + src/tests/Makefile.am | 2 +- + 6 files changed, 14 insertions(+), 11 deletions(-) + +diff --git a/Makefile.am b/Makefile.am +index c1f1470..9ab8648 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -1,5 +1,7 @@ + ## Process this file with automake to produce Makefile.in + ++ACLOCAL_AMFLAGS = -I m4 ++ + SUBDIRS = src docs + + NULL = +diff --git a/configure.ac b/configure.ac +index 0f31dea..5ad85af 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -1,16 +1,16 @@ + dnl Process this file with autoconf to produce a configure script. + +-AC_PREREQ(2.59c) +-AC_INIT(eggdbus, 0.6, davidz@redhat.com) ++AC_PREREQ(2.64) ++AC_INIT([eggdbus],[0.6],[davidz@redhat.com]) + AM_INIT_AUTOMAKE(eggdbus, 0.6) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS(config.h) + AM_MAINTAINER_MODE + +-AC_ISC_POSIX + AC_PROG_CC +-AM_PROG_CC_STDC ++am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc ++ + AC_HEADER_STDC +-AM_PROG_LIBTOOL ++LT_INIT + AC_PROG_MAKE_SET + AC_PROG_LN_S + AC_SYS_LARGEFILE +@@ -135,7 +135,7 @@ if test "x$GCC" = "xyes"; then + LDFLAGS="-Wl,--as-needed $LDFLAGS" + fi + +-AC_OUTPUT([ ++AC_CONFIG_FILES([ + Makefile + eggdbus-1.pc + src/Makefile +@@ -147,6 +147,7 @@ docs/man/Makefile + docs/tests/Makefile + docs/eggdbus/Makefile + ]) ++AC_OUTPUT + + dnl ========================================================================== + echo " +diff --git a/docs/eggdbus/Makefile.am b/docs/eggdbus/Makefile.am +index 94c00bf..e30e6c3 100644 +--- a/docs/eggdbus/Makefile.am ++++ b/docs/eggdbus/Makefile.am +@@ -34,7 +34,7 @@ IGNORE_HFILES= \ + + # CFLAGS and LDFLAGS for compiling scan program. Only needed + # if $(DOC_MODULE).types is non-empty. +-INCLUDES = \ ++AM_CPPFLAGS = \ + $(DBUS_GLIB_CFLAGS) \ + $(GLIB_CFLAGS) \ + $(GIO_CFLAGS) \ +diff --git a/docs/tests/Makefile.am b/docs/tests/Makefile.am +index 5f7940c..3ba5cba 100644 +--- a/docs/tests/Makefile.am ++++ b/docs/tests/Makefile.am +@@ -29,7 +29,7 @@ IGNORE_HFILES= \ + + # CFLAGS and LDFLAGS for compiling scan program. Only needed + # if $(DOC_MODULE).types is non-empty. +-INCLUDES = \ ++AM_CPPFLAGS = \ + $(DBUS_GLIB_CFLAGS) \ + $(GLIB_CFLAGS) \ + $(GIO_CFLAGS) \ +diff --git a/src/eggdbus/Makefile.am b/src/eggdbus/Makefile.am +index 95615cd..0f96181 100644 +--- a/src/eggdbus/Makefile.am ++++ b/src/eggdbus/Makefile.am +@@ -1,7 +1,7 @@ + + NULL = + +-INCLUDES = \ ++AM_CPPFLAGS = \ + -I$(top_builddir)/src \ + -I$(top_srcdir)/src \ + -DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \ +diff --git a/src/tests/Makefile.am b/src/tests/Makefile.am +index 7bc1b24..71a3e82 100644 +--- a/src/tests/Makefile.am ++++ b/src/tests/Makefile.am +@@ -1,7 +1,7 @@ + + NULL = + +-INCLUDES = \ ++AM_CPPFLAGS = \ + -I$(top_builddir)/src \ + -I$(top_srcdir)/src \ + -DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \ +-- +1.7.7 + diff --git a/patches/eggdbus-0.6/0004-fix-dependencies.patch b/patches/eggdbus-0.6/0004-fix-dependencies.patch new file mode 100644 index 0000000..afb1b56 --- /dev/null +++ b/patches/eggdbus-0.6/0004-fix-dependencies.patch @@ -0,0 +1,28 @@ +From 4a60935e13594350f9a58fc2e4ae8945b0e5af5b Mon Sep 17 00:00:00 2001 +From: Michael Olbrich +Date: Sat, 29 Oct 2011 19:14:59 +0200 +Subject: [PATCH 4/4] fix dependencies + +sone source files of eggdbus-binding-tool need eggdbusenumtypes.h + +Signed-off-by: Michael Olbrich +--- + src/eggdbus/Makefile.am | 2 ++ + 1 files changed, 2 insertions(+), 0 deletions(-) + +diff --git a/src/eggdbus/Makefile.am b/src/eggdbus/Makefile.am +index 0f96181..ab0269d 100644 +--- a/src/eggdbus/Makefile.am ++++ b/src/eggdbus/Makefile.am +@@ -81,6 +81,8 @@ eggdbus_binding_tool_SOURCES = \ + completetype.c completetype.h \ + $(NULL) + ++$(eggdbus_binding_tool_SOURCES) $(libeggdbus_common_la_SOURCES): eggdbusenumtypes.h ++ + eggdbus_binding_tool_CFLAGS = \ + -D_EGG_DBUS_COMPILATION \ + $(GLIB_CFLAGS) \ +-- +1.7.7 + diff --git a/patches/eggdbus-0.6/eggdbus-0.6-autotools.diff b/patches/eggdbus-0.6/eggdbus-0.6-autotools.diff deleted file mode 100644 index 2cc8997..0000000 --- a/patches/eggdbus-0.6/eggdbus-0.6-autotools.diff +++ /dev/null @@ -1,123 +0,0 @@ -From: Michael Olbrich -Subject: update autotoolization - -This patch updates the autotool-infrastructure for recent tools. - -Signed-off-by: Michael Olbrich ---- - Makefile.am | 2 ++ - configure.ac | 15 ++++++++------- - docs/eggdbus/Makefile.am | 2 +- - docs/tests/Makefile.am | 2 +- - src/eggdbus/Makefile.am | 2 +- - src/tests/Makefile.am | 2 +- - 6 files changed, 14 insertions(+), 11 deletions(-) - -Index: b/configure.ac -=================================================================== ---- a/configure.ac -+++ b/configure.ac -@@ -1,16 +1,16 @@ - dnl Process this file with autoconf to produce a configure script. - --AC_PREREQ(2.59c) --AC_INIT(eggdbus, 0.6, davidz@redhat.com) -+AC_PREREQ(2.64) -+AC_INIT([eggdbus],[0.6],[davidz@redhat.com]) - AM_INIT_AUTOMAKE(eggdbus, 0.6) --AM_CONFIG_HEADER(config.h) -+AC_CONFIG_HEADERS(config.h) - AM_MAINTAINER_MODE - --AC_ISC_POSIX - AC_PROG_CC --AM_PROG_CC_STDC -+am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc -+ - AC_HEADER_STDC --AM_PROG_LIBTOOL -+LT_INIT - AC_PROG_MAKE_SET - AC_PROG_LN_S - AC_SYS_LARGEFILE -@@ -135,7 +135,7 @@ if test "x$GCC" = "xyes"; then - LDFLAGS="-Wl,--as-needed $LDFLAGS" - fi - --AC_OUTPUT([ -+AC_CONFIG_FILES([ - Makefile - eggdbus-1.pc - src/Makefile -@@ -147,6 +147,7 @@ docs/man/Makefile - docs/tests/Makefile - docs/eggdbus/Makefile - ]) -+AC_OUTPUT - - dnl ========================================================================== - echo " -Index: b/docs/eggdbus/Makefile.am -=================================================================== ---- a/docs/eggdbus/Makefile.am -+++ b/docs/eggdbus/Makefile.am -@@ -34,7 +34,7 @@ IGNORE_HFILES= \ - - # CFLAGS and LDFLAGS for compiling scan program. Only needed - # if $(DOC_MODULE).types is non-empty. --INCLUDES = \ -+AM_CPPFLAGS = \ - $(DBUS_GLIB_CFLAGS) \ - $(GLIB_CFLAGS) \ - $(GIO_CFLAGS) \ -Index: b/docs/tests/Makefile.am -=================================================================== ---- a/docs/tests/Makefile.am -+++ b/docs/tests/Makefile.am -@@ -29,7 +29,7 @@ IGNORE_HFILES= \ - - # CFLAGS and LDFLAGS for compiling scan program. Only needed - # if $(DOC_MODULE).types is non-empty. --INCLUDES = \ -+AM_CPPFLAGS = \ - $(DBUS_GLIB_CFLAGS) \ - $(GLIB_CFLAGS) \ - $(GIO_CFLAGS) \ -Index: b/src/eggdbus/Makefile.am -=================================================================== ---- a/src/eggdbus/Makefile.am -+++ b/src/eggdbus/Makefile.am -@@ -1,7 +1,7 @@ - - NULL = - --INCLUDES = \ -+AM_CPPFLAGS = \ - -I$(top_builddir)/src \ - -I$(top_srcdir)/src \ - -DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \ -Index: b/src/tests/Makefile.am -=================================================================== ---- a/src/tests/Makefile.am -+++ b/src/tests/Makefile.am -@@ -1,7 +1,7 @@ - - NULL = - --INCLUDES = \ -+AM_CPPFLAGS = \ - -I$(top_builddir)/src \ - -I$(top_srcdir)/src \ - -DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \ -Index: b/Makefile.am -=================================================================== ---- a/Makefile.am -+++ b/Makefile.am -@@ -1,5 +1,7 @@ - ## Process this file with automake to produce Makefile.in - -+ACLOCAL_AMFLAGS = -I m4 -+ - SUBDIRS = src docs - - NULL = diff --git a/patches/eggdbus-0.6/eggdbus-0.6-fix-deps.diff b/patches/eggdbus-0.6/eggdbus-0.6-fix-deps.diff deleted file mode 100644 index dfd6998..0000000 --- a/patches/eggdbus-0.6/eggdbus-0.6-fix-deps.diff +++ /dev/null @@ -1,23 +0,0 @@ -From: Michael Olbrich -Subject: fix dependencies - -sone source files of eggdbus-binding-tool need eggdbusenumtypes.h - -Signed-off-by: Michael Olbrich ---- - src/eggdbus/Makefile.am | 2 ++ - 1 file changed, 2 insertions(+) - -Index: b/src/eggdbus/Makefile.am -=================================================================== ---- a/src/eggdbus/Makefile.am -+++ b/src/eggdbus/Makefile.am -@@ -81,6 +81,8 @@ eggdbus_binding_tool_SOURCES = \ - completetype.c completetype.h \ - $(NULL) - -+$(eggdbus_binding_tool_SOURCES) $(libeggdbus_common_la_SOURCES): eggdbusenumtypes.h -+ - eggdbus_binding_tool_CFLAGS = \ - -D_EGG_DBUS_COMPILATION \ - $(GLIB_CFLAGS) \ diff --git a/patches/eggdbus-0.6/eggdbus-0.6-host-tools.diff b/patches/eggdbus-0.6/eggdbus-0.6-host-tools.diff deleted file mode 100644 index 615af6b..0000000 --- a/patches/eggdbus-0.6/eggdbus-0.6-host-tools.diff +++ /dev/null @@ -1,51 +0,0 @@ -Subject: [patch] make eggdbus crosscompile aware -From: Robert Schwebel - -The build system compiles tools like eggdbus-glib-genmarshal and -eggdbus-binding-tool; if you cross compile the package, these fines are -built for the "host" architecture, not for the "build" one, but the -Makefile tries to run the cross compiled binaries then. - -Make it possible to overwrite them from the configure command line. - -Signed-off-by: Robert Schwebel - ---- - configure.ac | 10 ++++++++++ - src/eggdbus/Makefile.am | 2 +- - 2 files changed, 11 insertions(+), 1 deletion(-) - -Index: eggdbus-0.6/configure.ac -=================================================================== ---- eggdbus-0.6.orig/configure.ac -+++ eggdbus-0.6/configure.ac -@@ -34,6 +34,16 @@ AM_CONDITIONAL(MAN_PAGES_ENABLED, test x - - GTK_DOC_CHECK([1.3]) - -+EGGDBUS_TOOLS="" -+AC_ARG_WITH(eggdbus-tools, -+ AS_HELP_STRING([--with-eggdbus-tools],[path to eggdbus-binding-tool (for cross compilation)]), -+[ -+ EGGDBUS_TOOLS="$withval" -+],[ -+ EGGDBUS_TOOLS="\$(top_builddir)/src/eggdbus" -+]) -+AC_SUBST(EGGDBUS_TOOLS) -+ - #### gcc warning flags - - if test "x$GCC" = "xyes"; then -Index: eggdbus-0.6/src/eggdbus/Makefile.am -=================================================================== ---- eggdbus-0.6.orig/src/eggdbus/Makefile.am -+++ eggdbus-0.6/src/eggdbus/Makefile.am -@@ -130,7 +130,7 @@ BUILT_SOURCES = \ - $(NULL) - - eggdbus-built-sources.stamp : eggdbus-binding-tool Makefile.am org.freedesktop.DBus.xml org.freedesktop.DBus.Peer.xml org.freedesktop.DBus.Properties.xml org.freedesktop.DBus.Introspectable.xml eggdbus-glib-genmarshal -- EGG_DBUS_GENMARSHAL=$(top_builddir)/src/eggdbus/eggdbus-glib-genmarshal $(top_builddir)/src/eggdbus/eggdbus-binding-tool \ -+ EGG_DBUS_GENMARSHAL=$(EGGDBUS_TOOLS)/eggdbus-glib-genmarshal $(EGGDBUS_TOOLS)/eggdbus-binding-tool \ - --namespace EggDBus \ - --dbus-namespace org.freedesktop.DBus \ - --interfaces-only \ diff --git a/patches/eggdbus-0.6/eggdbus-0.6-no-tests.diff b/patches/eggdbus-0.6/eggdbus-0.6-no-tests.diff deleted file mode 100644 index 2ef52ba..0000000 --- a/patches/eggdbus-0.6/eggdbus-0.6-no-tests.diff +++ /dev/null @@ -1,46 +0,0 @@ -Subject: [patch] build tests only when not cross compiling -From: Robert Schwebel - -When building the tests, the makefiles try to run -eggdbus-glib-genmarshal and eggdbus-binding-tool, but this doesn't -really make any sense when cross compiling. - -The patch below disables the tests completely when cross compiling. - -Signed-off-by: Robert Schwebel - ---- - configure.ac | 2 ++ - src/Makefile.am | 8 +++++++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -Index: b/configure.ac -=================================================================== ---- a/configure.ac -+++ b/configure.ac -@@ -44,6 +44,8 @@ AC_ARG_WITH(eggdbus-tools, - ]) - AC_SUBST(EGGDBUS_TOOLS) - -+AM_CONDITIONAL([CROSS_COMPILE], [test "${cross_compiling}" = yes]) -+ - #### gcc warning flags - - if test "x$GCC" = "xyes"; then -Index: b/src/Makefile.am -=================================================================== ---- a/src/Makefile.am -+++ b/src/Makefile.am -@@ -1,5 +1,11 @@ - --SUBDIRS = eggdbus tests -+if CROSS_COMPILE -+TESTDIR= -+else -+TESTDIR=tests -+endif -+ -+SUBDIRS = eggdbus $(TESTDIR) - - clean-local : - rm -f *~ diff --git a/patches/eggdbus-0.6/series b/patches/eggdbus-0.6/series deleted file mode 100644 index 7c07041..0000000 --- a/patches/eggdbus-0.6/series +++ /dev/null @@ -1,4 +0,0 @@ -eggdbus-0.6-host-tools.diff -eggdbus-0.6-no-tests.diff -eggdbus-0.6-autotools.diff -eggdbus-0.6-fix-deps.diff -- 1.7.7 -- ptxdist mailing list ptxdist@pengutronix.de