From 45120f08ee6ea7b402343856a5b6d944a5b72459 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sat, 26 Apr 2014 20:18:18 -0400 Subject: [PATCH] update Debian files (not much doge in there though, where is our Debian maintainer? :D) --- contrib/debian/changelog | 13 +++++++++++++ contrib/debian/control | 8 +++++--- contrib/debian/dogecoin-qt.install | 8 ++++---- contrib/debian/dogecoind.install | 3 ++- contrib/debian/rules | 21 ++++++--------------- 5 files changed, 30 insertions(+), 23 deletions(-) diff --git a/contrib/debian/changelog b/contrib/debian/changelog index 95b9ad31a..4f22567f8 100644 --- a/contrib/debian/changelog +++ b/contrib/debian/changelog @@ -1,3 +1,16 @@ +bitcoin (0.9.1-precise1) precise; urgency=medium + + * New upstream release. + * Backport pull #4019 + + -- Matt Corallo Sat, 19 Apr 2014 17:29:00 -0400 + +bitcoin (0.9.0-precise1) precise; urgency=medium + + * New upstream release. + + -- Matt Corallo Thu, 20 Mar 2014 13:10:00 -0400 + bitcoin (0.8.6-precise1) precise; urgency=medium * New upstream release. diff --git a/contrib/debian/control b/contrib/debian/control index b35a7d84d..5ebe6682a 100644 --- a/contrib/debian/control +++ b/contrib/debian/control @@ -5,6 +5,7 @@ Maintainer: Jonas Smedegaard Uploaders: Micah Anderson Build-Depends: debhelper, devscripts, + automake, bash-completion, libboost-system-dev (>> 1.35) | libboost-system1.35-dev, libdb4.8++-dev, @@ -17,7 +18,8 @@ Build-Depends: debhelper, libboost-test-dev (>> 1.35) | libboost-test1.35-dev, qt4-qmake, libqt4-dev, - libqrencode-dev + libqrencode-dev, + libprotobuf-dev, protobuf-compiler Standards-Version: 3.9.2 Homepage: http://www.dogecoin.com/ Vcs-Git: git://github.com/dogecoin/dogecoin.git @@ -34,7 +36,7 @@ Description: peer-to-peer network based digital currency - daemon check for double-spending. . Full transaction history is stored locally at each client. This - requires 2+ GB of space, slowly growing. + requires 20+ GB of space, slowly growing. . This package provides dogecoind, a combined daemon and CLI tool to interact with the daemon. @@ -50,6 +52,6 @@ Description: peer-to-peer network based digital currency - Qt GUI check for double-spending. . Full transaction history is stored locally at each client. This - requires 2+ GB of space, slowly growing. + requires 20+ GB of space, slowly growing. . This package provides Dogecoin-Qt, a GUI for Dogecoin based on Qt. diff --git a/contrib/debian/dogecoin-qt.install b/contrib/debian/dogecoin-qt.install index e076d409a..df105e235 100644 --- a/contrib/debian/dogecoin-qt.install +++ b/contrib/debian/dogecoin-qt.install @@ -1,6 +1,6 @@ -dogecoin-qt usr/bin -share/pixmaps/dogecoin32.xpm usr/share/pixmaps -share/pixmaps/dogecoin16.xpm usr/share/pixmaps -share/pixmaps/dogecoin128.png usr/share/pixmaps +usr/local/bin/dogecoin-qt usr/bin +share/pixmaps/bitcoin32.xpm usr/share/pixmaps +share/pixmaps/bitcoin16.xpm usr/share/pixmaps +share/pixmaps/bitcoin128.png usr/share/pixmaps debian/dogecoin-qt.desktop usr/share/applications debian/dogecoin-qt.protocol usr/share/kde4/services/ diff --git a/contrib/debian/dogecoind.install b/contrib/debian/dogecoind.install index ed8216d08..5dc610b9c 100644 --- a/contrib/debian/dogecoind.install +++ b/contrib/debian/dogecoind.install @@ -1 +1,2 @@ -src/dogecoind usr/bin +usr/local/bin/dogecoind usr/bin +usr/local/bin/dogecoin-cli usr/bin diff --git a/contrib/debian/rules b/contrib/debian/rules index 82eca7964..9c79b745c 100755 --- a/contrib/debian/rules +++ b/contrib/debian/rules @@ -11,23 +11,14 @@ DEB_INSTALL_MANPAGES_dogecoind += debian/manpages/* %: dh --with bash-completion $@ -override_dh_auto_build: - cd src; $(MAKE) -f makefile.unix dogecoind - $(MAKE) - override_dh_auto_clean: - if [ -f Makefile ]; then $(MAKE) clean; else rm -rf build/; rm -f dogecoin-qt; fi - cd src; $(MAKE) -f makefile.unix clean + if [ -f Makefile ]; then $(MAKE) distclean; fi + rm -rf Makefile.in aclocal.m4 configure src/Makefile.in src/bitcoin-config.h.in src/build-aux src/qt/Makefile.in src/qt/test/Makefile.in src/test/Makefile.in +# Yea, autogen should be run on the source archive, but I like doing git archive override_dh_auto_configure: - qmake dogecoin-qt.pro USE_QRCODE=1 + ./autogen.sh + ./configure override_dh_auto_test: - cd src; $(MAKE) -f makefile.unix test_dogecoin - src/test_dogecoin - -# Ensure wrapper is set executable -binary-post-install/dogecoind: - chmod +x $(cdbs_curdestdir)usr/bin/dogecoind -binary-post-install/dogecoin-qt: - chmod +x $(cdbs_curdestdir)usr/bin/dogecoin-qt + make check