Skip to content

Commit

Permalink
add debian package description
Browse files Browse the repository at this point in the history
  • Loading branch information
madeye committed Apr 6, 2013
1 parent 4e37820 commit ff08838
Show file tree
Hide file tree
Showing 20 changed files with 7,830 additions and 675 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -10,6 +10,7 @@ pid
ss*
stamp-h1
.libs
.pc
*.json

# Do not edit the following section
Expand Down
686 changes: 12 additions & 674 deletions COPYING

Large diffs are not rendered by default.

674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions debian/README.Debian
@@ -0,0 +1,6 @@
shadowsocks for Debian
----------------------

<possible notes regarding this package - if none, delete this file>

-- Max Lv <max.c.lv@gmail.com> Sat, 06 Apr 2013 16:59:15 +0800
9 changes: 9 additions & 0 deletions debian/README.source
@@ -0,0 +1,9 @@
shadowsocks for Debian
----------------------

<this file describes information about the source package, see Debian policy
manual section 4.14. You WILL either need to modify or delete this file>




5 changes: 5 additions & 0 deletions debian/changelog
@@ -0,0 +1,5 @@
shadowsocks (1.0-1) unstable; urgency=low

* Initial release

-- Max Lv <max.c.lv@gmail.com> Sat, 06 Apr 2013 16:59:15 +0800
1 change: 1 addition & 0 deletions debian/compat
@@ -0,0 +1 @@
7
15 changes: 15 additions & 0 deletions debian/control
@@ -0,0 +1,15 @@
Source: shadowsocks
Section: net
Priority: extra
Maintainer: Max Lv <max.c.lv@gmail.com>
Build-Depends: debhelper (>= 7.0.50~), autotools-dev, mime-support, gawk
Standards-Version: 3.8.4
Homepage: http://www.shadowsocks.org
#Vcs-Git: git://git.debian.org/collab-maint/shadowsocks.git
#Vcs-Browser: http://git.debian.org/?p=collab-maint/shadowsocks.git;a=summary

Package: shadowsocks
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: A lightweight secured scoks5 proxy.
Shadowsocks-libev is a lightweight secured scoks5 proxy for embedded devices and low end boxes.
23 changes: 23 additions & 0 deletions debian/copyright
@@ -0,0 +1,23 @@
This work was packaged for Debian by:

Max Lv <max.c.lv@gmail.com> on Sat, 06 Apr 2013 16:59:15 +0800

It was downloaded from:

https://github.com/madeye/shadowsocks-libev

Upstream Author(s):

clowwindy <clowwindy42@gmail.com>

Copyright:

Copyright (C) 2013 Max Lv

License:

GPLv3

The Debian packaging is:

Copyright (C) 2013 Max Lv <max.c.lv@gmail.com>
1 change: 1 addition & 0 deletions debian/docs
@@ -0,0 +1 @@
README.md
1 change: 1 addition & 0 deletions debian/files
@@ -0,0 +1 @@
shadowsocks_1.0-1_i386.deb net extra
7,045 changes: 7,045 additions & 0 deletions debian/patches/debian-changes-1.0-1

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions debian/patches/series
@@ -0,0 +1 @@
debian-changes-1.0-1
21 changes: 21 additions & 0 deletions debian/rules
@@ -0,0 +1,21 @@
#!/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.
#
# Modified to make a template file for a multi-binary package with separated
# build-arch and build-indep targets by Bill Allombert 2001

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

# This has to be exported to make some magic below work.
export DH_OPTIONS


%:
dh $@
5 changes: 5 additions & 0 deletions debian/shadowsocks.postinst.debhelper
@@ -0,0 +1,5 @@
# Automatically added by dh_makeshlibs
if [ "$1" = "configure" ]; then
ldconfig
fi
# End automatically added section
5 changes: 5 additions & 0 deletions debian/shadowsocks.postrm.debhelper
@@ -0,0 +1,5 @@
# Automatically added by dh_makeshlibs
if [ "$1" = "remove" ]; then
ldconfig
fi
# End automatically added section
2 changes: 2 additions & 0 deletions debian/shadowsocks.substvars
@@ -0,0 +1,2 @@
shlibs:Depends=libc6 (>= 2.3.6-6~), libc6 (>= 2.9)
misc:Depends=
1 change: 1 addition & 0 deletions debian/source/format
@@ -0,0 +1 @@
3.0 (quilt)
1 change: 1 addition & 0 deletions libasyncns/Makefile.am
Expand Up @@ -21,6 +21,7 @@ AM_CFLAGS=-D__EXTENSIONS__ $(PTHREAD_CFLAGS)
lib_LTLIBRARIES=libasyncns.la
libasyncns_la_CC=$(PTHREAD_CC)
libasyncns_la_SOURCES=asyncns.c asyncns.h
libasyncns_la_LDFLAGS= -static
libasyncns_la_LIBADD=$(PTHREAD_LIBS)

include_HEADERS=asyncns.h
2 changes: 1 addition & 1 deletion libev/Makefile.am
Expand Up @@ -14,7 +14,7 @@ include_HEADERS = ev.h ev++.h event.h
lib_LTLIBRARIES = libev.la

libev_la_SOURCES = ev.c event.c
libev_la_LDFLAGS = -version-info $(VERSION_INFO)
libev_la_LDFLAGS = -static -version-info $(VERSION_INFO)

ev.3: ev.pod
pod2man -n LIBEV -r "libev-$(VERSION)" -c "libev - high performance full featured event loop" -s3 <$< >$@

0 comments on commit ff08838

Please sign in to comment.