-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
33 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
sudo: required | ||
language: generic | ||
|
||
services: | ||
- docker | ||
|
||
script: | ||
- wget -O- http://travis.debian.net/script.sh | sh - | ||
|
||
branches: | ||
except: | ||
- /^debian\/\d/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
5 | ||
10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,21 @@ Source: ebsmount | |
Section: misc | ||
Priority: optional | ||
Maintainer: Alon Swartz <[email protected]> | ||
Build-Depends: debhelper (>> 4.2.0) | ||
Standards-Version: 3.6.1 | ||
Build-Depends: | ||
debhelper (>= 10), | ||
python-all (>= 2.6.6-3~), | ||
Standards-Version: 4.0.0 | ||
X-Python-Version: >= 2.6 | ||
|
||
Package: ebsmount | ||
Architecture: any | ||
Depends: python (>= 2.4), udev, turnkey-pylib | ||
Section: misc | ||
Depends: | ||
dh-python, | ||
${misc:Depends}, | ||
${python:Depends}, | ||
turnkey-pylib, | ||
udev, | ||
Description: Automatically mount EC2/Eucalyptus EBS devices | ||
Automatically mounts EBS (Elastic Block Storage) devices when they are | ||
attached, supports formatted devices as well as partitions, uniquely | ||
identifiable mount points, and hooking scripts execution upon mount. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
docs/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
man/ebsmount-manual.1 | ||
man/ebsmount-udev.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,9 @@ | ||
#! /usr/bin/make -f | ||
|
||
progname=$(shell awk '/^Source/ {print $$2}' debian/control) | ||
buildroot=debian/$(progname) | ||
prefix=$(buildroot)/usr | ||
include /usr/share/dpkg/pkg-info.mk | ||
|
||
clean: | ||
dh_clean | ||
%: | ||
dh $@ --with python2 | ||
|
||
build: | ||
mkdir -p $(prefix) | ||
|
||
install: | ||
dh_testroot | ||
dh_clean -k | ||
dh_testdir | ||
dh_installdirs | ||
dh_install | ||
$(MAKE) install prefix=$(prefix) destdir=$(buildroot) | ||
dh_link | ||
|
||
binary-indep: install | ||
dh_testdir | ||
dh_testroot | ||
dh_installdocs docs/ | ||
dh_installman man/ebsmount-manual.1 man/ebsmount-udev.8 | ||
dh_installchangelogs | ||
dh_compress | ||
dh_installdeb | ||
dh_gencontrol | ||
dh_md5sums | ||
dh_builddeb | ||
|
||
binary-arch: install | ||
|
||
binary: binary-indep binary-arch | ||
.PHONY: clean binary-indep binary-arch binary install | ||
override_dh_auto_install: | ||
dh_auto_install -- prefix=debian/$(DEB_SOURCE)/usr destdir=debian/$(DEB_SOURCE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (native) |