Skip to content

Commit 0681a71

Browse files
committed
add deb folder
1 parent 880f2b5 commit 0681a71

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+9027
-0
lines changed

deb_file/flux_amd64/DEBIAN/changelog

Lines changed: 503 additions & 0 deletions
Large diffs are not rendered by default.

deb_file/flux_amd64/DEBIAN/compat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
9

deb_file/flux_amd64/DEBIAN/control

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Package: flux
2+
Version: 7.2.0
3+
Source: flux
4+
Section: utils
5+
Priority: optional
6+
Maintainer: Flux Foundation <info@runonflux.io>
7+
Homepage: https://runonflux.io
8+
Build-Depends: autoconf, automake, bsdmainutils, build-essential, git, g++-multilib, libc6-dev, libtool, m4, ncurses-dev, pkg-config, python, unzip, wget, zlib1g-dev
9+
Vcs-Git: https://github.com/runonflux/fluxd.git
10+
Vcs-Browser: https://github.com/runonflux/fluxd
11+
Architecture: amd64
12+
Depends: libc6 (>= 2.17), libgcc1 (>= 1:3.0), libgomp1 (>= 4.9), libstdc++6 (>= 5.2)
13+
Description: Flux is a cryptocurrency that empowers Flux - Your gateway to a decetralized world.

deb_file/flux_amd64/DEBIAN/copyright

Lines changed: 1448 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
usr/share/doc/flux/examples/flux.conf
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
usr/local/bin/fluxd
2+
usr/local/bin/flux-cli
3+
usr/local/bin/flux-tx
4+
usr/local/bin/flux-fetch-params.sh
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
usr/share/doc/flux/manpages/flux-cli.1
2+
usr/share/doc/flux/manpages/fluxd.1
3+
usr/share/doc/flux/manpages/flux-tx.1
4+
usr/share/doc/flux/manpages/flux-fetch-params.1

deb_file/flux_amd64/DEBIAN/postinst

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
#!/bin/sh
2+
# postinst script for flux
3+
#
4+
# see: dh_installdeb(1)
5+
6+
set -e
7+
8+
# summary of how this script can be called:
9+
# * <postinst> `configure' <most-recently-configured-version>
10+
# * <old-postinst> `abort-upgrade' <new version>
11+
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
12+
# <new-version>
13+
# * <postinst> `abort-remove'
14+
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
15+
# <failed-install-package> <version> `removing'
16+
# <conflicting-package> <version>
17+
# for details, see https://www.debian.org/doc/debian-policy/ or
18+
# the debian-policy package
19+
20+
21+
case "$1" in
22+
configure)
23+
;;
24+
25+
abort-upgrade|abort-remove|abort-deconfigure)
26+
;;
27+
28+
*)
29+
echo "postinst called with unknown argument \`$1'" >&2
30+
exit 1
31+
;;
32+
esac
33+
34+
# dh_installdeb will replace this with shell code automatically
35+
# generated by other debhelper scripts.
36+
37+
#DEBHELPER#
38+
39+
exit 0

deb_file/flux_amd64/DEBIAN/postrm

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#!/bin/sh
2+
# postrm script for flux
3+
#
4+
# see: dh_installdeb(1)
5+
6+
set -e
7+
8+
# summary of how this script can be called:
9+
# * <postrm> `remove'
10+
# * <postrm> `purge'
11+
# * <old-postrm> `upgrade' <new-version>
12+
# * <new-postrm> `failed-upgrade' <old-version>
13+
# * <new-postrm> `abort-install'
14+
# * <new-postrm> `abort-install' <old-version>
15+
# * <new-postrm> `abort-upgrade' <old-version>
16+
# * <disappearer's-postrm> `disappear' <overwriter>
17+
# <overwriter-version>
18+
# for details, see https://www.debian.org/doc/debian-policy/ or
19+
# the debian-policy package
20+
21+
22+
case "$1" in
23+
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
24+
;;
25+
26+
*)
27+
echo "postrm called with unknown argument \`$1'" >&2
28+
exit 1
29+
;;
30+
esac
31+
32+
# dh_installdeb will replace this with shell code automatically
33+
# generated by other debhelper scripts.
34+
35+
#DEBHELPER#
36+
37+
exit 0

deb_file/flux_amd64/DEBIAN/preinst

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#!/bin/sh
2+
# preinst script for flux
3+
#
4+
# see: dh_installdeb(1)
5+
6+
set -e
7+
8+
# summary of how this script can be called:
9+
# * <new-preinst> `install'
10+
# * <new-preinst> `install' <old-version>
11+
# * <new-preinst> `upgrade' <old-version>
12+
# * <old-preinst> `abort-upgrade' <new-version>
13+
# for details, see https://www.debian.org/doc/debian-policy/ or
14+
# the debian-policy package
15+
16+
17+
case "$1" in
18+
install|upgrade)
19+
;;
20+
21+
abort-upgrade)
22+
;;
23+
24+
*)
25+
echo "preinst called with unknown argument \`$1'" >&2
26+
exit 1
27+
;;
28+
esac
29+
30+
# dh_installdeb will replace this with shell code automatically
31+
# generated by other debhelper scripts.
32+
33+
#DEBHELPER#
34+
35+
exit 0

0 commit comments

Comments
 (0)