~ubuntu-branches/ubuntu/vivid/sslh/vivid-proposed

« back to all changes in this revision

Viewing changes to .pc/fixed_version.diff/genver.sh

  • Committer: Package Import Robot
  • Author(s): Guillaume Delacour
  • Date: 2014-08-07 00:06:06 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20140807000606-y1tg7j8i5t7d4drr
Tags: 1.16-1
* New upstream release: fix some startup problem when interfaces are not
  ready at boot time (IP_FREEBIND support when available) and can use libcap
  for transparent mode
* Enable libcap and libwrap support at build time
* Enable dpkg-buildflags: Drop hardening-wrapper Build-Depends and use
  DEB_BUILD_HARDENING instead of DEB_BUILD_MAINT_OPTIONS
* Remove old .gitignore as upstream has one too
* debian/sslh.tmpfile: Create /run/sslh for systemd as root because sslh
  write its pid before dropping privileges (Closes: #740560)
* debian/patches/disable_ip_freebind_test.diff: Remove "Can't bind address"
  upstream test because IP_FREEBIND is now enabled upstream
* debian/docs: upstream README is now README.md
* debian/rules:
  + use DESTDIR in addition of PREFIX as upstream change Makefile
* Refresh debian/patches/disable_valgrind_launch.diff due to upstream
  changes
* Stop service in case of purge (to be able to remove the user too)
* Use DEB_BUILD_OPTIONS to speed the build
* debian/patches/fixed_version.diff: Fix the version of binaries based on
  debian/changelog (instead of relying on git)
* Update Description as sslh is not only a ssl/ssh multiplexer but a
  protocol multiplexer

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/bash
 
2
 
 
3
if [ ${#} -eq 1 ] && [ "x$1" = "x-r" ]; then
 
4
        # release text only
 
5
        QUIET=1
 
6
else
 
7
        QUIET=0
 
8
fi
 
9
 
 
10
if ! `(git status | grep -q "On branch") 2> /dev/null`; then
 
11
        # If we don't have git, we can't work out what
 
12
        # version this is. It must have been downloaded as a
 
13
        # zip file. Github creates the zip file with all
 
14
        # files dated from the last change: use the
 
15
        # Makefile's modification time as a release number
 
16
        release=zip-`stat -c "%y" Makefile | sed 's/ .*//'`
 
17
fi
 
18
 
 
19
if head=`git rev-parse --verify HEAD 2>/dev/null`; then
 
20
        # generate the version info based on the tag
 
21
        release=`(git describe --tags || git --describe || git describe --all --long) \
 
22
                2>/dev/null | tr -d '\n'`
 
23
 
 
24
        # Are there uncommitted changes?
 
25
        git update-index --refresh --unmerged > /dev/null
 
26
        if git diff-index --name-only HEAD | grep -v "^scripts/package" \
 
27
            | read dummy; then
 
28
                release="$release-dirty"
 
29
        fi
 
30
fi
 
31
 
 
32
 
 
33
if [ $QUIET -ne 1 ]; then
 
34
        printf "#ifndef _VERSION_H_ \n"
 
35
        printf "#define _VERSION_H_ \n\n"
 
36
        printf "#define VERSION \"$release\"\n"
 
37
        printf "#endif\n"
 
38
else
 
39
        printf "$release\n"
 
40
fi