Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
valac: don't append -dirty to version
Don't append -dirty to the valac version number if the Buildroot Git
tree has uncommited changes.
The patched script is meant for the valac developers, but it also
activates if you build valac in a subdirectory of a Git tree (e.g.
as is commonly done in Buildroot).
The effect is that valac gets built as being version x.y.z-dirty, which
breaks programs (such as Midori) that explicitly check for valac-x.y.z.
Signed-off-by: Simon Dawson <spdawson@gmail.com>
diff -Nur a/build-aux/git-version-gen b/build-aux/git-version-gen
--- a/build-aux/git-version-gen 2010-08-15 12:49:03.000000000 +0100
+++ b/build-aux/git-version-gen 2012-05-14 10:17:19.977204570 +0100
@@ -135,7 +135,7 @@
*) # Append the suffix only if there isn't one already.
case $v in
*-dirty) ;;
- *) v="$v-dirty" ;;
+ #*) v="$v-dirty" ;;
esac ;;
esac

View File

@@ -0,0 +1,2 @@
# From https://download.gnome.org/sources/vala/0.30/vala-0.30.1.sha256sum
sha256 23add78e5c6a5e6df019d4a885c9c79814c9e0b957519ec8a4f4d826c4e5df2c vala-0.30.1.tar.xz

View File

@@ -0,0 +1,19 @@
################################################################################
#
# vala
#
################################################################################
VALA_VERSION_MAJOR = 0.30
VALA_VERSION = $(VALA_VERSION_MAJOR).1
VALA_SITE = http://download.gnome.org/sources/vala/$(VALA_VERSION_MAJOR)
VALA_SOURCE = vala-$(VALA_VERSION).tar.xz
VALA_LICENSE = LGPLv2.1+
VALA_LICENSE_FILES = COPYING
HOST_VALA_DEPENDENCIES = host-bison host-flex host-libglib2
# Yes, the autoconf script understands ':' as "xsltproc is not
# available".
HOST_VALA_CONF_ENV = ac_cv_path_XSLTPROC=:
$(eval $(host-autotools-package))