From 5a7bfb47971580d4ec3991e6c524615ba2be99e1 Mon Sep 17 00:00:00 2001 From: Mark Doffman Date: Tue, 24 Sep 2013 15:52:55 +0000 Subject: Fix https issues with gperftools.lorry and leveldb.lorry. Boost repository has been moved, update to new location. --- open-source-lorries/boost.lorry | 2 +- open-source-lorries/gperftools.lorry | 2 +- open-source-lorries/leveldb.lorry | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/open-source-lorries/boost.lorry b/open-source-lorries/boost.lorry index 21d84db..2a0e4d2 100644 --- a/open-source-lorries/boost.lorry +++ b/open-source-lorries/boost.lorry @@ -1,7 +1,7 @@ { "boost": { "type": "svn", - "url": " http://svn.boost.org/svn/", + "url": "http://svn.boost.org/svn/boost/", "layout": "standard" } } diff --git a/open-source-lorries/gperftools.lorry b/open-source-lorries/gperftools.lorry index bf6a250..a895be9 100644 --- a/open-source-lorries/gperftools.lorry +++ b/open-source-lorries/gperftools.lorry @@ -1,6 +1,6 @@ { "gperftools": { "type": "git", - "url": "https://code.google.com/p/gperftools/" + "url": "http://code.google.com/p/gperftools/" } } diff --git a/open-source-lorries/leveldb.lorry b/open-source-lorries/leveldb.lorry index 1f272db..57c55d6 100644 --- a/open-source-lorries/leveldb.lorry +++ b/open-source-lorries/leveldb.lorry @@ -1,6 +1,6 @@ { "leveldb": { "type": "git", - "url": "https://code.google.com/p/leveldb/" + "url": "http://code.google.com/p/leveldb/" } } -- cgit v1.2.1 From 1b95f22a1e67fafb6e2626653611b40457b9f590 Mon Sep 17 00:00:00 2001 From: Mark Doffman Date: Wed, 25 Sep 2013 01:26:18 +0000 Subject: Move the keyutils lorry from a tarball to the git repo. --- open-source-lorries/keyutils.lorry | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/open-source-lorries/keyutils.lorry b/open-source-lorries/keyutils.lorry index 714869c..3f46c1e 100644 --- a/open-source-lorries/keyutils.lorry +++ b/open-source-lorries/keyutils.lorry @@ -1,8 +1,6 @@ { - "keyutils-tarball": { - "type": "tarball", - "compression": "bzip2", - "strip": 1, - "url": "http://people.redhat.com/dhowells/keyutils/keyutils-1.5.6.tar.bz2" + "keyutils": { + "type": "git", + "url": "git://git.kernel.org/pub/scm/linux/kernel/git/dhowells/keyutils.git" } } -- cgit v1.2.1 From bb2f205e88fcf07ee179c0dcb973d72adfd05153 Mon Sep 17 00:00:00 2001 From: Mark Doffman Date: Thu, 26 Sep 2013 13:45:46 +0000 Subject: Add a lorry for a autotools version of the libeditline project. --- open-source-lorries/libeditline-tarball.lorry | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 open-source-lorries/libeditline-tarball.lorry diff --git a/open-source-lorries/libeditline-tarball.lorry b/open-source-lorries/libeditline-tarball.lorry new file mode 100644 index 0000000..9074256 --- /dev/null +++ b/open-source-lorries/libeditline-tarball.lorry @@ -0,0 +1,7 @@ +{ + "libeditline-tarball": { + "compression": "gzip", + "strip": 1, + "url": "http://www.thrysoee.dk/editline/libedit-20130712-3.1.tar.gz" + } +} -- cgit v1.2.1 From 4c0ead8d4d50854505dbcfb86d494475033cfab9 Mon Sep 17 00:00:00 2001 From: Mark Doffman Date: Thu, 26 Sep 2013 14:16:54 +0000 Subject: Add missing tarball type to libeditline lorry. --- open-source-lorries/libeditline-tarball.lorry | 1 + 1 file changed, 1 insertion(+) diff --git a/open-source-lorries/libeditline-tarball.lorry b/open-source-lorries/libeditline-tarball.lorry index 9074256..a5e9257 100644 --- a/open-source-lorries/libeditline-tarball.lorry +++ b/open-source-lorries/libeditline-tarball.lorry @@ -1,5 +1,6 @@ { "libeditline-tarball": { + "type": "tarball", "compression": "gzip", "strip": 1, "url": "http://www.thrysoee.dk/editline/libedit-20130712-3.1.tar.gz" -- cgit v1.2.1 From 66b35d644e81840e4565a1aeb3fe4d8a9f26ffa1 Mon Sep 17 00:00:00 2001 From: Mark Doffman Date: Thu, 26 Sep 2013 19:25:40 +0000 Subject: Disable the current boost svn lorry as it takes > 13 hours to process. Add a tarball lorry for boost instead. --- open-source-lorries-disabled/boost.lorry | 7 +++++++ open-source-lorries/boost-tarball.lorry | 8 ++++++++ open-source-lorries/boost.lorry | 7 ------- 3 files changed, 15 insertions(+), 7 deletions(-) create mode 100644 open-source-lorries-disabled/boost.lorry create mode 100644 open-source-lorries/boost-tarball.lorry delete mode 100644 open-source-lorries/boost.lorry diff --git a/open-source-lorries-disabled/boost.lorry b/open-source-lorries-disabled/boost.lorry new file mode 100644 index 0000000..2a0e4d2 --- /dev/null +++ b/open-source-lorries-disabled/boost.lorry @@ -0,0 +1,7 @@ +{ + "boost": { + "type": "svn", + "url": "http://svn.boost.org/svn/boost/", + "layout": "standard" + } +} diff --git a/open-source-lorries/boost-tarball.lorry b/open-source-lorries/boost-tarball.lorry new file mode 100644 index 0000000..e4e2bea --- /dev/null +++ b/open-source-lorries/boost-tarball.lorry @@ -0,0 +1,8 @@ +{ + "boost-tarball": { + "type": "tarball", + "compression": "bz2", + "strip": 1, + "url": "http://downloads.sourceforge.net/project/boost/boost/1.54.0/boost_1_54_0.tar.bz2" + } +} diff --git a/open-source-lorries/boost.lorry b/open-source-lorries/boost.lorry deleted file mode 100644 index 2a0e4d2..0000000 --- a/open-source-lorries/boost.lorry +++ /dev/null @@ -1,7 +0,0 @@ -{ - "boost": { - "type": "svn", - "url": "http://svn.boost.org/svn/boost/", - "layout": "standard" - } -} -- cgit v1.2.1