mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-22 15:42:20 +03:00
create deb file explicitly with dpkg --build
This commit is contained in:
parent
4940333bf7
commit
4d4d8a6740
@ -21,6 +21,7 @@ jobs:
|
||||
dist: bionic
|
||||
before_script:
|
||||
- export VERSION=$(grep '^version' Cargo.toml | cut -f2 -d'"')
|
||||
- sudo apt install libcurl4-openssl-dev
|
||||
script:
|
||||
- ci/man.sh
|
||||
- ci/release.sh
|
||||
|
16
CHANGELOG.md
Normal file
16
CHANGELOG.md
Normal file
@ -0,0 +1,16 @@
|
||||
TBD
|
||||
===
|
||||
Unreleased changes
|
||||
|
||||
Using libcurl under the hood instead of reqwest rust crate.
|
||||
This makes hurl even closer to curl in terms of behavior and semantic.
|
||||
|
||||
Bug fixes:
|
||||
|
||||
|
||||
|
||||
|
||||
0.99.12 (2020-08-27)
|
||||
=====================================
|
||||
|
||||
Initial Release (beta)
|
@ -35,12 +35,6 @@ curl = "0.4.33"
|
||||
#[dev-dependencies]
|
||||
proptest = "0.9.4"
|
||||
|
||||
[package.metadata.deb]
|
||||
assets = [
|
||||
["target/release/hurl", "usr/bin/", "755"],
|
||||
["target/release/hurlfmt", "usr/bin/", "755"],
|
||||
["target/man/hurl.1.gz", "usr/share/man/man1/hurl.1.gz", "644"],
|
||||
["target/man/hurlfmt.1.gz", "usr/share/man/man1/hurlfmt.1.gz", "644"]
|
||||
]
|
||||
|
||||
|
||||
|
||||
|
43
ci/deb.sh
43
ci/deb.sh
@ -1,6 +1,43 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
cargo install cargo-deb
|
||||
cargo deb
|
||||
cp target/debian/*.deb target/upload
|
||||
set -u
|
||||
sudo rm -rf target/debian
|
||||
mkdir target/debian
|
||||
mkdir -p target/debian/usr/bin target/debian/DEBIAN
|
||||
mkdir -p target/debian/usr/share/man/man1
|
||||
mkdir -p target/debian/usr/share/doc/hurl
|
||||
|
||||
cp target/release/{hurl,hurlfmt} target/debian/usr/bin
|
||||
cp target/man/{hurl.1.gz,hurlfmt.1.gz} target/debian/usr/share/man/man1
|
||||
gzip -9 -n --stdout CHANGELOG.md > target/debian/usr/share/doc/hurl/changelog.gz
|
||||
cat >target/debian/usr/share/doc/hurl/copyright <<END
|
||||
Files: *
|
||||
Copyright: 2020, Orange
|
||||
License: http://www.apache.org/licenses/LICENSE-2.0
|
||||
END
|
||||
|
||||
sudo chown -R root:root target/debian/usr
|
||||
|
||||
cat <<END >target/debian/DEBIAN/control
|
||||
Package: hurl
|
||||
Version: $VERSION
|
||||
Section: web
|
||||
Architecture: amd64
|
||||
Priority: optional
|
||||
Standards-Version: 3.9.4
|
||||
Maintainer: Fabrice Reix <fabrice.reix@orange.com>
|
||||
Depends: libc6 (>= 2.17), libcurl4, zlib1g, libxml2
|
||||
Description: Run and test HTTP requests
|
||||
Hurl is an HTTP client that performs HTTP requests defined in a simple plain
|
||||
text format.
|
||||
Hurl is very versatile, it enables to chain HTTP requests, capture values
|
||||
from HTTP responses and make asserts.
|
||||
|
||||
END
|
||||
dpkg --build target/debian
|
||||
|
||||
#sudo apt install lintian
|
||||
#lintian target/debian.deb
|
||||
mkdir -p target/upload
|
||||
cp target/debian.deb "target/upload/hurl_${VERSION}_amd64.deb"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user