diff options
Diffstat (limited to 'packages/monotone')
23 files changed, 0 insertions, 757 deletions
diff --git a/packages/monotone/files/configure.ac-no-sync-with-stdio-0.25.patch b/packages/monotone/files/configure.ac-no-sync-with-stdio-0.25.patch deleted file mode 100644 index d2a77c6794..0000000000 --- a/packages/monotone/files/configure.ac-no-sync-with-stdio-0.25.patch +++ /dev/null @@ -1,72 +0,0 @@ -*** monotone-0.25/configure.ac.orig Mon Apr 17 12:08:14 2006 ---- monotone-0.25/configure.ac Mon Apr 17 12:08:44 2006 -*************** -*** 471,537 **** - AC_CHECK_FUNC(getaddrinfo, [AM_CONDITIONAL(MISSING_GETADDRINFO, false)], - [AM_CONDITIONAL(MISSING_GETADDRINFO, true)]) - -- # Check whether sync_with_stdio(false) run on C++ streams works correctly. -- # It causes strange problems (EOF returned too early) on some versions of -- # MinGW. -- # -- # In order to check for this issue, we first generate a large input file -- # (over 128KB) and then try to read it (using a buffer size over 512 -- # bytes). If the amount of bytes read does not match the generated input, -- # the implementation is broken. -- AC_MSG_CHECKING(whether C++ streams support sync_with_stdio) -- AC_RUN_IFELSE([AC_LANG_SOURCE([ -- /* -- * Generates the input file. -- */ -- #include <cstdlib> -- #include <fstream> -- -- int -- main(void) -- { -- std::ofstream ofs("_conftest.dat"); -- for (int i = 0; i < 50000; i++) -- ofs << "0123456789\r\n"; -- ofs.close(); -- -- return EXIT_SUCCESS; -- } -- ])]) -- AC_RUN_IFELSE([AC_LANG_SOURCE([ -- /* -- * Reads the input file. -- */ -- #include <cstdlib> -- #include <fstream> -- #include <iostream> -- -- int -- main(int argc, char * argv[]) -- { -- if (argc == 1) -- return EXIT_SUCCESS; -- -- std::cin.sync_with_stdio(false); -- int length = 0; -- while (std::cin.good()) -- { -- char buffer@<:@1024@:>@; -- (void)std::cin.read(buffer, sizeof(buffer)); -- length += std::cin.gcount(); -- } -- -- return length == 600000 ? EXIT_SUCCESS : EXIT_FAILURE; -- } -- ])], -- [if ./conftest$ac_exeext check_it_now <_conftest.dat; then -- AC_MSG_RESULT(yes) - AC_DEFINE(SYNC_WITH_STDIO_WORKS, 1, - [Define to 1 if sync_with_stdio works fine on C++ streams]) -- else -- AC_MSG_RESULT(no) -- fi -- rm -f _conftest.dat]) - - # allow compiling with different flags/optimisation - # for monotone versus libs, useful for testing. ---- 471,478 ---- diff --git a/packages/monotone/files/configure.ac-no-sync-with-stdio-0.26.patch b/packages/monotone/files/configure.ac-no-sync-with-stdio-0.26.patch deleted file mode 100644 index 4c56061964..0000000000 --- a/packages/monotone/files/configure.ac-no-sync-with-stdio-0.26.patch +++ /dev/null @@ -1,127 +0,0 @@ ---- /tmp/configure.ac 2006-04-28 16:40:37.670982792 +0200 -+++ monotone-0.26/configure.ac 2006-04-28 16:42:22.762006528 +0200 -@@ -446,124 +446,8 @@ - AC_CHECK_FUNC(getaddrinfo, [AM_CONDITIONAL(MISSING_GETADDRINFO, false)], - [AM_CONDITIONAL(MISSING_GETADDRINFO, true)]) - --# Check whether sync_with_stdio(false) run on C++ streams works correctly. --# It causes strange problems (EOF returned too early) on some versions of --# MinGW and OS X. The first test is for the MinGW issue, the second for --# the OS X issue. --# --# In order to check for this issue, we first generate a large input file --# (over 128KB) and then try to read it (using a buffer size over 512 --# bytes). If the amount of bytes read does not match the generated input, --# the implementation is broken. --AC_MSG_CHECKING(whether C++ streams support sync_with_stdio) --AC_RUN_IFELSE([AC_LANG_SOURCE([ --/* -- * Generates the input file. -- */ --#include <cstdlib> --#include <fstream> -- --int --main(void) --{ -- std::ofstream ofs("_conftest.dat"); -- for (int i = 0; i < 50000; i++) -- ofs << "0123456789\r\n"; -- ofs.close(); -- -- return EXIT_SUCCESS; --} --])]) --AC_RUN_IFELSE([AC_LANG_SOURCE([ --/* -- * Reads the input file. -- */ --#include <cstdlib> --#include <fstream> --#include <iostream> -- --int --main(int argc, char * argv[]) --{ -- if (argc == 1) -- return EXIT_SUCCESS; -- -- std::cin.sync_with_stdio(false); -- int length = 0; -- while (std::cin.good()) -- { -- char buffer@<:@1024@:>@; -- (void)std::cin.read(buffer, sizeof(buffer)); -- length += std::cin.gcount(); -- } -- -- return length == 600000 ? EXIT_SUCCESS : EXIT_FAILURE; --} --])], -- [if ./conftest$ac_exeext check_it_now <_conftest.dat; then -- AC_MSG_RESULT(yes) -- ac_cv_sync_with_stdio=yes -- else -- AC_MSG_RESULT(no) -- ac_cv_sync_with_stdio=no -- fi -- rm -f _conftest.dat]) -- -- --# To check for this issue, we have a writer with a short delay between writes, --# and a reader who has set sync_with_stdio(false). --AC_MSG_CHECKING(whether C++ streams support sync_with_stdio 2) --AC_RUN_IFELSE([AC_LANG_SOURCE([ --#include <cstdlib> --#include <iostream> --#ifdef WIN32 --#define WIN32_LEAN_AND_MEAN --#include <windows.h> --#define sleep(x) Sleep((x) * 1000) --#else --#include <unistd.h> --#endif -- --int --main(int argc, char * argv[]) --{ -- if (argc == 1) -- return EXIT_SUCCESS; -- -- if (argc == 2) -- { -- std::cin.sync_with_stdio(false); -- int length = 0; -- while (std::cin.good()) -- { -- char buffer@<:@1024@:>@; -- (void)std::cin.read(buffer, sizeof(buffer)); -- length += std::cin.gcount(); -- } -- -- return length == 82 ? EXIT_SUCCESS : EXIT_FAILURE; -- } -- else -- { -- std::cout << "1234567890123456789012345678901234567890" << std::endl; -- sleep(1); -- std::cout << "1234567890123456789012345678901234567890" << std::endl; -- } -- return EXIT_SUCCESS; --} --])], -- [if ./conftest$ac_exeext check_it_now please | ./conftest$ac_exeext foo; then -- AC_MSG_RESULT(yes) -- ac_cv_sync_with_stdio_2=yes -- else -- AC_MSG_RESULT(no) -- ac_cv_sync_with_stdio_2=no -- fi]) -- --if test $ac_cv_sync_with_stdio = yes && test $ac_cv_sync_with_stdio_2 = yes; then - AC_DEFINE(SYNC_WITH_STDIO_WORKS, 1, - [Define to 1 if sync_with_stdio works fine on C++ streams]) --fi - - # allow compiling with different flags/optimisation - # for monotone versus libs, useful for testing. diff --git a/packages/monotone/files/configure.ac-no-sync-with-stdio-0.31.patch b/packages/monotone/files/configure.ac-no-sync-with-stdio-0.31.patch deleted file mode 100644 index 60759fb727..0000000000 --- a/packages/monotone/files/configure.ac-no-sync-with-stdio-0.31.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- /tmp/configure.ac 2006-12-18 12:14:47.000000000 +0100 -+++ monotone-0.31/configure.ac 2006-12-18 12:15:58.022227000 +0100 -@@ -73,7 +73,6 @@ - AC_CXX_STLPORT_HASHMAP - AC_CXX_TR1_UNORDERED_MAP - AC_CXX_TR1_UNORDERED_MAP_CONST_CORRECT --AC_CXX_SYNC_WITH_STDIO_WORKS - AC_CXX_TEMPLATE_STATIC_CONST_BUG - - # Checks for typedefs and structures. diff --git a/packages/monotone/files/configure.ac.patch b/packages/monotone/files/configure.ac.patch deleted file mode 100644 index 2d3e75531a..0000000000 --- a/packages/monotone/files/configure.ac.patch +++ /dev/null @@ -1,36 +0,0 @@ ---- monotone-0.21/configure.ac.orig 2005-07-17 19:23:29.580829434 -0700 -+++ monotone-0.21/configure.ac 2005-07-17 19:28:50.237223287 -0700 -@@ -82,9 +82,14 @@ - AC_DEFUN([BOOST_VERSION_CHECK], - [AC_CACHE_CHECK([boost version 1.32 or newer], ac_cv_version_boost, - [ -- AC_TRY_RUN( -+ AC_TRY_COMPILE( - [#include <boost/version.hpp> -- int main() { return (BOOST_VERSION < 103200); }], -+ #if BOOST_VERSION < 103200 -+ int main() { return (BOOST_VERSION < 103200); } -+ #else -+ #error boost version is ok -+ #endif -+ ], - ac_cv_version_boost=yes, - ac_cv_version_boost=no) - ]) -@@ -101,9 +106,14 @@ - AC_DEFUN([BOOST_FIX_VERSION], - [AC_CACHE_CHECK([if boost requires extra flags to compile], ac_fix_boost, - [ -- AC_TRY_RUN( -+ AC_TRY_COMPILE( - [#include <boost/version.hpp> -- int main() { return (BOOST_VERSION != 103200); }], -+ #if BOOST_VERSION != 103200 -+ int main() { return (BOOST_VERSION != 103200); } -+ #else -+ #error boost version is not 1.32.0 -+ #endif -+ ], - ac_fix_boost=yes, - ac_fix_boost=no) - ]) diff --git a/packages/monotone/files/cryptopp-endianness.patch b/packages/monotone/files/cryptopp-endianness.patch deleted file mode 100644 index 5d52b079bb..0000000000 --- a/packages/monotone/files/cryptopp-endianness.patch +++ /dev/null @@ -1,40 +0,0 @@ ---- monotone-0.20/.pc/cryptopp-endianness.patch/cryptopp/config.h 2005-07-05 22:56:31.000000000 -0700 -+++ monotone-0.20/cryptopp/config.h 2005-07-12 12:01:02.626693397 -0700 -@@ -5,15 +5,28 @@ - - // ***************** Important Settings ******************** - --// define this if running on a big-endian CPU --#if !defined(IS_LITTLE_ENDIAN) && (defined(__BIG_ENDIAN__) || defined(__sparc) || defined(__sparc__) || defined(__hppa__) || defined(__mips__) || (defined(__MWERKS__) && !defined(__INTEL__))) --# define IS_BIG_ENDIAN --#endif -- --// define this if running on a little-endian CPU --// big endian will be assumed if IS_LITTLE_ENDIAN is not defined --#ifndef IS_BIG_ENDIAN --# define IS_LITTLE_ENDIAN -+// this is GCC specific, but it is safe - the original version -+// of this file defaulted to little endian without warning... -+// The code will error out if an attempt is made to define -+// IS_LITTLE_ENDIAN or IS_BIG_ENDIAN elsewhere -+#ifndef __BYTE_ORDER -+# include <endian.h> -+# ifndef __BYTE_ORDER -+# error cryptopp needs the correct byte order from the compiler -+# endif -+#endif -+#if defined(IS_LITTLE_ENDIAN) || defined(IS_BIG_ENDIAN) -+ // It doesn't work to define this on the command line, at least -+ // with the original version -+# error cryptopp - unexpected endianness definition -+#endif -+ -+#if defined(__LITTLE_ENDIAN) && __BYTE_ORDER == __LITTLE_ENDIAN -+# define IS_LITTLE_ENDIAN -+#elif defined(__BIG_ENDIAN) && __BYTE_ORDER == __BIG_ENDIAN -+# define IS_BIG_ENDIAN -+#else -+# error cryptopp - unknown endianness - #endif - - // define this if you want to disable all OS-dependent features, diff --git a/packages/monotone/files/txt2c-cross-post-0.22.patch b/packages/monotone/files/txt2c-cross-post-0.22.patch deleted file mode 100644 index 18ff9eb87c..0000000000 --- a/packages/monotone/files/txt2c-cross-post-0.22.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- monotone-0.23/Makefile.am.orig 2005-10-02 23:32:09.876678400 -0700 -+++ monotone-0.23/Makefile.am 2005-10-02 23:32:13.940934147 -0700 -@@ -427,7 +427,7 @@ - CLEANFILES = $(BUILT_SOURCES_CLEAN) $(EPS_FIGURES) - - txt2c: txt2c.cc Makefile -- $(CXX) $(CXXFLAGS) -o $@ $< -+ $(BUILD_CXX) $(BUILD_CXXFLAGS) -o $@ $< - chmod 0755 $@$(EXEEXT) - - apidocs: diff --git a/packages/monotone/files/txt2c-cross.patch b/packages/monotone/files/txt2c-cross.patch deleted file mode 100644 index a50b8135fc..0000000000 --- a/packages/monotone/files/txt2c-cross.patch +++ /dev/null @@ -1,15 +0,0 @@ -# txt2c runs (only) on the build system. This is a fairly horrible -# hack to make it compile with the build system compiler, not the -# target compiler. - ---- monotone-0.19/Makefile.am.orig 2005-07-04 23:39:44.420722558 -0700 -+++ monotone-0.19/Makefile.am 2005-07-04 23:36:50.267121331 -0700 -@@ -356,7 +356,7 @@ - CLEANFILES = $(BUILT_SOURCES_CLEAN) $(EPS_FIGURES) - - txt2c: txt2c.cc Makefile -- $(CXX) -Wall -o $@ $< -+ $(BUILD_CXX) -Wall -o $@ $< - chmod 0755 $@$(EXEEXT) - - apidocs: diff --git a/packages/monotone/files/uclibc.database.hh.stdarg.patch b/packages/monotone/files/uclibc.database.hh.stdarg.patch deleted file mode 100644 index 1590b7dded..0000000000 --- a/packages/monotone/files/uclibc.database.hh.stdarg.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- monotone-0.21/database.hh.orig 2005-07-17 19:59:00.312846093 -0700 -+++ monotone-0.21/database.hh 2005-07-17 19:59:56.259365537 -0700 -@@ -14,6 +14,7 @@ - #include <set> - #include <map> - #include <string> -+#include <stdarg.h> - - #include <boost/filesystem/path.hpp> - diff --git a/packages/monotone/monotone-4_0.19.bb b/packages/monotone/monotone-4_0.19.bb deleted file mode 100644 index 402d57db37..0000000000 --- a/packages/monotone/monotone-4_0.19.bb +++ /dev/null @@ -1,8 +0,0 @@ -require monotone.inc - -SUBV = "1" -PR = "r0" - -SRC_URI = "http://www.venge.net/monotone/downloads/monotone_${PV}-${SUBV}.tar.gz \ - file://txt2c-cross.patch;patch=1 \ - file://cryptopp-endianness.patch;patch=1" diff --git a/packages/monotone/monotone-5_0.20.bb b/packages/monotone/monotone-5_0.20.bb deleted file mode 100644 index bee2269767..0000000000 --- a/packages/monotone/monotone-5_0.20.bb +++ /dev/null @@ -1,9 +0,0 @@ -require monotone.inc - -PR = "r0" - -SRC_URI = "http://venge.net/monotone/downloads/monotone-${PV}.tar.gz \ - file://txt2c-cross.patch;patch=1 \ - file://cryptopp-endianness.patch;patch=1" - -ALTERNATIVE_PRIORITY = "50" diff --git a/packages/monotone/monotone-5_0.21.bb b/packages/monotone/monotone-5_0.21.bb deleted file mode 100644 index 447614b92f..0000000000 --- a/packages/monotone/monotone-5_0.21.bb +++ /dev/null @@ -1,12 +0,0 @@ -require monotone.inc - -PR = "r0" - -SRC_URI = "http://venge.net/monotone/downloads/monotone-${PV}.tar.gz \ - file://txt2c-cross.patch;patch=1 \ - file://cryptopp-endianness.patch;patch=1 \ - file://configure.ac.patch;patch=1 \ - file://uclibc.database.hh.stdarg.patch;patch=1 \ - " - -ALTERNATIVE_PRIORITY = "50" diff --git a/packages/monotone/monotone-5_0.22.bb b/packages/monotone/monotone-5_0.22.bb deleted file mode 100644 index 9ce745d04f..0000000000 --- a/packages/monotone/monotone-5_0.22.bb +++ /dev/null @@ -1,16 +0,0 @@ -# Release 0.22 reveals bugs in g++ for thumb (g++ generates -# relocations which the linker cannot represent) -#FIXME: remove the following -ARM_INSTRUCTION_SET = "arm" - -require monotone.inc - -PR = "r0" - -SRC_URI = "http://venge.net/monotone/downloads/monotone-${PV}.tar.gz \ - file://txt2c-cross.patch;patch=1 \ - file://configure.ac.patch;patch=1 \ - file://uclibc.database.hh.stdarg.patch;patch=1 \ - " - -ALTERNATIVE_PRIORITY = "50" diff --git a/packages/monotone/monotone-5_0.23.bb b/packages/monotone/monotone-5_0.23.bb deleted file mode 100644 index 2f0aab1077..0000000000 --- a/packages/monotone/monotone-5_0.23.bb +++ /dev/null @@ -1,15 +0,0 @@ -# Release 0.22 reveals bugs in g++ for thumb (g++ generates -# relocations which the linker cannot represent) -#FIXME: remove the following -ARM_INSTRUCTION_SET = "arm" - -require monotone.inc - -PR = "r0" - -SRC_URI = "http://venge.net/monotone/downloads/monotone-${PV}.tar.gz \ - file://txt2c-cross-post-0.22.patch;patch=1 \ - file://uclibc.database.hh.stdarg.patch;patch=1 \ - " - -ALTERNATIVE_PRIORITY = "50" diff --git a/packages/monotone/monotone-5_0.24.bb b/packages/monotone/monotone-5_0.24.bb deleted file mode 100644 index 2f0aab1077..0000000000 --- a/packages/monotone/monotone-5_0.24.bb +++ /dev/null @@ -1,15 +0,0 @@ -# Release 0.22 reveals bugs in g++ for thumb (g++ generates -# relocations which the linker cannot represent) -#FIXME: remove the following -ARM_INSTRUCTION_SET = "arm" - -require monotone.inc - -PR = "r0" - -SRC_URI = "http://venge.net/monotone/downloads/monotone-${PV}.tar.gz \ - file://txt2c-cross-post-0.22.patch;patch=1 \ - file://uclibc.database.hh.stdarg.patch;patch=1 \ - " - -ALTERNATIVE_PRIORITY = "50" diff --git a/packages/monotone/monotone-5_0.25.2.bb b/packages/monotone/monotone-5_0.25.2.bb deleted file mode 100644 index b5d6a376c1..0000000000 --- a/packages/monotone/monotone-5_0.25.2.bb +++ /dev/null @@ -1,16 +0,0 @@ -# Release 0.22 reveals bugs in g++ for thumb (g++ generates -# relocations which the linker cannot represent) -#FIXME: remove the following -ARM_INSTRUCTION_SET = "arm" - -require monotone.inc - -PR = "r0" - -SRC_URI = "http://venge.net/monotone/downloads/monotone-${PV}.tar.gz \ - file://txt2c-cross-post-0.22.patch;patch=1 \ - file://uclibc.database.hh.stdarg.patch;patch=1 \ - file://configure.ac-no-sync-with-stdio-0.25.patch;patch=1 \ - " - -ALTERNATIVE_PRIORITY = "50" diff --git a/packages/monotone/monotone-6-0.37/txt2c-cross-post-0.22.patch b/packages/monotone/monotone-6-0.37/txt2c-cross-post-0.22.patch deleted file mode 100644 index 182993f027..0000000000 --- a/packages/monotone/monotone-6-0.37/txt2c-cross-post-0.22.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- /tmp/Makefile.am 2007-11-12 14:43:17.000000000 +0100 -+++ monotone-0.37/Makefile.am 2007-11-12 14:43:35.633234000 +0100 -@@ -692,7 +692,7 @@ - CLEANFILES = $(BUILT_SOURCES) $(CLEAN_SOURCES) $(EPS_FIGURES) - - txt2c: txt2c.cc -- $(CXX) $(CXXFLAGS) -o $@ $< -+ $(BUILD_CXX) $(BUILD_CXXFLAGS) -o $@ $< - chmod 0755 $@$(EXEEXT) - - # FIXME: should use stamp files. diff --git a/packages/monotone/monotone-6_0.26.bb b/packages/monotone/monotone-6_0.26.bb deleted file mode 100644 index afbe65fada..0000000000 --- a/packages/monotone/monotone-6_0.26.bb +++ /dev/null @@ -1,44 +0,0 @@ -DESCRIPTION = "Monotone is a distributed Source Control System" -HOMEPAGE = "http://www.venge.net/monotone" -SECTION = "devel" -PRIORITY = "optional" -LICENSE = "MIT" -DEPENDS = "boost" - -S = "${WORKDIR}/monotone-${PV}" -# no cross compile support - it tries to run the test program even with -# --enable_ipv6=yes -EXTRA_OECONF = "--disable-ipv6 \ - --disable-dependency-tracking \ - --disable-rpath \ - --disable-nls \ - --with-gnu-ld \ - --with-bundled-lua --with-bundled-sqlite" - -inherit autotools - -# Release 0.22 reveals bugs in g++ for thumb (g++ generates -# relocations which the linker cannot represent) -#FIXME: remove the following -ARM_INSTRUCTION_SET = "arm" - -PR = "r0" - -SRC_URI = "http://venge.net/monotone/downloads/monotone-${PV}.tar.gz \ - file://txt2c-cross-post-0.22.patch;patch=1 \ - file://uclibc.database.hh.stdarg.patch;patch=1 \ - file://configure.ac-no-sync-with-stdio-0.26.patch;patch=1 \ - " -# This makes the testsuite as a package and renames the monotone executable -# to include the netsync suffix. -do_install_append() { - install -d ${D}${tsd} - install -c -m 755 testsuite ${D}${tsd}/testsuite - cp -pPR tests ${D}${tsd}/tests -} - -PACKAGES = "${PN}-dbg ${PN} ${PN}-doc ${PN}-testsuite" -tsd = "/home/monotone/${PN}" -FILES_${PN}-testsuite = "${tsd}/testsuite ${tsd}/tests" -RDEPENDS_${PN}-testsuite += "bash sed grep cvs patch perl perl-modules" - diff --git a/packages/monotone/monotone-6_0.27.bb b/packages/monotone/monotone-6_0.27.bb deleted file mode 100644 index afbe65fada..0000000000 --- a/packages/monotone/monotone-6_0.27.bb +++ /dev/null @@ -1,44 +0,0 @@ -DESCRIPTION = "Monotone is a distributed Source Control System" -HOMEPAGE = "http://www.venge.net/monotone" -SECTION = "devel" -PRIORITY = "optional" -LICENSE = "MIT" -DEPENDS = "boost" - -S = "${WORKDIR}/monotone-${PV}" -# no cross compile support - it tries to run the test program even with -# --enable_ipv6=yes -EXTRA_OECONF = "--disable-ipv6 \ - --disable-dependency-tracking \ - --disable-rpath \ - --disable-nls \ - --with-gnu-ld \ - --with-bundled-lua --with-bundled-sqlite" - -inherit autotools - -# Release 0.22 reveals bugs in g++ for thumb (g++ generates -# relocations which the linker cannot represent) -#FIXME: remove the following -ARM_INSTRUCTION_SET = "arm" - -PR = "r0" - -SRC_URI = "http://venge.net/monotone/downloads/monotone-${PV}.tar.gz \ - file://txt2c-cross-post-0.22.patch;patch=1 \ - file://uclibc.database.hh.stdarg.patch;patch=1 \ - file://configure.ac-no-sync-with-stdio-0.26.patch;patch=1 \ - " -# This makes the testsuite as a package and renames the monotone executable -# to include the netsync suffix. -do_install_append() { - install -d ${D}${tsd} - install -c -m 755 testsuite ${D}${tsd}/testsuite - cp -pPR tests ${D}${tsd}/tests -} - -PACKAGES = "${PN}-dbg ${PN} ${PN}-doc ${PN}-testsuite" -tsd = "/home/monotone/${PN}" -FILES_${PN}-testsuite = "${tsd}/testsuite ${tsd}/tests" -RDEPENDS_${PN}-testsuite += "bash sed grep cvs patch perl perl-modules" - diff --git a/packages/monotone/monotone-6_0.31.bb b/packages/monotone/monotone-6_0.31.bb deleted file mode 100644 index 5be156f2be..0000000000 --- a/packages/monotone/monotone-6_0.31.bb +++ /dev/null @@ -1,48 +0,0 @@ -DESCRIPTION = "Monotone is a distributed Source Control System" -HOMEPAGE = "http://www.venge.net/monotone" -SECTION = "devel" -PRIORITY = "optional" -LICENSE = "MIT" -DEPENDS = "boost" - -S = "${WORKDIR}/monotone-${PV}" -# no cross compile support - it tries to run the test program even with -# --enable_ipv6=yes -EXTRA_OECONF = "--disable-ipv6 \ - --disable-dependency-tracking \ - --disable-rpath \ - --disable-nls \ - --with-gnu-ld \ - --with-bundled-lua --with-bundled-sqlite" - -inherit autotools - -# Release 0.22 reveals bugs in g++ for thumb (g++ generates -# relocations which the linker cannot represent) -#FIXME: remove the following -ARM_INSTRUCTION_SET = "arm" - -PR = "r0" - -SRC_URI = "http://venge.net/monotone/downloads/monotone-${PV}.tar.gz \ - file://txt2c-cross-post-0.22.patch;patch=1 \ - file://uclibc.database.hh.stdarg.patch;patch=1 \ - file://configure.ac-no-sync-with-stdio-0.31.patch;patch=1 \ - " -do_compile_append() { - touch testsuite -} - -# This makes the testsuite as a package and renames the monotone executable -# to include the netsync suffix. -do_install_append() { - install -d ${D}${tsd} - install -c -m 755 testsuite ${D}${tsd}/testsuite - cp -pPR tests ${D}${tsd}/tests -} - -PACKAGES = "${PN}-dbg ${PN} ${PN}-doc ${PN}-testsuite" -tsd = "/home/monotone/${PN}" -FILES_${PN}-testsuite = "${tsd}/testsuite ${tsd}/tests" -RDEPENDS_${PN}-testsuite += "bash sed grep cvs patch perl perl-modules" - diff --git a/packages/monotone/monotone-6_0.33.bb b/packages/monotone/monotone-6_0.33.bb deleted file mode 100644 index e58477ddd1..0000000000 --- a/packages/monotone/monotone-6_0.33.bb +++ /dev/null @@ -1,52 +0,0 @@ -DESCRIPTION = "Monotone is a distributed Source Control System" -HOMEPAGE = "http://www.monotone.ca/" -SECTION = "devel" -PRIORITY = "optional" -LICENSE = "MIT" -DEPENDS = "boost" - -PROVIDES = "monotone" -RPROVIDES = "monotone" - -S = "${WORKDIR}/monotone-${PV}" -# no cross compile support - it tries to run the test program even with -# --enable_ipv6=yes -EXTRA_OECONF = "--disable-ipv6 \ - --disable-dependency-tracking \ - --disable-rpath \ - --disable-nls \ - --with-gnu-ld \ - --with-bundled-lua --with-bundled-sqlite" - -inherit autotools - -# Release 0.22 reveals bugs in g++ for thumb (g++ generates -# relocations which the linker cannot represent) -#FIXME: remove the following -ARM_INSTRUCTION_SET = "arm" - -PR = "r1" - -SRC_URI = "http://monotone.ca/downloads/${PV}/monotone-${PV}.tar.gz \ - file://txt2c-cross-post-0.22.patch;patch=1 \ - file://uclibc.database.hh.stdarg.patch;patch=1 \ - file://configure.ac-no-sync-with-stdio-0.31.patch;patch=1 \ - " -do_compile_append() { - touch testsuite -} - -# This makes the testsuite as a package and renames the monotone executable -# to include the netsync suffix. -do_install_append() { - install -d ${D}${tsd} - install -c -m 755 testsuite ${D}${tsd}/testsuite - cp -pPR tests ${D}${tsd}/tests - rm ${D}/home/monotone/monotone-6/tests/diff_a_binary_file/binary -} - -PACKAGES = "${PN}-dbg ${PN} ${PN}-doc ${PN}-testsuite" -tsd = "/home/monotone/${PN}" -FILES_${PN}-testsuite = "${tsd}/testsuite ${tsd}/tests" -RDEPENDS_${PN}-testsuite += "bash sed grep cvs patch perl perl-modules" - diff --git a/packages/monotone/monotone-6_0.34.bb b/packages/monotone/monotone-6_0.34.bb deleted file mode 100644 index 6a5dcb5d9c..0000000000 --- a/packages/monotone/monotone-6_0.34.bb +++ /dev/null @@ -1,52 +0,0 @@ -DESCRIPTION = "Monotone is a distributed Source Control System" -HOMEPAGE = "http://www.monotone.ca/" -SECTION = "devel" -PRIORITY = "optional" -LICENSE = "MIT" -DEPENDS = "boost" - -PROVIDES = "monotone" -RPROVIDES = "monotone" - -S = "${WORKDIR}/monotone-${PV}" -# no cross compile support - it tries to run the test program even with -# --enable_ipv6=yes -EXTRA_OECONF = "--disable-ipv6 \ - --disable-dependency-tracking \ - --disable-rpath \ - --disable-nls \ - --with-gnu-ld \ - --with-bundled-lua --with-bundled-sqlite" - -inherit autotools - -# Release 0.22 reveals bugs in g++ for thumb (g++ generates -# relocations which the linker cannot represent) -#FIXME: remove the following -ARM_INSTRUCTION_SET = "arm" - -PR = "r0" - -SRC_URI = "http://monotone.ca/downloads/${PV}/monotone-${PV}.tar.gz \ - file://txt2c-cross-post-0.22.patch;patch=1 \ - file://uclibc.database.hh.stdarg.patch;patch=1 \ - file://configure.ac-no-sync-with-stdio-0.31.patch;patch=1 \ - " -do_compile_append() { - touch testsuite -} - -# This makes the testsuite as a package and renames the monotone executable -# to include the netsync suffix. -do_install_append() { - install -d ${D}${tsd} - install -c -m 755 testsuite ${D}${tsd}/testsuite - cp -pPR tests ${D}${tsd}/tests - rm ${D}/home/monotone/monotone-6/tests/diff_a_binary_file/binary -} - -PACKAGES = "${PN}-dbg ${PN} ${PN}-doc ${PN}-testsuite" -tsd = "/home/monotone/${PN}" -FILES_${PN}-testsuite = "${tsd}/testsuite ${tsd}/tests" -RDEPENDS_${PN}-testsuite += "bash sed grep cvs patch perl perl-modules" - diff --git a/packages/monotone/monotone-6_0.37.bb b/packages/monotone/monotone-6_0.37.bb deleted file mode 100644 index 7d65982e3d..0000000000 --- a/packages/monotone/monotone-6_0.37.bb +++ /dev/null @@ -1,52 +0,0 @@ -DESCRIPTION = "Monotone is a distributed Source Control System" -HOMEPAGE = "http://www.monotone.ca/" -SECTION = "devel" -PRIORITY = "optional" -LICENSE = "MIT" -DEPENDS = "boost" - -PROVIDES = "monotone" -RPROVIDES = "monotone" - -S = "${WORKDIR}/monotone-${PV}" -# no cross compile support - it tries to run the test program even with -# --enable_ipv6=yes -EXTRA_OECONF = "--disable-ipv6 \ - --disable-dependency-tracking \ - --disable-rpath \ - --disable-nls \ - --with-gnu-ld \ - --with-bundled-lua --with-bundled-sqlite" - -inherit autotools - -# Release 0.22 reveals bugs in g++ for thumb (g++ generates -# relocations which the linker cannot represent) -#FIXME: remove the following -ARM_INSTRUCTION_SET = "arm" - -PR = "r0" - -SRC_URI = "http://monotone.ca/downloads/${PV}/monotone-${PV}.tar.gz \ - file://txt2c-cross-post-0.22.patch;patch=1 \ -# file://uclibc.database.hh.stdarg.patch;patch=1 \ - file://configure.ac-no-sync-with-stdio-0.31.patch;patch=1 \ - " -do_compile_append() { - touch testsuite -} - -# This makes the testsuite as a package and renames the monotone executable -# to include the netsync suffix. -do_install_append() { - install -d ${D}${tsd} - install -c -m 755 testsuite ${D}${tsd}/testsuite - cp -pPR tests ${D}${tsd}/tests - rm ${D}/home/monotone/monotone-6/tests/diff_a_binary_file/binary -} - -PACKAGES = "${PN}-dbg ${PN} ${PN}-doc ${PN}-testsuite" -tsd = "/home/monotone/${PN}" -FILES_${PN}-testsuite = "${tsd}/testsuite ${tsd}/tests" -RDEPENDS_${PN}-testsuite += "bash sed grep cvs patch perl perl-modules" - diff --git a/packages/monotone/monotone.inc b/packages/monotone/monotone.inc deleted file mode 100644 index 319309f070..0000000000 --- a/packages/monotone/monotone.inc +++ /dev/null @@ -1,42 +0,0 @@ -DESCRIPTION = "Monotone is a distributed Source Control System" -HOMEPAGE = "http://www.venge.net/" -SECTION = "devel" -PRIORITY = "optional" -LICENSE = "MIT" -DEPENDS = "boost" - -# Following may be required, not proved yet... -#TARGET_CFLAGS += "-fno-strict-aliasing" - -S = "${WORKDIR}/monotone-${PV}" - -# no cross compile support - it tries to run the test program even with -# --enable_ipv6=yes -EXTRA_OECONF = "--disable-ipv6 \ - --disable-dependency-tracking \ - --disable-rpath \ - --disable-nls \ - --with-gnu-ld \ - --with-bundled-lua --with-bundled-sqlite" - -inherit autotools update-alternatives - -ALTERNATIVE_NAME = "monotone" -ALTERNATIVE_LINK = "${bindir}/monotone" -ALTERNATIVE_PATH = "${bindir}/${PN}" -ALTERNATIVE_PRIORITY = "40" - -# This makes the testsuite as a package and renames the monotone executable -# to include the netsync suffix. -do_install_append() { - install -d ${D}${tsd} - install -c -m 755 testsuite ${D}${tsd}/testsuite - cp -pPR tests ${D}${tsd}/tests - # - mv ${D}${bindir}/monotone ${D}${bindir}/${PN} -} - -PACKAGES = "${PN}-dbg ${PN} ${PN}-doc ${PN}-testsuite" -tsd = "/home/monotone/${PN}" -FILES_${PN}-testsuite = "${tsd}/testsuite ${tsd}/tests" -RDEPENDS_${PN}-testsuite += "bash sed grep cvs patch perl perl-modules" |