Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (34f2edf22e72a95192d44aea4f3b727f6abe91f7)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (34f2edf22e72a95192d44aea4f3b727f6abe91f7)
  • Date: Sat, 11 Jun 2016 21:43:53 +0000

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

ChangeLog | 3 +
libs/libcacard/DEPENDS | 2 +
libs/libcacard/DETAILS | 18 ++++++++++
libs/libcacard/HISTORY | 2 +
utils/qemu/CONFIGURE | 5 +-
utils/qemu/DEPENDS | 84
+++++++++++++++++++++++++++++++++++++------------
utils/qemu/DETAILS | 2 -
utils/qemu/HISTORY | 4 ++
8 files changed, 97 insertions(+), 23 deletions(-)

New commits:
commit 34f2edf22e72a95192d44aea4f3b727f6abe91f7
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

qemu 2.6.0

commit fc2b7307e415bb1a93306856c34607abe0c21bbe
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

libcacard: new spell, CAC (Common Access Card) library

diff --git a/ChangeLog b/ChangeLog
index 80e74ae..3c5331e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2016-06-11 Ismael Luceno <ismael AT sourcemage.org>
+ * libs/libcacard: new spell, CAC (Common Access Card) library
+
2016-06-08 Treeve Jelbert <treeve AT sourcemage.org>
* kde5-apps/kaffeine: added, new qt5/kf5 only

diff --git a/libs/libcacard/DEPENDS b/libs/libcacard/DEPENDS
new file mode 100755
index 0000000..dc92036
--- /dev/null
+++ b/libs/libcacard/DEPENDS
@@ -0,0 +1,2 @@
+depends glib2 &&
+depends nss
diff --git a/libs/libcacard/DETAILS b/libs/libcacard/DETAILS
new file mode 100755
index 0000000..5fc5762
--- /dev/null
+++ b/libs/libcacard/DETAILS
@@ -0,0 +1,18 @@
+ SPELL=libcacard
+ VERSION=2.5.2
+ SOURCE="$SPELL-$VERSION.tar.xz"
+ SOURCE_URL[0]=http://www.spice-space.org/download/$SPELL/$SOURCE
+
SOURCE_HASH=sha512:5700c57bde1640cbc287ba3ec63ea441b71bb6dd411eb15fd6041518fb7b4c2b57377cc965a5fdff9cbeb5fa86f526bb8a1f0651ffb65cd7ff5e5360713d83de
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ WEB_SITE="http://www.spice-space.org/page/Libcacard";
+ LICENSE[0]="LGPLv2.1+"
+ ENTERED=20160611
+ KEYWORDS=""
+ SHORT="CAC (Common Access Card) library"
+cat << EOF
+This library provides emulation of smart cards to a virtual card reader
+running in a guest virtual machine.
+
+It implements DoD CAC standard with separate pki containers (compatible
+coolkey), using certificates read from NSS.
+EOF
diff --git a/libs/libcacard/HISTORY b/libs/libcacard/HISTORY
new file mode 100644
index 0000000..3c4e71c
--- /dev/null
+++ b/libs/libcacard/HISTORY
@@ -0,0 +1,2 @@
+2016-06-11 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS, DETAILS: spell created
diff --git a/utils/qemu/CONFIGURE b/utils/qemu/CONFIGURE
index 3a0dc8f..5f3d3ee 100755
--- a/utils/qemu/CONFIGURE
+++ b/utils/qemu/CONFIGURE
@@ -37,5 +37,6 @@ config_query_option QEMU_KVM "Enable KVM acceleration
support" y \
config_query_option QEMU_TPM "Enable Trusted Platform Module (TPM)?" n \
'--enable-tpm' '' &&

-config_query_option QEMU_VNC "Enable VNC support?" y \
- '--enable-vnc' '--disable-vnc --disable-vnc-sasl
--disable-vnc-jpeg --disable-vnc-png --disable-vnc-ws'
+config_query_option QEMU_VNC "Enable VNC support?" y \
+ '--enable-vnc' \
+ '--disable-vnc --disable-vnc-sasl --disable-vnc-jpeg
--disable-vnc-png'
diff --git a/utils/qemu/DEPENDS b/utils/qemu/DEPENDS
index dbd1715..8d928f0 100755
--- a/utils/qemu/DEPENDS
+++ b/utils/qemu/DEPENDS
@@ -16,15 +16,39 @@ if list_find "esd" $QEMU_AUDIO; then
depends esound
fi &&

-optional_depends vte \
- '--enable-gtk' \
- '--disable-gtk' \
- 'for GTK UI' &&
+optional_depends gtk+3 \
+ '--enable-gtk --with-gtkabi=3.0' \
+ '' \
+ 'for GTK+ 3.x UI'
+if is_depends_enabled $SPELL gtk+3; then
+ optional_depends vte3 '--enable-vte' '--disable-vte' \
+ 'VTE support for the GTK+ UI'
+else
+ optional_depends gtk+2 \
+ '--enable-gtk --with-gtkabi=2.0' \
+ '--disable-gtk' \
+ 'for GTK+ 2.x UI' &&
+ if is_depends_enabled $SPELL gtk+2; then
+ optional_depends vte '--enable-vte' '--disable-vte' \
+ 'VTE support for the GTK+ UI'
+ fi
+fi
+
+optional_depends sdl2 \
+ '--enable-sdl --with-sdlabi=2.0' \
+ '' \
+ 'for SDL 2.x UI (recommended)' &&
+if ! is_depends_enabled $SPELL sdl2; then
+ optional_depends sdl \
+ "--enable-sdl --with-sdlabi=1.2" \
+ "--disable-sdl" \
+ "for SDL 1.2 UI (recommended)"
+fi &&

-optional_depends sdl \
- "--enable-sdl" \
- "--disable-sdl" \
- "for graphical output (recommended)" &&
+optional_depends ncurses \
+ "--enable-curses" \
+ "--disable-curses" \
+ "for curses UI" &&

optional_depends curl \
"--enable-curl" \
@@ -36,11 +60,6 @@ optional_depends BLUEZ \
"--disable-bluez" \
"for Bluetooth support" &&

-optional_depends ncurses \
- "--enable-curses" \
- "--disable-curses" \
- "for curses output" &&
-
optional_depends attr \
'--enable-attr' \
'--disable-attr' \
@@ -71,15 +90,40 @@ optional_depends libusb \
'--disable-libusb' \
'for USB pass-through support' &&

-optional_depends nss \
- '--enable-smartcard-nss' \
- '--disable-smartcard-nss' \
- 'for SmartCard NSS support' &&
+optional_depends libcacard \
+ '--enable-smartcard' \
+ '--disable-smartcard' \
+ 'for SmartCard support' &&
+
+optional_depends lzo \
+ '--enable-lzo' \
+ '--disable-lzo' \
+ 'for lzo compression support' &&
+
+optional_depends snappy \
+ '--enable-lzo' \
+ '--disable-lzo' \
+ 'for snappy compression support' &&
+
+optional_depends bzip2 \
+ '--enable-bzip2' \
+ '--disable-bzip2' \
+ 'for reading bzip2-compressed dmg images' &&

if [[ "x$QEMU_VNC" == "x--enable-vnc" ]]; then
- suggest_depends gnutls \
- "--enable-vnc-tls" \
- "--disable-vnc-tls" \
+ suggest_depends gnutls \
+ "--enable-gnutls" \
+ "--disable-gnutls" \
+ "to enable TLS encryption for VNC server" &&
+
+ suggest_depends nettle \
+ "--enable-nettle" \
+ "--disable-nettle" \
+ "to enable TLS encryption for VNC server" &&
+
+ suggest_depends libgcrypt \
+ "--enable-gcrypt" \
+ "--disable-gcrypt" \
"to enable TLS encryption for VNC server" &&

suggest_depends LIBSASL \
diff --git a/utils/qemu/DETAILS b/utils/qemu/DETAILS
index d364c62..58eff3e 100755
--- a/utils/qemu/DETAILS
+++ b/utils/qemu/DETAILS
@@ -1,5 +1,5 @@
SPELL=qemu
- VERSION=2.3.0
+ VERSION=2.6.0
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE2=$SOURCE.sig
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-${VERSION%-*}"
diff --git a/utils/qemu/HISTORY b/utils/qemu/HISTORY
index f3c3afb..27d32f7 100644
--- a/utils/qemu/HISTORY
+++ b/utils/qemu/HISTORY
@@ -1,3 +1,7 @@
+2016-06-11 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 2.6.0
+ * DEPENDS, CONFIGURE: Updated dependencies and flags
+
2015-05-07 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: updated spell to 2.3.0




  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (34f2edf22e72a95192d44aea4f3b727f6abe91f7), Ismael Luceno, 06/11/2016

Archive powered by MHonArc 2.6.24.

Top of Page