Skip to content

Commit ff08838

Browse files
committed
add debian package description
1 parent 4e37820 commit ff08838

20 files changed

+7830
-675
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ pid
1010
ss*
1111
stamp-h1
1212
.libs
13+
.pc
1314
*.json
1415

1516
# Do not edit the following section

Diff for: COPYING

+12-674
Large diffs are not rendered by default.

Diff for: LICENSE

+674
Large diffs are not rendered by default.

Diff for: debian/README.Debian

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
shadowsocks for Debian
2+
----------------------
3+
4+
<possible notes regarding this package - if none, delete this file>
5+
6+
-- Max Lv <[email protected]> Sat, 06 Apr 2013 16:59:15 +0800

Diff for: debian/README.source

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
shadowsocks for Debian
2+
----------------------
3+
4+
<this file describes information about the source package, see Debian policy
5+
manual section 4.14. You WILL either need to modify or delete this file>
6+
7+
8+
9+

Diff for: debian/changelog

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
shadowsocks (1.0-1) unstable; urgency=low
2+
3+
* Initial release
4+
5+
-- Max Lv <[email protected]> Sat, 06 Apr 2013 16:59:15 +0800

Diff for: debian/compat

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
7

Diff for: debian/control

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Source: shadowsocks
2+
Section: net
3+
Priority: extra
4+
Maintainer: Max Lv <[email protected]>
5+
Build-Depends: debhelper (>= 7.0.50~), autotools-dev, mime-support, gawk
6+
Standards-Version: 3.8.4
7+
Homepage: http://www.shadowsocks.org
8+
#Vcs-Git: git://git.debian.org/collab-maint/shadowsocks.git
9+
#Vcs-Browser: http://git.debian.org/?p=collab-maint/shadowsocks.git;a=summary
10+
11+
Package: shadowsocks
12+
Architecture: any
13+
Depends: ${shlibs:Depends}, ${misc:Depends}
14+
Description: A lightweight secured scoks5 proxy.
15+
Shadowsocks-libev is a lightweight secured scoks5 proxy for embedded devices and low end boxes.

Diff for: debian/copyright

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
This work was packaged for Debian by:
2+
3+
Max Lv <[email protected]> on Sat, 06 Apr 2013 16:59:15 +0800
4+
5+
It was downloaded from:
6+
7+
https://github.com/madeye/shadowsocks-libev
8+
9+
Upstream Author(s):
10+
11+
clowwindy <[email protected]>
12+
13+
Copyright:
14+
15+
Copyright (C) 2013 Max Lv
16+
17+
License:
18+
19+
GPLv3
20+
21+
The Debian packaging is:
22+
23+
Copyright (C) 2013 Max Lv <[email protected]>

Diff for: debian/docs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
README.md

Diff for: debian/files

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
shadowsocks_1.0-1_i386.deb net extra

Diff for: debian/patches/debian-changes-1.0-1

+7,045
Large diffs are not rendered by default.

Diff for: debian/patches/series

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
debian-changes-1.0-1

Diff for: debian/rules

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/usr/bin/make -f
2+
# -*- makefile -*-
3+
# Sample debian/rules that uses debhelper.
4+
#
5+
# This file was originally written by Joey Hess and Craig Small.
6+
# As a special exception, when this file is copied by dh-make into a
7+
# dh-make output file, you may use that output file without restriction.
8+
# This special exception was added by Craig Small in version 0.37 of dh-make.
9+
#
10+
# Modified to make a template file for a multi-binary package with separated
11+
# build-arch and build-indep targets by Bill Allombert 2001
12+
13+
# Uncomment this to turn on verbose mode.
14+
#export DH_VERBOSE=1
15+
16+
# This has to be exported to make some magic below work.
17+
export DH_OPTIONS
18+
19+
20+
%:
21+
dh $@

Diff for: debian/shadowsocks.postinst.debhelper

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Automatically added by dh_makeshlibs
2+
if [ "$1" = "configure" ]; then
3+
ldconfig
4+
fi
5+
# End automatically added section

Diff for: debian/shadowsocks.postrm.debhelper

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Automatically added by dh_makeshlibs
2+
if [ "$1" = "remove" ]; then
3+
ldconfig
4+
fi
5+
# End automatically added section

Diff for: debian/shadowsocks.substvars

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
shlibs:Depends=libc6 (>= 2.3.6-6~), libc6 (>= 2.9)
2+
misc:Depends=

Diff for: debian/source/format

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0 (quilt)

Diff for: libasyncns/Makefile.am

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ AM_CFLAGS=-D__EXTENSIONS__ $(PTHREAD_CFLAGS)
2121
lib_LTLIBRARIES=libasyncns.la
2222
libasyncns_la_CC=$(PTHREAD_CC)
2323
libasyncns_la_SOURCES=asyncns.c asyncns.h
24+
libasyncns_la_LDFLAGS= -static
2425
libasyncns_la_LIBADD=$(PTHREAD_LIBS)
2526

2627
include_HEADERS=asyncns.h

Diff for: libev/Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ include_HEADERS = ev.h ev++.h event.h
1414
lib_LTLIBRARIES = libev.la
1515

1616
libev_la_SOURCES = ev.c event.c
17-
libev_la_LDFLAGS = -version-info $(VERSION_INFO)
17+
libev_la_LDFLAGS = -static -version-info $(VERSION_INFO)
1818

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

0 commit comments

Comments
 (0)