gnupg and deps in main

This commit is contained in:
Ertuğrul Erata
2015-08-21 10:26:26 +03:00
parent d1559b9776
commit 17a55ca6a4
26 changed files with 1021 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
#shelltools.export("CFLAGS","%s -fPIE" % get.CFLAGS())
#shelltools.export("LDFLAGS", "%s -pie -Wl,-z,relro,-z,now" % get.LDFLAGS())
autotools.configure("--enable-symcryptrun \
--disable-rpath \
--enable-gpgtar \
--enable-maintainer-mode")
def build():
autotools.make("-j1")
autotools.make("-C doc html")
def check():
autotools.make("check")
def install():
autotools.rawInstall('DESTDIR=%s libexecdir="/usr/libexec"' % get.installDIR())
# Compat symlinks
pisitools.dosym("gpg2", "/usr/bin/gpg")
pisitools.dosym("gpgv2", "/usr/bin/gpgv")
pisitools.dosym("gpg2.1", "/usr/share/man/man1/gpg.1")
pisitools.dosym("gpgv2.1", "/usr/share/man/man1/gpgv.1")
# Lets make doc
pisitools.dohtml("doc/*")
pisitools.dohtml("doc/gnupg.html/*")
pisitools.dodoc("ChangeLog", "NEWS", "README", "THANKS", "TODO")
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/python
import os
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
os.system("/bin/chmod u+s,go-r /usr/bin/gpg2")
os.system("/bin/chmod u+s,go-r /usr/bin/gpg-agent")
@@ -0,0 +1,11 @@
--- gnupg-1.9.3/g10/photoid.c.display 2004-01-24 15:03:56.745060064 +0800
+++ gnupg-1.9.3/g10/photoid.c 2004-01-24 15:04:21.560287576 +0800
@@ -240,7 +240,7 @@
#elif defined(__riscos__)
return "Filer_Run %I";
#else
- return "xloadimage -fork -quiet -title 'KeyID 0x%k' stdin";
+ return "display -title 'KeyID 0x%k'";
#endif
}
#endif
@@ -0,0 +1,67 @@
We have to use fixed s2k-count number otherwise the gpg2 would
want to consult gpg-agent which is not yet installed in the mock
chroot.
Index: gnupg-2.0.17/tests/openpgp/conventional-mdc.test
===================================================================
--- gnupg-2.0.17.orig/tests/openpgp/conventional-mdc.test
+++ gnupg-2.0.17/tests/openpgp/conventional-mdc.test
@@ -21,9 +21,9 @@ for ciph in `all_cipher_algos`; do
dd if=data-80000 of=z bs=1 count=$i 2>/dev/null
fi
echo "Hier spricht HAL" | $GPG --passphrase-fd 0 \
- --force-mdc --cipher $ciph -c -o x --yes z
+ --force-mdc --cipher $ciph -c -o x --yes --s2k-count 65536 z
echo "Hier spricht HAL" | $GPG --passphrase-fd 0 \
- -o y --yes x
+ -o y --yes --s2k-count 96 x
cmp z y || error "$ciph/$i: mismatch"
done
done
Index: gnupg-2.0.17/tests/openpgp/conventional.test
===================================================================
--- gnupg-2.0.17.orig/tests/openpgp/conventional.test
+++ gnupg-2.0.17/tests/openpgp/conventional.test
@@ -12,8 +12,8 @@
#info Checking conventional encryption
for i in plain-2 data-32000 ; do
- echo "Hier spricht HAL" | $GPG --passphrase-fd 0 -c -o x --yes $i
- echo "Hier spricht HAL" | $GPG --passphrase-fd 0 -o y --yes x
+ echo "Hier spricht HAL" | $GPG --passphrase-fd 0 -c -o x --yes --s2k-count 65536 $i
+ echo "Hier spricht HAL" | $GPG --passphrase-fd 0 -o y --yes --s2k-count 65536 x
cmp $i y || error "$i: mismatch"
done
@@ -21,8 +21,8 @@ for a in `all_cipher_algos`; do
echo_n "$a "
for i in plain-1 data-80000 ; do
echo "Hier spricht HAL" | $GPG --passphrase-fd 0 \
- --cipher-algo $a -c -o x --yes $i
- echo "Hier spricht HAL" | $GPG --passphrase-fd 0 -o y --yes x
+ --cipher-algo $a -c -o x --yes --s2k-count 65536 $i
+ echo "Hier spricht HAL" | $GPG --passphrase-fd 0 -o y --yes --s2k-count 65536 x
cmp $i y || error "$i: ($a) mismatch"
done
done
Index: gnupg-2.0.17/tests/openpgp/genkey1024.test
===================================================================
--- gnupg-2.0.17.orig/tests/openpgp/genkey1024.test
+++ gnupg-2.0.17/tests/openpgp/genkey1024.test
@@ -10,7 +10,7 @@
. $srcdir/defs.inc || exit 3
-$GPG --quiet --batch --debug-quick-random --gen-key <<EOF
+$GPG --quiet --batch --debug-quick-random --s2k-count 65536 --gen-key <<EOF
Key-Type: DSA
Key-Length: 1024
Subkey-Type: ELG
@@ -24,7 +24,7 @@ Passphrase: abc
EOF
if have_pubkey_algo "RSA"; then
-$GPG --quiet --batch --debug-quick-random --gen-key <<EOF
+$GPG --quiet --batch --debug-quick-random --s2k-count 65536 --gen-key <<EOF
Key-Type: RSA
Key-Length: 1024
Key-Usage: sign,encrypt
@@ -0,0 +1,28 @@
diff -Naur old/agent/protect-tool.c new/agent/protect-tool.c
--- old/agent/protect-tool.c 2012-12-08 13:53:17.067611957 +1100
+++ new/agent/protect-tool.c 2012-12-08 13:53:28.247633012 +1100
@@ -102,6 +102,7 @@
static int opt_status_msg;
static const char *opt_p12_charset;
static const char *opt_agent_program;
+static session_env_t opt_session_env;
static char *get_passphrase (int promptno);
static void release_passphrase (char *pw);
@@ -1040,6 +1041,7 @@
opt_homedir = default_homedir ();
+ opt_session_env = session_env_new ();
pargs.argc = &argc;
pargs.argv = &argv;
@@ -1091,7 +1093,7 @@
opt.verbose,
opt_homedir,
opt_agent_program,
- NULL, NULL, NULL);
+ NULL, NULL, opt_session_env);
if (opt_prompt)
opt_prompt = percent_plus_unescape (opt_prompt, 0);
+155
View File
@@ -0,0 +1,155 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gnupg</Name>
<Homepage>http://www.gnupg.org/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv3+</License>
<IsA>app:console</IsA>
<Summary>The GNU Privacy Guard, a PGP replacement</Summary>
<Description>GnuPG allows to encrypt and sign your data and communication, features a versatile key managment system as well as access modules for all kinds of public key directories.</Description>
<Archive sha1sum="1a345804f34a2acd05c1555e40ddfa297f38438b" type="tarbz2">ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-2.1.7.tar.bz2</Archive>
<BuildDependencies>
<Dependency>openldap-client</Dependency>
<Dependency>pinentry</Dependency>
<Dependency>npth-devel</Dependency>
<Dependency>libassuan-devel</Dependency>
<Dependency>libksba-devel</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>bzip2</Dependency>
<Dependency>texinfo</Dependency>
<Dependency>gnutls-devel</Dependency>
<Dependency>readline-devel</Dependency>
<Dependency>libgcrypt-devel</Dependency>
<Dependency>libgpg-error-devel</Dependency>
<Dependency>libusb-compat-devel</Dependency>
</BuildDependencies>
<Patches>
<!--<Patch level="1">protect-tool-env.patch</Patch>-->
<!--<Patch level="1">gnupg-1.9.3-use-ImageMagick-for-photo.patch</Patch>
<Patch level="1">gnupg-2.0.14-tests-s2kcount.patch</Patch>-->
</Patches>
</Source>
<Package>
<Name>gnupg</Name>
<Replaces>
<Package>dirmngr</Package>
</Replaces>
<Conflicts>
<Package>dirmngr</Package>
</Conflicts>
<RuntimeDependencies>
<Dependency>openldap-client</Dependency>
<Dependency>npth</Dependency>
<Dependency>libassuan</Dependency>
<Dependency>pinentry</Dependency>
<Dependency>libksba</Dependency>
<Dependency>zlib</Dependency>
<Dependency>bzip2</Dependency>
<Dependency>gnutls</Dependency>
<Dependency>readline</Dependency>
<Dependency>libgcrypt</Dependency>
<Dependency>libgpg-error</Dependency>
<!-- For scdaemon -->
<Dependency>libusb-compat</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/sbin</Path>
<Path fileType="library">/usr/libexec</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="doc">/usr/share/doc/html</Path>
<Path fileType="data">/usr/share/gnupg</Path>
<Path fileType="info">/usr/share/info</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
<Provides>
<COMAR script="package.py">System.Package</COMAR>
</Provides>
</Package>
<Package>
<Name>gnupg-docs</Name>
<Summary>Documentation files for GnuPG</Summary>
<RuntimeDependencies>
<Dependency release="current">gnupg</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="doc">/usr/share/doc/gnupg/html</Path>
<Path fileType="doc">/usr/share/gnupg/help.*</Path>
<Path fileType="doc">/usr/share/doc/gnupg/faq.html</Path>
</Files>
</Package>
<History>
<Update release="9">
<Date>2015-08-21</Date>
<Version>2.1.7</Version>
<Comment>Version bump.</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="8">
<Date>2015-04-26</Date>
<Version>2.1.3</Version>
<Comment>Version bump.</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="7">
<Date>2014-08-16</Date>
<Version>2.0.26</Version>
<Comment>Version Bump.</Comment>
<Name>Vedat Demir</Name>
<Email>vedat@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-06-30</Date>
<Version>2.0.25</Version>
<Comment>Version Bump.</Comment>
<Name>Vedat Demir</Name>
<Email>vedat@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-06-04</Date>
<Version>2.0.23</Version>
<Comment>Version Bump.</Comment>
<Name>Vedat Demir</Name>
<Email>vedat@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2014-04-05</Date>
<Version>2.0.22</Version>
<Comment>Rebuild for libgcrypt and some other system.base packs.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2014-02-02</Date>
<Version>2.0.22</Version>
<Comment>new pcsc-lite and pinentry</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-10-27</Date>
<Version>2.0.22</Version>
<Comment>Version bump.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-09-29</Date>
<Version>2.0.19</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>gnupg</Name>
<Summary xml:lang="tr">GNU Gizlilik Koruması</Summary>
<Description xml:lang="tr">GnuPG verilerinizin ve iletişimlerinizin şifrelenmesi ve imzalanmmasını sağlar, her tür genel anahtar dizinleri için modullere erişiminde olduğu gibi çok yönlü anahtar yönetim sistemi avantajı vardır.</Description>
</Source>
<Package>
<Name>gnupg-docs</Name>
<Summary xml:lang="tr">GnuPG paketine ait API dokümantasyonu</Summary>
</Package>
</PISI>