mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-07-15 11:57:59 +00:00
New upstream version 1.3.0
This commit is contained in:
Symlink
+1
@@ -0,0 +1 @@
|
||||
../gpg2-and-1/gpg1
|
||||
Executable
+30
@@ -0,0 +1,30 @@
|
||||
#!/bin/sh
|
||||
|
||||
while [ "$1" != "" ]; do
|
||||
case $1 in
|
||||
--version)
|
||||
/bin/cat <<'OUTPUT'
|
||||
gpg (GnuPG) 2.2.4
|
||||
libgcrypt 1.8.1
|
||||
Copyright (C) 2017 Free Software Foundation, Inc.
|
||||
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
|
||||
This is free software: you are free to change and redistribute it.
|
||||
There is NO WARRANTY, to the extent permitted by law.
|
||||
|
||||
Home: /root/.gnupg
|
||||
Supported algorithms:
|
||||
Pubkey: RSA, ELG, DSA, ECDH, ECDSA, EDDSA
|
||||
Cipher: IDEA, 3DES, CAST5, BLOWFISH, AES, AES192, AES256, TWOFISH,
|
||||
CAMELLIA128, CAMELLIA192, CAMELLIA256
|
||||
Hash: SHA1, RIPEMD160, SHA256, SHA384, SHA512, SHA224
|
||||
Compression: Uncompressed, ZIP, ZLIB, BZIP2
|
||||
OUTPUT
|
||||
;;
|
||||
-?*)
|
||||
echo "Unknown option: $1"
|
||||
;;
|
||||
*)
|
||||
break
|
||||
esac
|
||||
shift
|
||||
done
|
||||
Executable
+29
@@ -0,0 +1,29 @@
|
||||
#!/bin/sh
|
||||
|
||||
while [ "$1" != "" ]; do
|
||||
case $1 in
|
||||
--version)
|
||||
/bin/cat <<'OUTPUT'
|
||||
gpg (GnuPG) 1.4.22
|
||||
Copyright (C) 2015 Free Software Foundation, Inc.
|
||||
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
|
||||
This is free software: you are free to change and redistribute it.
|
||||
There is NO WARRANTY, to the extent permitted by law.
|
||||
|
||||
Home: ~/.gnupg
|
||||
Supported algorithms:
|
||||
Pubkey: RSA, RSA-E, RSA-S, ELG-E, DSA
|
||||
Cipher: IDEA, 3DES, CAST5, BLOWFISH, AES, AES192, AES256, TWOFISH,
|
||||
CAMELLIA128, CAMELLIA192, CAMELLIA256
|
||||
Hash: MD5, SHA1, RIPEMD160, SHA256, SHA384, SHA512, SHA224
|
||||
Compression: Uncompressed, ZIP, ZLIB, BZIP2
|
||||
OUTPUT
|
||||
;;
|
||||
-?*)
|
||||
echo "Unknown option: $1"
|
||||
;;
|
||||
*)
|
||||
break
|
||||
esac
|
||||
shift
|
||||
done
|
||||
Symlink
+1
@@ -0,0 +1 @@
|
||||
../gpg2-and-1/gpg
|
||||
Symlink
+1
@@ -0,0 +1 @@
|
||||
../gpgv2-and-1/gpgv1
|
||||
Executable
+22
@@ -0,0 +1,22 @@
|
||||
#!/bin/sh
|
||||
|
||||
while [ "$1" != "" ]; do
|
||||
case $1 in
|
||||
--version)
|
||||
/bin/cat <<'OUTPUT'
|
||||
gpgv (GnuPG) 2.2.4
|
||||
libgcrypt 1.8.1
|
||||
Copyright (C) 2017 Free Software Foundation, Inc.
|
||||
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
|
||||
This is free software: you are free to change and redistribute it.
|
||||
There is NO WARRANTY, to the extent permitted by law.
|
||||
OUTPUT
|
||||
;;
|
||||
-?*)
|
||||
echo "Unknown option: $1"
|
||||
;;
|
||||
*)
|
||||
break
|
||||
esac
|
||||
shift
|
||||
done
|
||||
Executable
+21
@@ -0,0 +1,21 @@
|
||||
#!/bin/sh
|
||||
|
||||
while [ "$1" != "" ]; do
|
||||
case $1 in
|
||||
--version)
|
||||
/bin/cat <<'OUTPUT'
|
||||
gpgv (GnuPG) 1.4.22
|
||||
Copyright (C) 2015 Free Software Foundation, Inc.
|
||||
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
|
||||
This is free software: you are free to change and redistribute it.
|
||||
There is NO WARRANTY, to the extent permitted by law.
|
||||
OUTPUT
|
||||
;;
|
||||
-?*)
|
||||
echo "Unknown option: $1"
|
||||
;;
|
||||
*)
|
||||
break
|
||||
esac
|
||||
shift
|
||||
done
|
||||
Symlink
+1
@@ -0,0 +1 @@
|
||||
../gpgv2-and-1/gpgv
|
||||
Reference in New Issue
Block a user