-
Notifications
You must be signed in to change notification settings - Fork 387
New debian release #5256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New debian release #5256
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -151,3 +151,6 @@ src/box/sql/parse.h | |
src/box/sql/parse.c | ||
src/box/sql/opcodes.h | ||
src/box/sql/opcodes.c | ||
|
||
*.dll | ||
*.exe | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
tarantool (2.6.0-1) unstable; urgency=medium | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is better to publish a stable ( Anyway, I see that you already pushed |
||
|
||
* New upstream version. | ||
* Fixed debian/rules (drop dh_systemd), closes: #958615 | ||
* To build the package with SysV use INIT_VARIANT=sysv environment tag. | ||
* Drop exe/dll from source (lintian warnings). | ||
* Closes other lintian warnings (copyright). | ||
|
||
-- Dmitry E. Oboukhov <unera@debian.org> Sat, 22 Aug 2020 13:56:57 +0300 | ||
|
||
tarantool (1.7.5.46.gd98815384-1) unstable; urgency=medium | ||
|
||
* Stabilization of Vinyl storage engine. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,10 @@ Source: tarantool | |
Priority: optional | ||
Maintainer: Roman Tsisyk <roman@tarantool.org> | ||
Uploaders: Dmitry E. Oboukhov <unera@debian.org> | ||
Build-Depends: cdbs (>= 0.4.100), debhelper (>= 9), dpkg-dev (>= 1.16.1~), | ||
# Enable systemd for Debian Jessie+ and Ubuntu Wily+ | ||
dh-systemd (>= 1.22) | sysvinit (<< 2.88dsf-59) | upstart (<< 1.13), | ||
Build-Depends: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: Trailing whitespace. |
||
cdbs (>= 0.4.100), | ||
debhelper (>= 9.2), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should not it be |
||
dpkg-dev (>= 1.16.1~), | ||
cmake, | ||
libreadline-dev, | ||
libncurses5-dev, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
#!/usr/bin/make -f | ||
|
||
|
||
INIT_VARIANT ?= systemd | ||
VERSION := $(shell dpkg-parsechangelog|grep ^Version|awk '{print $$2}') | ||
UVERSION := $(shell echo $(VERSION)|sed 's/-[[:digit:]]\+$$//') | ||
|
||
ifneq ($(wildcard /usr/bin/dh_systemd_start),) | ||
ifeq ($(INIT_VARIANT),systemd) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe now is good time to just enable it unconditionally. All Debian and Ubuntu distros, which offers something else by default, already gone. |
||
WITH_SYSTEMD:=ON | ||
else | ||
WITH_SYSTEMD:=OFF | ||
|
@@ -36,7 +36,7 @@ include /usr/share/cdbs/1/rules/debhelper.mk | |
include /usr/share/cdbs/1/class/cmake.mk | ||
|
||
debian/tarantool-common.install: | ||
ifneq ($(wildcard /usr/bin/dh_systemd_start),) | ||
ifeq ($(INIT_VARIANT),systemd) | ||
cp -p debian/tarantool-common.install.systemd.in $@ | ||
else | ||
cp -p debian/tarantool-common.install.sysvinit.in $@ | ||
|
@@ -47,10 +47,11 @@ build-indep: debian/tarantool-common.install | |
tarball: clean | ||
git describe --long --always > VERSION | ||
tar --exclude=.git --exclude=debian \ | ||
--exclude=doc/www \ | ||
--exclude=doc/sphinx \ | ||
--exclude='*.dll' --exclude='*.exe' \ | ||
--exclude=doc/www \ | ||
--exclude=doc/sphinx \ | ||
--exclude=src/lib/small/debian \ | ||
--exclude=src/lib/msgpuck/debian \ | ||
--exclude=src/lib/msgpuck/debian \ | ||
--exclude=test-run/lib/tarantool-python/debian \ | ||
--exclude=third_party/luafun/debian \ | ||
--exclude=FreeBSD \ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Those files are not generated during build or testing, so I don't see a reason to place them to gitignore. Excluding them from tarballs should be enough to fix the lintian warning.