debian/0000755000000000000000000000000012141613122007157 5ustar debian/dh-lua.conf0000644000000000000000000000043112010112445011173 0ustar LUA_VERSION=5.1 PKG_NAME=augeas CLIB_CFLAGS= CLIB_LDFLAGS= CLIB_OBJS= LUA_HEADER= LUA_SOURCES= LUA_SOURCES_MANGLER= LUA_MODNAME= LUA_TEST= PKG_VERSION=$(shell dpkg-parsechangelog|grep ^Ver|cut -d ' ' -f 2|cut -d '-' -f 1) PKG_LIBS_PRIVATE= PKG_URL= PKG_REQUIRES= PKG_CONFLICTS= debian/rules0000755000000000000000000000055112031673531010250 0ustar #!/usr/bin/make -f march := $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) libdir := /usr/lib/$(march)/lua/5.1 %: dh $@ --buildsystem=lua --with lua override_dh_auto_build: $(MAKE) dh_auto_build override_dh_auto_install: install -d $(CURDIR)/debian/lua-augeas/$(libdir) install -m 644 augeas.so $(CURDIR)/debian/lua-augeas/$(libdir) dh_auto_install debian/control0000644000000000000000000000132412141613104010562 0ustar Source: lua-augeas Section: interpreters Priority: optional Maintainer: Debian QA Group Build-Depends: debhelper (>= 9), dh-lua (>= 12), libaugeas-dev Standards-Version: 3.9.4 Homepage: http://code.google.com/p/lua-augeas/ Package: lua-augeas Architecture: any Multi-Arch: same Depends: ${shlibs:Depends}, ${misc:Depends} Provides: ${lua:Provides} XB-Lua-Versions: ${lua:Versions} Description: Lua binding to the Augeas C API lua-augeas is a Lua binding to Augeas. Augeas is a configuration editing tool. It parses configuration files in their native formats and transforms them into a tree. Configuration changes are made by manipulating this tree and saving it back into native config files. debian/copyright0000644000000000000000000000207312010105534011112 0ustar Copyright (C) 2010 Natanael Copa 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/patches/0000755000000000000000000000000012010110425010577 5ustar debian/patches/series0000644000000000000000000000002612010107447012024 0ustar fix-build-system.diff debian/patches/fix-build-system.diff0000644000000000000000000000135012010110425014635 0ustar --- a/Makefile +++ b/Makefile @@ -10,21 +10,23 @@ FULL_VERSION := $(VERSION) endif -AUGEAS_LIBS= $(shell pkg-config --libs augeas) +#AUGEAS_LIBS= $(shell pkg-config --libs augeas) OBJS = laugeas.o -LIBS = $(AUGEAS_LIBS) +#LIBS = $(AUGEAS_LIBS) -CFLAGS ?= -g -Wall -Werror + +CFLAGS += -g -Wall -Werror CFLAGS += -fPIC CFLAGS += -DVERSION=\"$(FULL_VERSION)\" +CFLAGS += $(shell pkg-config augeas --cflags) $(shell pkg-config lua5.1 --cflags) -LDFLAGS += -L/lib +LDFLAGS += $(shell pkg-config augeas --libs) $(shell pkg-config lua5.1 --libs) all: augeas.so augeas.so: $(OBJS) - $(CC) $(LDFLAGS) -o $@ -fPIC -shared $^ $(LIBS) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ -fPIC -shared $^ $(LIBS) clean: rm -f augeas.so $(OBJS) debian/changelog0000644000000000000000000000066512141613122011040 0ustar lua-augeas (0.1.1-3) unstable; urgency=low * Bump to Standards-Version 3.9.4. * Orphan package. -- Clint Adams Sun, 05 May 2013 22:32:37 -0400 lua-augeas (0.1.1-2) unstable; urgency=low * Multiarchify. -- Clint Adams Sat, 29 Sep 2012 18:34:02 -0400 lua-augeas (0.1.1-1) unstable; urgency=low * Initial release. -- Clint Adams Mon, 06 Aug 2012 23:17:00 -0400 debian/compat0000644000000000000000000000000212010104310010342 0ustar 9 debian/source/0000755000000000000000000000000012010103455010455 5ustar debian/source/format0000644000000000000000000000001412010103455011663 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000021312010105457010206 0ustar version=3 http://code.google.com/p/lua-augeas/downloads/list?can=1 .*/lua-augeas-(\d[\d.]*)\.(?:zip|tgz|tbz2|txz|tar\.gz|tar\.bz2|tar\.xz)