debian/0000755000000000000000000000000012261347731007174 5ustar debian/changelog0000644000000000000000000000273112261347731011051 0ustar lua-ldap (1.1.0-1-geeac494-5) unstable; urgency=low * debian/control: + Standards-Version to 3.9.5. + add '-b debian' to Vcs-Git. * debian/patches/series, debian/patches/define_ldap_deprecated.diff: + fix implicit pointer conversion on amd64, thanks to Michael Biena and Micah Gersten (Closes: #722175). -- Luca Capello Thu, 02 Jan 2014 21:45:13 +0100 lua-ldap (1.1.0-1-geeac494-4) unstable; urgency=low [ Luca Capello ] * debian/copyright: + add comment about the fact that the Lua community prefers to call the license "MIT", see #670760. [ Enrico Tassi ] * Fix FTBFS (Closes: #713467) -- Enrico Tassi Sun, 23 Jun 2013 21:29:38 +0200 lua-ldap (1.1.0-1-geeac494-3) unstable; urgency=low * debian/control: + Maintainer: is . + move myself to Uploaders:. -- Luca Capello Sun, 06 May 2012 16:35:53 +0200 lua-ldap (1.1.0-1-geeac494-2) unstable; urgency=low [ Enrico Tassi ] * debian/control: + move to collab-maint. * debian/watch: + adapt to GitHub downloads. [ Luca Capello ] * debian/copyright: + add Enrico Tassi for the debian/* files. -- Luca Capello Mon, 30 Apr 2012 18:43:06 +0200 lua-ldap (1.1.0-1-geeac494-1) unstable; urgency=low * Initial release (Closes: #670549). -- Luca Capello Sun, 29 Apr 2012 15:17:54 +0200 debian/rules0000755000000000000000000000007312261334767010261 0ustar #!/usr/bin/make -f %: dh $@ --buildsystem=lua --with lua debian/copyright0000644000000000000000000000327412261334767011142 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: lualdap Upstream-Contact: info@keplerproject.org Source: https://github.com/luaforge/lualdap Files: * Copyright: 2003-2007 The Kepler project Comment: In the Lua community this license is better known as "MIT". Unfortunately other variants of this license are also known as "MIT". To obtain a machine intepretable copyright file Debian prefers to name this version of the MIT license using the non ambiguous term "Expat". License: Expat Files: debian/* Copyright: 2012 Luca Capello 2012 Enrico Tassi License: Expat License: Expat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. debian/source/0000755000000000000000000000000012261334767010501 5ustar debian/source/format0000644000000000000000000000001412261334767011707 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000212261334767010377 0ustar 9 debian/lua-ldap-dev.docs0000644000000000000000000000000712261334767012323 0ustar doc/us debian/gbp.conf0000644000000000000000000000011612261334767010616 0ustar [DEFAULT] upstream-branch = master debian-branch = debian pristine-tar = true debian/patches/0000755000000000000000000000000012261344425010620 5ustar debian/patches/series0000644000000000000000000000003412261335304012026 0ustar define_ldap_deprecated.diff debian/patches/define_ldap_deprecated.diff0000644000000000000000000000060712261344425016067 0ustar Description: fix implicit pointer conversion on amd64 Bug-Debian: 722175 Author: Michael Bienia Reviewed-by: Micah Gersten Reviewed-by: Luca Capello Last-Update: 2014-01-02 --- a/src/lualdap.c +++ b/src/lualdap.c @@ -16,6 +16,7 @@ #ifdef WINLDAP #include "open2winldap.h" #else +#define LDAP_DEPRECATED 1 #include "ldap.h" #endif debian/control0000644000000000000000000000266512261347117010606 0ustar Source: lua-ldap Section: interpreters Priority: optional Maintainer: Luca Capello Uploaders: Enrico Tassi Build-Depends: debhelper (>= 9), dh-lua (>= 12), libldap2-dev Standards-Version: 3.9.5 Vcs-Git: git://anonscm.debian.org/collab-maint/lua-ldap.git -b debian Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/lua-ldap.git Homepage: https://github.com/luaforge/lualdap Package: lua-ldap Architecture: any Multi-Arch: same Pre-Depends: multiarch-support Depends: ${shlibs:Depends}, ${misc:Depends} Provides: ${lua:Provides} XB-Lua-Versions: ${lua:Versions} Description: LDAP library for the Lua language This package contains the Lua LDAP library to: * Connect to an LDAP server (OpenLDAP or ADSI/WinLDAP); * Execute any operation (search, add, compare, delete, modify and rename); * Retrieve entries and references of the search result. . This package contains the runtime library. Package: lua-ldap-dev Architecture: any Multi-Arch: same Pre-Depends: multiarch-support Depends: lua-ldap (= ${binary:Version}), ${misc:Depends} Provides: ${lua:Provides} XB-Lua-Versions: ${lua:Versions} Section: libdevel Description: LDAP development files for the Lua language This package contains the development files of the Lua LDAP library, useful to create a statically linked binary (like a C application or a standalone Lua interpreter). . Documentation is also shipped within this package. debian/watch0000644000000000000000000000030112261334767010224 0ustar # test this watch file using: # uscan --watchfile debian/watch --upstream-version 0.0.1 --package lua-ldap # version=3 https://github.com/luaforge/lualdap/downloads .*/lualdap-([\d\.]*).tar.gz debian/dh-lua.conf0000644000000000000000000000101612261334767011220 0ustar LUA_VERSION=5.1 PKG_NAME=ldap # pkg-config support is missing from upstream OpenLDAP # CLIB_CFLAGS= CLIB_LDFLAGS=-lldap CLIB_LDFLAGS_STATIC=-lldap -llber CLIB_OBJS=src/lualdap.lo LUA_HEADER= LUA_SOURCES= LUA_MODNAME=lualdap # testing requires an LDAP server #LUA_TEST=cd tests/ && @@LUA@@ test.lua LUA_MODNAME_CPART= PKG_VERSION=$(shell dpkg-parsechangelog|grep ^Ver|cut -d ' ' -f 2|cut -d '-' -f 1) PKG_LIBS_PRIVATE= PKG_URL=https://github.com/luaforge/lualdap PKG_REQUIRES= PKG_CONFLICTS=