remove Makefile from debian branch
This commit is contained in:
parent
6a008f7148
commit
09ef98e7ae
20
Makefile
20
Makefile
@ -1,20 +0,0 @@
|
|||||||
|
|
||||||
all: weighttp
|
|
||||||
|
|
||||||
override SOURCES := $(wildcard src/*.c)
|
|
||||||
override OBJECTS := $(patsubst %.c,%.o,$(SOURCES))
|
|
||||||
|
|
||||||
override LDFLAGS += -lev -lpthread
|
|
||||||
override CFLAGS += '-DVERSION="0.2"'
|
|
||||||
|
|
||||||
weighttp: $(OBJECTS)
|
|
||||||
$(CC) $(LDFLAGS) -o weighttp $^
|
|
||||||
|
|
||||||
install: weighttp
|
|
||||||
mkdir -p $(DESTDIR)/usr/bin
|
|
||||||
cp weighttp $(DESTDIR)/usr/bin/
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f weighttp $(OBJECTS)
|
|
||||||
|
|
||||||
.PHONY: all install clean
|
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
weighttp (0.3-3) unstable; urgency=low
|
||||||
|
|
||||||
|
* remove Makefile from debian branch, use quilt. fix Makefile.
|
||||||
|
|
||||||
|
-- Stefan Bühler <stbuehler@web.de> Fri, 10 May 2013 13:54:24 +0200
|
||||||
|
|
||||||
weighttp (0.3-2) unstable; urgency=low
|
weighttp (0.3-2) unstable; urgency=low
|
||||||
|
|
||||||
[ Jyri J. Virkki ]
|
[ Jyri J. Virkki ]
|
||||||
|
4
debian/control
vendored
4
debian/control
vendored
@ -1,8 +1,8 @@
|
|||||||
Source: weighttp
|
Source: weighttp
|
||||||
Section: net
|
Section: net
|
||||||
Priority: extra
|
Priority: extra
|
||||||
Maintainer: Stefan Bühler <source@stbuehler.de>
|
Maintainer: Stefan Bühler <stbuehler@web.de>
|
||||||
Build-Depends: debhelper (>= 9), libev-dev, cdbs
|
Build-Depends: debhelper (>= 9), libev-dev
|
||||||
Standards-Version: 3.9.4
|
Standards-Version: 3.9.4
|
||||||
Homepage: http://weighttp.lighttpd.net/
|
Homepage: http://weighttp.lighttpd.net/
|
||||||
Vcs-Git: git://git.lighttpd.net/weighttp
|
Vcs-Git: git://git.lighttpd.net/weighttp
|
||||||
|
2
debian/copyright
vendored
2
debian/copyright
vendored
@ -6,7 +6,7 @@ It was downloaded from:
|
|||||||
|
|
||||||
http://weighttp.lighttpd.net/
|
http://weighttp.lighttpd.net/
|
||||||
|
|
||||||
Upstream Author(s):
|
Upstream Author:
|
||||||
|
|
||||||
Thomas Porzelt <tp@cryosphere.de>
|
Thomas Porzelt <tp@cryosphere.de>
|
||||||
|
|
||||||
|
37
debian/patches/0001-Makefile-to-replace-waf-handling.patch
vendored
Normal file
37
debian/patches/0001-Makefile-to-replace-waf-handling.patch
vendored
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
From: =?UTF-8?q?Stefan=20B=C3=BChler?= <stbuehler@web.de>
|
||||||
|
Date: Fri, 10 May 2013 13:48:29 +0200
|
||||||
|
Subject: Makefile to replace waf handling
|
||||||
|
|
||||||
|
---
|
||||||
|
Makefile | 22 ++++++++++++++++++++++
|
||||||
|
1 file changed, 22 insertions(+)
|
||||||
|
create mode 100644 Makefile
|
||||||
|
|
||||||
|
diff --git a/Makefile b/Makefile
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000..741b8a1
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/Makefile
|
||||||
|
@@ -0,0 +1,22 @@
|
||||||
|
+
|
||||||
|
+all: weighttp
|
||||||
|
+
|
||||||
|
+override SOURCES := $(wildcard src/*.c)
|
||||||
|
+override OBJECTS := $(patsubst %.c,%.o,$(SOURCES))
|
||||||
|
+
|
||||||
|
+# VERSION must be set in env
|
||||||
|
+
|
||||||
|
+LIBS += -lev -lpthread
|
||||||
|
+override CFLAGS += '-DVERSION="$(VERSION)"'
|
||||||
|
+
|
||||||
|
+weighttp: $(OBJECTS)
|
||||||
|
+ $(CC) $(LDFLAGS) -o weighttp $^ $(LIBS)
|
||||||
|
+
|
||||||
|
+install: weighttp
|
||||||
|
+ mkdir -p $(DESTDIR)/usr/bin
|
||||||
|
+ cp weighttp $(DESTDIR)/usr/bin/
|
||||||
|
+
|
||||||
|
+clean:
|
||||||
|
+ rm -f weighttp $(OBJECTS)
|
||||||
|
+
|
||||||
|
+.PHONY: all install clean
|
7
debian/patches/series
vendored
7
debian/patches/series
vendored
@ -1,3 +1,4 @@
|
|||||||
0001-Fix-header-parsing-to-compare-HTTP-header-field-name.patch
|
0001-Makefile-to-replace-waf-handling.patch
|
||||||
0002-Corrected-Host-header-handling-fixes-2477.patch
|
0002-Fix-header-parsing-to-compare-HTTP-header-field-name.patch
|
||||||
0003-User-Agent-header-no-longer-needs-a-leading-space.patch
|
0003-Corrected-Host-header-handling-fixes-2477.patch
|
||||||
|
0004-User-Agent-header-no-longer-needs-a-leading-space.patch
|
||||||
|
12
debian/rules
vendored
12
debian/rules
vendored
@ -1,11 +1,7 @@
|
|||||||
#!/usr/bin/make -f
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
DEB_MAKE_INSTALL_TARGET=install
|
VERSION := $(shell dpkg-parsechangelog | awk '/Version:/ { print $2 }' | sed -e 's/-[^-]*$$//')
|
||||||
|
export VERSION
|
||||||
|
|
||||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
%:
|
||||||
include /usr/share/cdbs/1/class/makefile.mk
|
dh $@
|
||||||
|
|
||||||
DEB_MAKE_INSTALL_TARGET := install DESTDIR=$(CURDIR)/debian/weighttpd
|
|
||||||
DEB_MAKE_CHECK_TARGET :=
|
|
||||||
|
|
||||||
# Add here any variable or target overrides you need.
|
|
||||||
|
2
debian/source/format
vendored
2
debian/source/format
vendored
@ -1 +1 @@
|
|||||||
1.0
|
3.0 (quilt)
|
||||||
|
Loading…
Reference in New Issue
Block a user