summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2014-01-23 00:46:27 +0000
committerTim Harder <radhermit@gentoo.org>2014-01-23 00:46:27 +0000
commitcd438987c301b74893777801709de6fb502761a7 (patch)
tree86eaec33ed2b7a3cfa789966ec8353d599fa00dd /app-admin/lsyncd
parentRemove old. (diff)
downloadgentoo-2-cd438987c301b74893777801709de6fb502761a7.tar.gz
gentoo-2-cd438987c301b74893777801709de6fb502761a7.tar.bz2
gentoo-2-cd438987c301b74893777801709de6fb502761a7.zip
Remove old.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'app-admin/lsyncd')
-rw-r--r--app-admin/lsyncd/ChangeLog9
-rw-r--r--app-admin/lsyncd/files/lsyncd-2.0.7-lua51.patch45
-rw-r--r--app-admin/lsyncd/files/lsyncd-2.0.7-lua52.patch81
-rw-r--r--app-admin/lsyncd/lsyncd-2.0.5.ebuild26
-rw-r--r--app-admin/lsyncd/lsyncd-2.0.7.ebuild27
-rw-r--r--app-admin/lsyncd/lsyncd-2.1.4.ebuild24
6 files changed, 7 insertions, 205 deletions
diff --git a/app-admin/lsyncd/ChangeLog b/app-admin/lsyncd/ChangeLog
index 0bac53c87a25..b09b4a401d5d 100644
--- a/app-admin/lsyncd/ChangeLog
+++ b/app-admin/lsyncd/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-admin/lsyncd
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/lsyncd/ChangeLog,v 1.35 2013/12/24 12:42:40 ago Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/lsyncd/ChangeLog,v 1.36 2014/01/23 00:46:27 radhermit Exp $
+
+ 23 Jan 2014; Tim Harder <radhermit@gentoo.org> -lsyncd-2.0.5.ebuild,
+ -lsyncd-2.0.7.ebuild, -lsyncd-2.1.4.ebuild, -files/lsyncd-2.0.7-lua51.patch,
+ -files/lsyncd-2.0.7-lua52.patch:
+ Remove old.
24 Dec 2013; Agostino Sarubbo <ago@gentoo.org> lsyncd-2.1.5.ebuild:
Stable for x86, wrt bug #490528
diff --git a/app-admin/lsyncd/files/lsyncd-2.0.7-lua51.patch b/app-admin/lsyncd/files/lsyncd-2.0.7-lua51.patch
deleted file mode 100644
index 954f7af14307..000000000000
--- a/app-admin/lsyncd/files/lsyncd-2.0.7-lua51.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From 595370fdc4d106d093184893c037ec00e9abcae9 Mon Sep 17 00:00:00 2001
-From: Dennis Schridde <devurandom@gmx.net>
-Date: Tue, 18 Sep 2012 15:57:41 +0200
-Subject: [PATCH] Lua 5.1 compatibility fallbacks
-
----
- inotify.c | 4 ++++
- lsyncd.c | 6 ++++++
- 2 files changed, 10 insertions(+)
-
-diff --git a/inotify.c b/inotify.c
-index ac6f7d9..518c329 100644
---- a/inotify.c
-+++ b/inotify.c
-@@ -39,6 +39,10 @@
- #include <lualib.h>
- #include <lauxlib.h>
-
-+#if LUA_VERSION_NUM < 502
-+# define luaL_newlib(L,l) luaL_register(L,NULL,l)
-+#endif
-+
- /*-----------------------------------------------------------------------------
- * Event types.
- */
-diff --git a/lsyncd.c b/lsyncd.c
-index f7c61c2..74629bd 100644
---- a/lsyncd.c
-+++ b/lsyncd.c
-@@ -53,6 +53,12 @@
- extern const char defaults_out[];
- extern size_t defaults_size;
-
-+#if LUA_VERSION_NUM < 502
-+/* lua_rawlen: Not entirely correct, but should work anyway */
-+# define lua_rawlen lua_objlen
-+# define luaL_newlib(L,l) luaL_register(L,NULL,l)
-+#endif
-+
- /**
- * Makes sure there is one monitor.
- */
---
-1.7.10
-
diff --git a/app-admin/lsyncd/files/lsyncd-2.0.7-lua52.patch b/app-admin/lsyncd/files/lsyncd-2.0.7-lua52.patch
deleted file mode 100644
index 8d605a782090..000000000000
--- a/app-admin/lsyncd/files/lsyncd-2.0.7-lua52.patch
+++ /dev/null
@@ -1,81 +0,0 @@
-From 9e24c121e502ebd8e88821044d78fda187537861 Mon Sep 17 00:00:00 2001
-From: Dennis Schridde <devurandom@gmx.net>
-Date: Tue, 18 Sep 2012 15:20:25 +0200
-Subject: [PATCH] Fix compilation with Lua 5.2 (issue #146)
-
----
- inotify.c | 4 ++--
- lsyncd.c | 10 +++++-----
- 2 files changed, 7 insertions(+), 7 deletions(-)
-
-diff --git a/inotify.c b/inotify.c
-index 432e530..ac6f7d9 100644
---- a/inotify.c
-+++ b/inotify.c
-@@ -129,7 +129,7 @@
- /**
- * Cores inotify functions.
- */
--static const luaL_reg linotfylib[] = {
-+static const luaL_Reg linotfylib[] = {
- {"addwatch", l_addwatch },
- {"rmwatch", l_rmwatch },
- {NULL, NULL}
-@@ -352,7 +352,7 @@
- register_inotify(lua_State *L)
- {
- lua_pushstring(L, "inotify");
-- luaL_register(L, "inotify", linotfylib);
-+ luaL_newlib(L, linotfylib);
- }
-
- /**
-diff --git a/lsyncd.c b/lsyncd.c
-index fbb5d33..f7c61c2 100644
---- a/lsyncd.c
-+++ b/lsyncd.c
-@@ -841,12 +841,12 @@ struct pipemsg {
- if (lua_istable(L, i)) {
- int tlen;
- int it;
-- lua_checkstack(L, lua_gettop(L) + lua_objlen(L, i) + 1);
-+ lua_checkstack(L, lua_gettop(L) + lua_rawlen(L, i) + 1);
- // move table to top of stack
- lua_pushvalue(L, i);
- lua_remove(L, i);
- argc--;
-- tlen = lua_objlen(L, -1);
-+ tlen = lua_rawlen(L, -1);
- for (it = 1; it <= tlen; it++) {
- lua_pushinteger(L, it);
- lua_gettable(L, -2);
-@@ -1263,7 +1263,7 @@ struct pipemsg {
- return 0;
- }
-
--static const luaL_reg lsyncdlib[] = {
-+static const luaL_Reg lsyncdlib[] = {
- {"configure", l_configure },
- {"exec", l_exec },
- {"log", l_log },
-@@ -1368,7 +1368,7 @@ struct pipemsg {
- void
- register_lsyncd(lua_State *L)
- {
-- luaL_register(L, "lsyncd", lsyncdlib);
-+ luaL_newlib(L, lsyncdlib);
- lua_setglobal(L, "lysncd");
-
- // creates the metatable for jiffies userdata
-@@ -1676,7 +1676,7 @@ struct pipemsg {
- int argp = 1;
-
- // load Lua
-- L = lua_open();
-+ L = luaL_newstate();
- luaL_openlibs(L);
- {
- // checks the lua version
---
-1.7.10
-
diff --git a/app-admin/lsyncd/lsyncd-2.0.5.ebuild b/app-admin/lsyncd/lsyncd-2.0.5.ebuild
deleted file mode 100644
index 430262c47263..000000000000
--- a/app-admin/lsyncd/lsyncd-2.0.5.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/lsyncd/lsyncd-2.0.5.ebuild,v 1.3 2012/02/16 19:12:51 phajdan.jr Exp $
-
-EAPI=4
-
-inherit multilib
-
-DESCRIPTION="Live Syncing (Mirror) Daemon"
-HOMEPAGE="http://code.google.com/p/lsyncd/"
-SRC_URI="http://lsyncd.googlecode.com/files/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-DEPEND="dev-lang/lua"
-RDEPEND="${DEPEND}
- net-misc/rsync"
-
-src_configure() {
- econf \
- --with-runner="${EPREFIX}/usr/$(get_libdir)/${PN}" \
- --docdir="${EPREFIX}"/usr/share/doc/${P}
-}
diff --git a/app-admin/lsyncd/lsyncd-2.0.7.ebuild b/app-admin/lsyncd/lsyncd-2.0.7.ebuild
deleted file mode 100644
index 819ac9803e17..000000000000
--- a/app-admin/lsyncd/lsyncd-2.0.7.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/lsyncd/lsyncd-2.0.7.ebuild,v 1.2 2012/09/23 08:37:11 pacho Exp $
-
-EAPI=4
-inherit eutils
-
-DESCRIPTION="Live Syncing (Mirror) Daemon"
-HOMEPAGE="http://code.google.com/p/lsyncd/"
-SRC_URI="http://lsyncd.googlecode.com/files/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-DEPEND=">=dev-lang/lua-5.1"
-RDEPEND="${DEPEND}
- net-misc/rsync"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-lua5{1,2}.patch
-}
-
-src_configure() {
- econf --docdir="${EPREFIX}"/usr/share/doc/${P}
-}
diff --git a/app-admin/lsyncd/lsyncd-2.1.4.ebuild b/app-admin/lsyncd/lsyncd-2.1.4.ebuild
deleted file mode 100644
index 1dd2db62e3ee..000000000000
--- a/app-admin/lsyncd/lsyncd-2.1.4.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/lsyncd/lsyncd-2.1.4.ebuild,v 1.5 2013/02/23 20:38:05 zmedico Exp $
-
-EAPI=5
-
-DESCRIPTION="Live Syncing (Mirror) Daemon"
-HOMEPAGE="http://code.google.com/p/lsyncd/"
-SRC_URI="http://lsyncd.googlecode.com/files/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~arm-linux ~x86-linux"
-IUSE=""
-
-CDEPEND=">=dev-lang/lua-5.1[deprecated]"
-DEPEND="${CDEPEND}
- app-text/asciidoc"
-RDEPEND="${CDEPEND}
- net-misc/rsync"
-
-src_configure() {
- econf --docdir="${EPREFIX}"/usr/share/doc/${P}
-}