ndn-cxx: Updating to the latest dev version
diff --git a/ndn-cxx/Makefile b/ndn-cxx/Makefile
index 3e0d08a..dd5265c 100644
--- a/ndn-cxx/Makefile
+++ b/ndn-cxx/Makefile
@@ -2,15 +2,15 @@
GIT_URL=https://github.com/named-data/ndn-cxx.git
# Tag name or commit hash for checkout
-GIT_VERSION=5de006becbb60e4a8bd6492143b53b3d33c9961c
+GIT_VERSION=2cced06cec581d3453c0af9704db15dfd5a34c6e
# Package name
NAME=ndn-cxx
# Package version
-VERSION=0.3.0~rc0.0
+VERSION=0.3.0~rc0.1
# PPA version
-PPA_VERSION=1
+PPA_VERSION=2
include ../packaging.mk
diff --git a/ndn-cxx/debian/changelog b/ndn-cxx/debian/changelog
index 35b714e..15c1bbe 100644
--- a/ndn-cxx/debian/changelog
+++ b/ndn-cxx/debian/changelog
@@ -1,3 +1,17 @@
+ndn-cxx (0.3.0~rc0.1-ppa2~DISTRO) DISTRO; urgency=low
+
+ * New version based on 2cced06cec581d3453c0af9704db15dfd5a34c6e
+ (https://github.com/named-data/ndn-cxx.git)
+
+ -- Alexander Afanasyev <alexander.afanasyev@ucla.edu> Sun, 09 Nov 2014 14:14:16 -0800
+
+ndn-cxx (0.3.0~rc0.1-ppa1~DISTRO) DISTRO; urgency=low
+
+ * New version based on 2cced06cec581d3453c0af9704db15dfd5a34c6e
+ (https://github.com/named-data/ndn-cxx.git)
+
+ -- Alexander Afanasyev <alexander.afanasyev@ucla.edu> Sun, 09 Nov 2014 13:57:54 -0800
+
ndn-cxx (0.3.0~rc0.0-ppa1~DISTRO) DISTRO; urgency=low
* New version based on 5de006becbb60e4a8bd6492143b53b3d33c9961c
diff --git a/ndn-cxx/debian/rules b/ndn-cxx/debian/rules
index 4d78fc8..fea3fc8 100755
--- a/ndn-cxx/debian/rules
+++ b/ndn-cxx/debian/rules
@@ -10,6 +10,8 @@
# export DH_VERBOSE=1
LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS)
+CXXFLAGS := $(shell dpkg-buildflags --get CXXFLAGS)
+CXXFLAGS += -std=c++11
%:
dh $@ --parallel
@@ -29,7 +31,6 @@
override_dh_clean:
dh_clean
./waf distclean
- rm -f VERSION
rm -rf .waf-1*
rm -f .waf-tools/*.pyc
rm -f docs/*.pyc
diff --git a/ndn-cxx/debian/rules.precise b/ndn-cxx/debian/rules.precise
new file mode 100755
index 0000000..aa72278
--- /dev/null
+++ b/ndn-cxx/debian/rules.precise
@@ -0,0 +1,38 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+# export DH_VERBOSE=1
+
+LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS)
+CXXFLAGS := $(shell dpkg-buildflags --get CXXFLAGS)
+CXXFLAGS += -std=c++0x
+
+%:
+ dh $@ --parallel
+
+override_dh_auto_configure:
+ ./waf configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+
+override_dh_auto_build:
+ ./waf build
+
+override_dh_auto_install:
+ ./waf install --destdir=debian/tmp
+
+override_dh_auto_clean:
+ ./waf distclean
+
+override_dh_clean:
+ dh_clean
+ ./waf distclean
+ rm -rf .waf-1*
+ rm -f .waf-tools/*.pyc
+ rm -f docs/*.pyc
+
+override_dh_auto_test: