Browse Source

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

Reviewed-on: https://gitea.hatthieves.es/cloud/lch/pulls/5
0.6-dev
Pedro Berrocal 3 years ago
parent
commit
df48be5f1f
25 changed files with 141 additions and 3 deletions
  1. +9
    -0
      .drone.yml
  2. +2
    -2
      README.md
  3. +0
    -0
      bin/install.sh
  4. +0
    -0
      bin/uninstall.sh
  5. +0
    -0
      debian/.debhelper/generated/lch/installed-by-dh_installdocs
  6. +8
    -0
      debian/README.Debian
  7. +6
    -0
      debian/changelog
  8. +1
    -0
      debian/compat
  9. +15
    -0
      debian/control
  10. +28
    -0
      debian/copyright
  11. +1
    -0
      debian/debhelper-build-stamp
  12. +2
    -0
      debian/files
  13. +2
    -0
      debian/lch.substvars
  14. +12
    -0
      debian/lch/DEBIAN/control
  15. +3
    -0
      debian/lch/DEBIAN/md5sums
  16. +8
    -0
      debian/lch/usr/share/doc/lch/README.Debian
  17. BIN
      debian/lch/usr/share/doc/lch/changelog.Debian.gz
  18. +28
    -0
      debian/lch/usr/share/doc/lch/copyright
  19. +1
    -0
      debian/patches/series
  20. +9
    -0
      debian/rules
  21. +1
    -0
      debian/source/format
  22. +2
    -0
      debian/source/local-options
  23. +2
    -0
      debian/watch
  24. +1
    -1
      lch
  25. +0
    -0
      man/lch.1

+ 9
- 0
.drone.yml 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
README.md View File

@ -4,12 +4,12 @@
###### install
```
sudo ./install.sh
sudo ./bin/install.sh
```
###### Uninstall
```
sudo ./uninstall.sh
sudo ./bin/uninstall.sh
```
## Usage


install.sh → bin/install.sh View File


uninstall.sh → bin/uninstall.sh View File


+ 0
- 0
debian/.debhelper/generated/lch/installed-by-dh_installdocs View File


+ 8
- 0
debian/README.Debian 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
- 0
debian/changelog 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
- 0
debian/compat View File

@ -0,0 +1 @@
11

+ 15
- 0
debian/control 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
- 0
debian/copyright 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
- 0
debian/debhelper-build-stamp View File

@ -0,0 +1 @@
lch

+ 2
- 0
debian/files View File

@ -0,0 +1,2 @@
lch_0.6-1_amd64.buildinfo unknown optional
lch_0.6-1_amd64.deb unknown optional

+ 2
- 0
debian/lch.substvars View File

@ -0,0 +1,2 @@
misc:Depends=
misc:Pre-Depends=

+ 12
- 0
debian/lch/DEBIAN/control 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
- 0
debian/lch/DEBIAN/md5sums 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
- 0
debian/lch/usr/share/doc/lch/README.Debian 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

BIN
debian/lch/usr/share/doc/lch/changelog.Debian.gz View File


+ 28
- 0
debian/lch/usr/share/doc/lch/copyright 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
- 0
debian/patches/series View File

@ -0,0 +1 @@
# You must remove unused comment lines for the released package.

+ 9
- 0
debian/rules 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
- 0
debian/source/format View File

@ -0,0 +1 @@
3.0 (quilt)

+ 2
- 0
debian/source/local-options View File

@ -0,0 +1,2 @@
#abort-on-upstream-changes
#unapply-patches

+ 2
- 0
debian/watch View File

@ -0,0 +1,2 @@
# You must remove unused comment lines for the released package.
version=3

+ 1
- 1
lch View File

@ -1,5 +1,5 @@
#!/usr/bin/env bash
VERSION=0.6r10
VERSION=0.6r11
DEST=$1
shift 1
ORIG=$@


lch.1 → man/lch.1 View File


Loading…
Cancel
Save