appstream: 0.10.6 -> 0.11.8

This commit is contained in:
Peter Hoeg 2018-02-22 10:58:22 +08:00
parent 8b1cf100cd
commit 57ce02b574

View File

@ -1,37 +1,55 @@
{ stdenv, fetchFromGitHub, cmake, pkgconfig, gettext, intltool { stdenv, fetchpatch, fetchFromGitHub, meson, ninja, pkgconfig, gettext
, xmlto, docbook_xsl, docbook_xml_dtd_45 , xmlto, docbook_xsl, docbook_xml_dtd_45, libxslt
, glib, xapian, libxml2, libyaml, gobjectIntrospection , libstemmer, glib, xapian, libxml2, libyaml, gobjectIntrospection
, pcre, itstool , pcre, itstool
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "appstream-${version}"; name = "appstream-${version}";
version = "0.10.6"; version = "0.11.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ximion"; owner = "ximion";
repo = "appstream"; repo = "appstream";
rev = "APPSTREAM_0_10_6"; rev = "APPSTREAM_${stdenv.lib.replaceStrings ["."] ["_"] version}";
sha256 = "1fg7zxx2qhkyj7fmcpwbf80b72d16kyi8dadi111kf00sgzfbiyy"; sha256 = "07vzz57g1p5byj2jfg17y5n3il0g07d9wkiynzwra71mcxar1p08";
}; };
patches = [
# drop this in version 0.11.9 and above
(fetchpatch {
name = "define-location-and-soname.patch";
url = "https://github.com/ximion/appstream/commit/3e58f9c9.patch";
sha256 = "1ffgbdfg80yq5vahjrvdd4f8xsp32ksm9vyasfmc7hzhx294s78w";
})
];
nativeBuildInputs = [ nativeBuildInputs = [
cmake pkgconfig gettext intltool meson ninja pkgconfig gettext
xmlto docbook_xsl docbook_xml_dtd_45 libxslt xmlto docbook_xsl docbook_xml_dtd_45
gobjectIntrospection itstool gobjectIntrospection itstool
]; ];
buildInputs = [ pcre glib xapian libxml2 libyaml ]; buildInputs = [ libstemmer pcre glib xapian libxml2 libyaml ];
cmakeFlags = '' prePatch = ''
-DSTEMMING=off substituteInPlace meson.build \
--replace /usr/include ${libstemmer}/include
substituteInPlace data/meson.build \
--replace /etc $out/etc
''; '';
mesonFlags = [
"-Dapidocs=false"
"-Ddocs=false"
"-Dgir=false"
];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Software metadata handling library"; description = "Software metadata handling library";
homepage = https://www.freedesktop.org/wiki/Distributions/AppStream/; homepage = https://www.freedesktop.org/wiki/Distributions/AppStream/;
longDescription = longDescription = ''
''
AppStream is a cross-distro effort for building Software-Center applications AppStream is a cross-distro effort for building Software-Center applications
and enhancing metadata provided by software components. It provides and enhancing metadata provided by software components. It provides
specifications for meta-information which is shipped by upstream projects and specifications for meta-information which is shipped by upstream projects and