debian/0000755000000000000000000000000012242561512007166 5ustar debian/README.source0000644000000000000000000000037712242560564011362 0ustar erlang-bear source package infomation - Remove source code Erlang-bear's original source codes contains rebar binary. The source package of Debian has deleted this binary. -- Nobuhiro Iwamatsu Sat, 22 Sep 15:48:08 2012 +0900 debian/dh-rebar.conf0000644000000000000000000000014712242560564011531 0ustar EXEC_REBAR_COMMANDS=compile PKG_NAME= PKG_VARSION= #REBAR_LIB_DIR= #REBAR_BIN_DIR= #REBAR_INCLUDE_DIR= debian/rules0000755000000000000000000000007612242560564010257 0ustar #!/usr/bin/make -f %: dh $@ --buildsystem=rebar --with rebar debian/compat0000644000000000000000000000000212242560564010372 0ustar 9 debian/watch0000644000000000000000000000032012242560564010220 0ustar version=3 opts=uversionmangle=s/_/./g \ https://github.com/boundary/bear/tags .*/(?:v||bear[_\-])(\d.*)\.(?:tgz|tbz2|txz|tar\.(?:gz|bz2|xz)) # Bart Martens Sun, 06 Jan 2013 20:51:10 +0000 debian/control0000644000000000000000000000164312242560564010603 0ustar Source: erlang-bear Maintainer: LeoFS maintainers team Uploaders: Taku YASUI , Nobuhiro Iwamatsu Section: devel Priority: optional Standards-Version: 3.9.4 Homepage: https://github.com/boundary/bear Vcs-Git: git://anonscm.debian.org/pkg-leofs/erlang-bear.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-leofs/erlang-bear.git;a=summary Build-Depends: debhelper (>= 9), dpkg-dev (>= 1.16.1~), erlang-dev (>= 1:13.b.2.1), erlang-dialyzer, dh-rebar Package: erlang-bear Architecture: any Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, erlang-base-hipe | erlang-base | ${erlang-abi:Depends}, ${erlang:Depends} Description: Set of statistics functions for erlang Currently bear is focused on use inside the Folsom Erlang metrics library, but all of these functions are generic and useful in other situations. debian/source/0000755000000000000000000000000012242560564010474 5ustar debian/source/format0000644000000000000000000000001412242560564011702 0ustar 3.0 (quilt) debian/copyright0000644000000000000000000000102212242560564011122 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0 Upstream-Name: bear Upstream-Contact: Joe Williams Source: https://github.com/boundary/bear.git Files: * Copyright: 2012 Joe Williams License: Apache-2.0 Files: debian/* Copyright: Copyright 2012, Nobuhiro Iwamatsu License: Apache-2.0 License: Apache-2.0 On Debian systems, the full text of the Apache License (Version 2.0) can be found in the file `/usr/share/common-licenses/Apache-2.0' file. debian/changelog0000644000000000000000000000321312242560620011036 0ustar erlang-bear (0.8.0+dfsg-1) unstable; urgency=low * New upstream release. -- Nobuhiro Iwamatsu Tue, 19 Nov 2013 12:56:43 +0900 erlang-bear (0.1.3+dfsg-3) unstable; urgency=low * Update debian/control. - Add dh-rebar to Build-Depends. * Update debian/rules. - Changed to use dh-rebar. -- Nobuhiro Iwamatsu Sun, 18 Aug 2013 08:16:41 +0900 erlang-bear (0.1.3+dfsg-2) unstable; urgency=low * Update debian/changelog. - Add erlang-dialyzer to Build-Depends. Fix FTBFS if built with Erlang R16B01. -- Nobuhiro Iwamatsu Tue, 30 Jul 2013 08:13:36 +0900 erlang-bear (0.1.3+dfsg-1) unstable; urgency=low * New upstream release. * Update patches/set_version.patch. -- Nobuhiro Iwamatsu Wed, 13 Mar 2013 12:36:12 +0900 erlang-bear (0.1.2+dfsg-1) unstable; urgency=low * New upstream release. * Update patches/set_version.patch. * Update debian/control. - Dump Standards-Version to 3.9.4. * Add debian/watch. -- Nobuhiro Iwamatsu Tue, 15 Jan 2013 09:14:52 +0900 erlang-bear (0.1+dfsg-3) unstable; urgency=low * Fix Homepage field. -- Nobuhiro Iwamatsu Thu, 29 Nov 2012 01:01:52 +0900 erlang-bear (0.1+dfsg-2) unstable; urgency=low * Fix script of getting version. * Update debian/control. Update Maintainer and Uploaders section. -- Nobuhiro Iwamatsu Fri, 28 Sep 2012 19:23:04 +0900 erlang-bear (0.1+dfsg-1) unstable; urgency=low * Initial release. (Closes: #682238) -- Nobuhiro Iwamatsu Tue, 17 Jul 2012 15:06:05 +0900 debian/patches/0000755000000000000000000000000012242560564010623 5ustar debian/patches/set_version.patch0000644000000000000000000000070012242560564014201 0ustar Description: Set version of erlang-bear directly An original code specifies version using git from git repository. This fixes not using git. Origin: vendor Forwarded: not-needed Last-Update: 2013-01-15 --- erlang-bear-0.1+dfsg.orig/src/bear.app.src +++ erlang-bear-0.1+dfsg/src/bear.app.src @@ -1,7 +1,7 @@ {application, bear, [ {description, ""}, - {vsn, git}, + {vsn, "0.1.3"}, {registered, []}, {applications, []}, {env, []} debian/patches/Add-Makefile.patch0000644000000000000000000000112612242560564014047 0ustar From 097219156a6e2cb825b49a7d47a86a9194588804 Mon Sep 17 00:00:00 2001 From: Nobuhiro Iwamatsu Date: Tue, 17 Jul 2012 15:16:11 +0900 Subject: [PATCH] Add Makefile Signed-off-by: Nobuhiro Iwamatsu --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..adcc6f9 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +all: + rebar compile +compile: + rebar compile skip_deps=true +clean: + rebar clean skip_deps=true +distclean: + rebar clean -- 1.7.10.4 debian/patches/series0000644000000000000000000000004512242560564012037 0ustar Add-Makefile.patch set_version.patch