mirror of
https://github.com/dndx/phantun.git
synced 2025-04-03 18:49:29 +08:00
deb: add debian files
Signed-off-by: Randy Li <ayaka@soulik.info>
This commit is contained in:
parent
1e494a4011
commit
4c04473dff
5
debian/cargo-checksum.json
vendored
Normal file
5
debian/cargo-checksum.json
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
[source.crates-io]
|
||||
replace-with = "vendored-sources"
|
||||
|
||||
[source.vendored-sources]
|
||||
directory = "vendor"
|
25
debian/changelog
vendored
Normal file
25
debian/changelog
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
phantun (0.7.0) UNRELEASED; urgency=medium
|
||||
|
||||
[ Datong Sun ]
|
||||
* fix(fake-tcp): when `connect()`-ing, attempt to get ephemeral port using algorithm similar to Linux (#162)
|
||||
* chore(deps): bump dependencies to latest
|
||||
* chore(cargo): bump `fake-tcp` version to `0.6.0` and `phantun` to `0.7.0`
|
||||
|
||||
[ dependabot[bot] ]
|
||||
* chore(deps): bump docker/build-push-action from 5 to 6
|
||||
* chore(release): remove MIPS targets due to being downgraded to Tier 3 support by Rust
|
||||
* docs(readme): latest release is now `v0.7.0`
|
||||
|
||||
[ Randy Li ]
|
||||
* phantun: change default tun address to link local
|
||||
* phantun: add client and server xor support
|
||||
* rpm: add selinux and rpm spec
|
||||
* deb: add debian files
|
||||
|
||||
-- Randy Li <ayaka@soulik.info> Wed, 11 Dec 2024 15:30:45 +0000
|
||||
|
||||
phantun (0.6.1-1) UNRELEASED; urgency=medium
|
||||
|
||||
* Initial release. (Closes: #nnnn) <nnnn is the bug number of your ITP>
|
||||
|
||||
-- Randy Li <ayaka@soulik.info> Wed, 06 Nov 2024 18:58:00 +0000
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
@ -0,0 +1 @@
|
||||
10
|
19
debian/control
vendored
Normal file
19
debian/control
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
Source: phantun
|
||||
Section: net
|
||||
Priority: optional
|
||||
Maintainer: Randy Li <ayaka@soulik.info>
|
||||
Build-Depends: debhelper (>= 9), cargo, rustc
|
||||
Standards-Version: 4.5.0
|
||||
Homepage: <insert homepage here>
|
||||
|
||||
Package: phantun-client
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||
Description: Phantun client
|
||||
Phantun client binary.
|
||||
|
||||
Package: phantun-server
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||
Description: Phantun server
|
||||
Phantun server binary.
|
24
debian/copyright
vendored
Normal file
24
debian/copyright
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: phantun
|
||||
Source: https://github.com/hizukiayaka/phantun
|
||||
|
||||
Files: *
|
||||
Copyright: 2023, Randy Li <ayaka@soulik.info>
|
||||
License: MIT
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
.
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
6
debian/phantun-client-wrapper
vendored
Normal file
6
debian/phantun-client-wrapper
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
PID_FILE=$1
|
||||
shift 1
|
||||
mkdir -p /var/run/phantun
|
||||
/usr/libexec/phantun/phantun-client "$@" &
|
||||
echo $! > /var/run/phantun/${PID_FILE}
|
2
debian/phantun-client.install
vendored
Normal file
2
debian/phantun-client.install
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
usr/libexec/phantun/phantun-client
|
||||
usr/bin/phantun-client
|
6
debian/phantun-server-wrapper
vendored
Normal file
6
debian/phantun-server-wrapper
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
PID_FILE=$1
|
||||
shift 1
|
||||
mkdir -p /var/run/phantun
|
||||
/usr/libexec/phantun/phantun-server "$@" &
|
||||
echo $! > /var/run/phantun/${PID_FILE}
|
2
debian/phantun-server.install
vendored
Normal file
2
debian/phantun-server.install
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
usr/libexec/phantun/phantun-server
|
||||
usr/bin/phantun-server
|
35
debian/rules
vendored
Executable file
35
debian/rules
vendored
Executable file
@ -0,0 +1,35 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
%:
|
||||
dh $@ --buildsystem=cargo
|
||||
|
||||
override_dh_auto_install:
|
||||
# Define DESTDIR
|
||||
DESTDIR=$(CURDIR)/debian/phantun
|
||||
|
||||
# Install client binary
|
||||
install -D -m 0755 target/release/client debian/tmp/usr/libexec/phantun/phantun-client
|
||||
|
||||
# Install server binary
|
||||
install -D -m 0755 target/release/server debian/tmp/usr/libexec/phantun/phantun-server
|
||||
|
||||
# Create wrapper scripts
|
||||
install -D -m 0755 debian/phantun-client-wrapper debian/tmp/usr/bin/phantun-client
|
||||
|
||||
install -D -m 0755 debian/phantun-server-wrapper debian/tmp/usr/bin/phantun-server
|
||||
|
||||
chmod +x debian/tmp/usr/bin/phantun-client
|
||||
chmod +x debian/tmp/usr/bin/phantun-server
|
||||
|
||||
override_dh_auto_configure:
|
||||
cp ./debian/cargo-checksum.json ./.cargo-checksum.json
|
||||
|
||||
override_dh_auto_build:
|
||||
cargo build --release
|
||||
|
||||
override_dh_install:
|
||||
dh_install
|
||||
|
||||
override_dh_auto_test:
|
||||
# Disable the auto test step
|
||||
true
|
Loading…
x
Reference in New Issue
Block a user