Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
apt-transport-s3 (1.2ubuntu1) precise; urgency=low

* Loosening dependency on libapt-pkg4.12

-- Aurélien Guillaume <aurelien@iwi.me> Tue, 22 Oct 2013 09:12:47 +0000

apt-transport-s3 (1.2) precise; urgency=low

* Updated to use IAM temporary credentials

-- Aurélien Guillaume <aurelien@iwi.me> Mon, 21 Oct 2013 09:58:00 +0000

apt-transport-s3 (1.1.1ubuntu2) precise; urgency=low

* Modified for company needs
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Build-Depends: debhelper (>= 5.0), libapt-pkg-dev (>= 0.7.23), cdbs, libcurl4-op

Package: apt-transport-s3
Architecture: any
Depends: ${shlibs:Depends}
Depends: ${shlibs:Depends}, libapt-pkg4.12
Description: an APT transport for communicating with Amazon S3
This package contains the APT amazon s3 transport. It makes it possible to
use
Expand Down
3 changes: 2 additions & 1 deletion debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
# vim: tabstop=4 softtabstop=4 noexpandtab fileencoding=utf-8

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
export DH_VERBOSE=1

include /usr/share/cdbs/1/rules/debhelper.mk

DEB_DIR=$(CURDIR)/debian/apt-transport-s3
DEB_DH_SHLIBDEPS_ARGS=--dpkg-shlibdeps-params "-xlibapt-pkg4.12"

#configure/apt-transport-s3::
# @echo "We don't really have a configure script"
Expand Down
1 change: 1 addition & 0 deletions debian/source/format
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.0 (native)
6 changes: 4 additions & 2 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ default: s3
clean:
rm -f *.o s3

s3: s3_main.o s3.o connect.o
g++ -o s3 s3.o s3_main.o connect.o -lapt-pkg -lapt-inst -lssl -lcrypto
s3: s3_main.o s3.o connect.o jsonz.o object.o
g++ -g -o s3 s3.o s3_main.o connect.o jsonz.o object.o -lapt-pkg -lapt-inst -lssl -lcrypto -lcurl

%.o: %.cc
gcc -I /usr/include -I./ -g -c $<
%.o: %.c
gcc -I /usr/include -I./ -g -c $<

install: s3
cp s3 /usr/lib/apt/methods/
Loading