From 5808c582d3d89ba33560c4b997a5d2c45e55b248 Mon Sep 17 00:00:00 2001 From: Stas Sergeev Date: Sat, 8 Sep 2018 18:21:53 +0300 Subject: [PATCH] beta-1 --- debian/changelog | 6 ++++++ fdpp/fdpp.spec | 2 +- fdpp/makefile | 16 +++++++++------- 3 files changed, 16 insertions(+), 8 deletions(-) diff --git a/debian/changelog b/debian/changelog index b5bec2fe..ea4692fc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +fdpp (0.1~beta-1) bionic; urgency=low + + * beta-1 + + -- Stas Sergeev Sat, 8 Sep 2018 18:00:00 +0300 + fdpp (0.1~alpha-3) artful; urgency=low * alpha-3 diff --git a/fdpp/fdpp.spec b/fdpp/fdpp.spec index 2bb9693f..043b2ddd 100644 --- a/fdpp/fdpp.spec +++ b/fdpp/fdpp.spec @@ -3,7 +3,7 @@ # Name: fdpp -Version: 0.1 +Version: 0.1beta1 Release: 1%{?dist} Summary: DOS compatibility layer diff --git a/fdpp/makefile b/fdpp/makefile index 79dae4fd..d4621bd2 100644 --- a/fdpp/makefile +++ b/fdpp/makefile @@ -10,7 +10,9 @@ LIBS=$(lib_path)/device.lib HDR=$(srcdir)/../hdr/ SRC=$(srcdir)/../kernel/ FDPPLIB = libfdpp.so -PKG = fdpp-0.1.tar.gz +RELVER = beta1 +PKG = fdpp-0.1$(RELVER) +TGZ = $(PKG).tar.gz ALLCFLAGS += -I . -I $(SRC) -I $(srcdir) -DDATADIR=$(DATADIR) -DKRNL_NAME=$(TARGET).sys NASMFLAGS += -i$(SRC) @@ -203,14 +205,14 @@ install: $(FDPPLIB) fdpp.pc install -D -t $(DESTDIR)$(PREFIX)/include/fdpp -m 0644 $(srcdir)/thunks.h install -D -t $(DESTDIR)$(DATADIR) -m 0644 fdppkrnl.sys -$(PKG): - cd .. && git archive -o fdpp/fdpp-0.1.tar.gz --prefix=fdpp-0.1/ HEAD -.PHONY: $(PKG) +$(TGZ): + cd .. && git archive -o fdpp/$(TGZ) --prefix=$(PKG)/ HEAD +.PHONY: $(TGZ) -tar: $(PKG) +tar: $(TGZ) -rpm: $(PKG) - rpmbuild -tb $(PKG) +rpm: $(TGZ) + rpmbuild -tb $(TGZ) deb: debuild -i -us -uc -b