aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/monotone
diff options
context:
space:
mode:
authorFrans Meulenbroeks <fransmeulenbroeks@gmail.com>2010-10-02 08:44:22 +0200
committerFrans Meulenbroeks <fransmeulenbroeks@gmail.com>2010-10-02 08:44:22 +0200
commit2384fbbcf7055cd99f9e44d08e66b706fad369aa (patch)
treef0e39039c470cc51330932d3cffe01cea08e0470 /recipes/monotone
parent6b0e82f11e5421ef7efa2793787c160e7b85e2e1 (diff)
downloadopenembedded-2384fbbcf7055cd99f9e44d08e66b706fad369aa.tar.gz
monotone-6: cleaned old versions
as discussed on ML Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/monotone')
-rw-r--r--recipes/monotone/files/configure.ac-no-sync-with-stdio-0.26.patch127
-rw-r--r--recipes/monotone/monotone-6_0.27.bb47
-rw-r--r--recipes/monotone/monotone-6_0.31.bb51
-rw-r--r--recipes/monotone/monotone-6_0.33.bb55
-rw-r--r--recipes/monotone/monotone-6_0.34.bb55
5 files changed, 0 insertions, 335 deletions
diff --git a/recipes/monotone/files/configure.ac-no-sync-with-stdio-0.26.patch b/recipes/monotone/files/configure.ac-no-sync-with-stdio-0.26.patch
deleted file mode 100644
index 4c56061964..0000000000
--- a/recipes/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/recipes/monotone/monotone-6_0.27.bb b/recipes/monotone/monotone-6_0.27.bb
deleted file mode 100644
index 27d81f9e57..0000000000
--- a/recipes/monotone/monotone-6_0.27.bb
+++ /dev/null
@@ -1,47 +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 \
- file://uclibc.database.hh.stdarg.patch \
- file://configure.ac-no-sync-with-stdio-0.26.patch \
- "
-# 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"
-
-
-SRC_URI[md5sum] = "cf3d8f26b7570d0d65834c3949913e2d"
-SRC_URI[sha256sum] = "0a817e08b06141d78f2b8b0073aafd7110147679efb49c3e88c96a486532cacd"
diff --git a/recipes/monotone/monotone-6_0.31.bb b/recipes/monotone/monotone-6_0.31.bb
deleted file mode 100644
index 10ddf4d43e..0000000000
--- a/recipes/monotone/monotone-6_0.31.bb
+++ /dev/null
@@ -1,51 +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 \
- file://uclibc.database.hh.stdarg.patch \
- file://configure.ac-no-sync-with-stdio-0.31.patch \
- "
-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"
-
-
-SRC_URI[md5sum] = "5a5feb8d053a5993ab516a1186bb5883"
-SRC_URI[sha256sum] = "ceda1a42c23d9cfd0bf609f059ee32f228f78384dcf155adb36a742c78976c84"
diff --git a/recipes/monotone/monotone-6_0.33.bb b/recipes/monotone/monotone-6_0.33.bb
deleted file mode 100644
index 60e437d327..0000000000
--- a/recipes/monotone/monotone-6_0.33.bb
+++ /dev/null
@@ -1,55 +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_${PN} = "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 = "r2"
-
-SRC_URI = "http://monotone.ca/downloads/${PV}/monotone-${PV}.tar.gz \
- file://txt2c-cross-post-0.22.patch \
- file://uclibc.database.hh.stdarg.patch \
- file://configure.ac-no-sync-with-stdio-0.31.patch \
- "
-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"
-
-
-SRC_URI[md5sum] = "bfbc7842c13e9be23299ca0348b2d0c2"
-SRC_URI[sha256sum] = "21a0502ae8b888d046d889478e7a0244f4761c4162edf70ec42399d3c2911947"
diff --git a/recipes/monotone/monotone-6_0.34.bb b/recipes/monotone/monotone-6_0.34.bb
deleted file mode 100644
index 805af5d3b7..0000000000
--- a/recipes/monotone/monotone-6_0.34.bb
+++ /dev/null
@@ -1,55 +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_${PN} = "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 \
- file://uclibc.database.hh.stdarg.patch \
- file://configure.ac-no-sync-with-stdio-0.31.patch \
- "
-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"
-
-
-SRC_URI[md5sum] = "b7a3cd2d4fcb17287641ee2e33f660fd"
-SRC_URI[sha256sum] = "57cc436480dd29ac7e751c4d5adbc2b0289ba2273bda388352be15446894bc56"