Merge pull request '0.6r10' (#5) from 0.6r10 into 0.6-dev

Reviewed-on: https://gitea.hatthieves.es/cloud/lch/pulls/5
This commit is contained in:
Pedro Berrocal
2020-10-03 16:42:11 +00:00
25 changed files with 141 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
pipeline:
simple:
image: plugins/deb
description: Linux Compressor Humanizer
package: lch
version: 0.6
arch: all
auto_path: debian/
+2 -2
View File
@@ -4,12 +4,12 @@
###### install ###### install
``` ```
sudo ./install.sh sudo ./bin/install.sh
``` ```
###### Uninstall ###### Uninstall
``` ```
sudo ./uninstall.sh sudo ./bin/uninstall.sh
``` ```
## Usage ## Usage
View File
View File
+8
View File
@@ -0,0 +1,8 @@
lch for Debian
Please edit this to provide information specific to
this lch Debian package.
(Automatically generated by debmake Version 4.3.1)
-- pberrocal <> Sat, 03 Oct 2020 18:11:23 +0200
+6
View File
@@ -0,0 +1,6 @@
lch (0.6-1) UNRELEASED; urgency=low
* Initial release. Closes: #nnnn
<nnnn is the bug number of your ITP>
-- pberrocal <> Sat, 03 Oct 2020 18:11:23 +0200
+1
View File
@@ -0,0 +1 @@
11
+15
View File
@@ -0,0 +1,15 @@
Source: lch
Section: unknown
Priority: optional
Maintainer: pberrocal <>
Build-Depends: debhelper (>=11~)
Standards-Version: 4.1.4
Homepage: <insert the upstream URL, if relevant>
Package: lch
Architecture: any
Multi-Arch: foreign
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: auto-generated package by debmake
This Debian binary package was auto-generated by the
debmake(1) command provided by the debmake package.
+28
View File
@@ -0,0 +1,28 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: lch
Source: <url://example.com>
#
# Please double check copyright with the licensecheck(1) command.
Files: .drone.yml
README.md
TODO
bin/install.sh
bin/uninstall.sh
drone.yml
lch
lib/compressor.sh
lib/decompressor.sh
lib/installer.sh
lib/installers/deb.sh
lib/installers/pacman.sh
lib/installers/rpm.sh
lib/installers/zypper.sh
lib/resources.sh
man/lch.1
Copyright: __NO_COPYRIGHT_NOR_LICENSE__
License: __NO_COPYRIGHT_NOR_LICENSE__
#----------------------------------------------------------------------------
# Files marked as NO_LICENSE_TEXT_FOUND may be covered by the following
# license/copyright files.
+1
View File
@@ -0,0 +1 @@
lch
+2
View File
@@ -0,0 +1,2 @@
lch_0.6-1_amd64.buildinfo unknown optional
lch_0.6-1_amd64.deb unknown optional
+2
View File
@@ -0,0 +1,2 @@
misc:Depends=
misc:Pre-Depends=
+12
View File
@@ -0,0 +1,12 @@
Package: lch
Version: 0.6-1
Architecture: amd64
Maintainer: pberrocal <>
Installed-Size: 9
Section: unknown
Priority: optional
Multi-Arch: foreign
Homepage: <insert the upstream URL, if relevant>
Description: auto-generated package by debmake
This Debian binary package was auto-generated by the
debmake(1) command provided by the debmake package.
+3
View File
@@ -0,0 +1,3 @@
f6fb3e8cd3df7844952899d38c245931 usr/share/doc/lch/README.Debian
9e4b1d3d394d61a03d567beb35cc8ed9 usr/share/doc/lch/changelog.Debian.gz
706cfa6c8e208af842ddf8e4424c0363 usr/share/doc/lch/copyright
+8
View File
@@ -0,0 +1,8 @@
lch for Debian
Please edit this to provide information specific to
this lch Debian package.
(Automatically generated by debmake Version 4.3.1)
-- pberrocal <> Sat, 03 Oct 2020 18:11:23 +0200
Binary file not shown.
+28
View File
@@ -0,0 +1,28 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: lch
Source: <url://example.com>
#
# Please double check copyright with the licensecheck(1) command.
Files: .drone.yml
README.md
TODO
bin/install.sh
bin/uninstall.sh
drone.yml
lch
lib/compressor.sh
lib/decompressor.sh
lib/installer.sh
lib/installers/deb.sh
lib/installers/pacman.sh
lib/installers/rpm.sh
lib/installers/zypper.sh
lib/resources.sh
man/lch.1
Copyright: __NO_COPYRIGHT_NOR_LICENSE__
License: __NO_COPYRIGHT_NOR_LICENSE__
#----------------------------------------------------------------------------
# Files marked as NO_LICENSE_TEXT_FOUND may be covered by the following
# license/copyright files.
+1
View File
@@ -0,0 +1 @@
# You must remove unused comment lines for the released package.
Vendored Executable
+9
View File
@@ -0,0 +1,9 @@
#!/usr/bin/make -f
# You must remove unused comment lines for the released package.
#export DH_VERBOSE = 1
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
%:
dh $@
+1
View File
@@ -0,0 +1 @@
3.0 (quilt)
+2
View File
@@ -0,0 +1,2 @@
#abort-on-upstream-changes
#unapply-patches
+2
View File
@@ -0,0 +1,2 @@
# You must remove unused comment lines for the released package.
version=3
+1 -1
View File
@@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
VERSION=0.6r10 VERSION=0.6r11
DEST=$1 DEST=$1
shift 1 shift 1
ORIG=$@ ORIG=$@
View File