Re: [Rpm-maint] [rpm-software-management/rpm] Add zstd compressed payload support to RPM (from @n3npq in #256) (#295)

2017-08-02 Thread Igor Gnatenko
Closed #295. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/rpm-software-management/rpm/pull/295#event-1189271132___ Rpm-maint mailing list Rpm-maint@lists.rpm.o

Re: [Rpm-maint] [rpm-software-management/rpm] Add zstd compressed payload support to RPM (from @n3npq in #256) (#295)

2017-08-02 Thread Igor Gnatenko
Superseded by #297 -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/rpm-software-management/rpm/pull/295#issuecomment-319632547___ Rpm-maint mailing list Rpm-maint

Re: [Rpm-maint] [rpm-software-management/rpm] Add zstd compressed payload support to RPM (from @n3npq in #256) (#295)

2017-07-31 Thread ニール・ゴンパ
Conan-Kudo commented on this pull request. > @@ -203,6 +204,20 @@ AC_CHECK_HEADERS([lzma.h],[ AC_SUBST(WITH_LZMA_LIB) #= +# Check for zstd library. + +dnl # Facebook Zstd +RPM_CHECK_LIB( `RPM_CHECK_LIB` makes it work when pkgconfig isn't available (macOS, etc.). It also mak

Re: [Rpm-maint] [rpm-software-management/rpm] Add zstd compressed payload support to RPM (from @n3npq in #256) (#295)

2017-07-31 Thread ニール・ゴンパ
Conan-Kudo commented on this pull request. > @@ -348,6 +348,12 @@ static char *getIOFlags(Package pkg) compr = "lzma"; (void) rpmlibNeedsFeature(pkg, "PayloadIsLzma", "4.4.6-1"); #endif +#if HAVE_ZSTD_H + } else if (rstreq(s+1, "zstdio")) { + compr = "zst

Re: [Rpm-maint] [rpm-software-management/rpm] Add zstd compressed payload support to RPM (from @n3npq in #256) (#295)

2017-07-31 Thread Jeff Johnson
n3npq commented on this pull request. > @@ -1278,6 +1278,11 @@ static const struct rpmlibProvides_s rpmlibProvides[] > = { { "rpmlib(RichDependencies)","4.12.0-1", ( RPMSENSE_EQUAL), N_("support for rich dependencies.") }, +#if HAVE_ZSTD_H +{ "rpmlib(Payl

Re: [Rpm-maint] [rpm-software-management/rpm] Add zstd compressed payload support to RPM (from @n3npq in #256) (#295)

2017-07-31 Thread Jeff Johnson
n3npq commented on this pull request. > @@ -203,6 +204,20 @@ AC_CHECK_HEADERS([lzma.h],[ AC_SUBST(WITH_LZMA_LIB) #= +# Check for zstd library. + +dnl # Facebook Zstd +RPM_CHECK_LIB( RPM_CHECK_LIB uses pkgconfig (when available). I'm not sure what you wish. -- You are recei

Re: [Rpm-maint] [rpm-software-management/rpm] Add zstd compressed payload support to RPM (from @n3npq in #256) (#295)

2017-07-31 Thread Jeff Johnson
n3npq commented on this pull request. > @@ -348,6 +348,12 @@ static char *getIOFlags(Package pkg) compr = "lzma"; (void) rpmlibNeedsFeature(pkg, "PayloadIsLzma", "4.4.6-1"); #endif +#if HAVE_ZSTD_H + } else if (rstreq(s+1, "zstdio")) { + compr = "zstd"; +

Re: [Rpm-maint] [rpm-software-management/rpm] Add zstd compressed payload support to RPM (from @n3npq in #256) (#295)

2017-07-31 Thread Igor Gnatenko
ignatenkobrain commented on this pull request. > @@ -348,6 +348,12 @@ static char *getIOFlags(Package pkg) compr = "lzma"; (void) rpmlibNeedsFeature(pkg, "PayloadIsLzma", "4.4.6-1"); #endif +#if HAVE_ZSTD_H + } else if (rstreq(s+1, "zstdio")) { + compr =

Re: [Rpm-maint] [rpm-software-management/rpm] Add zstd compressed payload support to RPM (from @n3npq in #256) (#295)

2017-07-31 Thread Jeff Johnson
n3npq commented on this pull request. > @@ -348,6 +348,12 @@ static char *getIOFlags(Package pkg) compr = "lzma"; (void) rpmlibNeedsFeature(pkg, "PayloadIsLzma", "4.4.6-1"); #endif +#if HAVE_ZSTD_H + } else if (rstreq(s+1, "zstdio")) { + compr = "zstd"; +

Re: [Rpm-maint] [rpm-software-management/rpm] Add zstd compressed payload support to RPM (from @n3npq in #256) (#295)

2017-07-31 Thread Igor Gnatenko
ignatenkobrain commented on this pull request. > @@ -1278,6 +1278,11 @@ static const struct rpmlibProvides_s rpmlibProvides[] > = { { "rpmlib(RichDependencies)","4.12.0-1", ( RPMSENSE_EQUAL), N_("support for rich dependencies.") }, +#if HAVE_ZSTD_H +{ "rp

Re: [Rpm-maint] [rpm-software-management/rpm] Add zstd compressed payload support to RPM (from @n3npq in #256) (#295)

2017-07-31 Thread Igor Gnatenko
ignatenkobrain commented on this pull request. > @@ -203,6 +204,20 @@ AC_CHECK_HEADERS([lzma.h],[ AC_SUBST(WITH_LZMA_LIB) #= +# Check for zstd library. + +dnl # Facebook Zstd +RPM_CHECK_LIB( instead of this hug macro I would probably prefer to stick with pkg-config.. -- Yo

Re: [Rpm-maint] [rpm-software-management/rpm] Add zstd compressed payload support to RPM (from @n3npq in #256) (#295)

2017-07-31 Thread Igor Gnatenko
ignatenkobrain commented on this pull request. > @@ -348,6 +348,12 @@ static char *getIOFlags(Package pkg) compr = "lzma"; (void) rpmlibNeedsFeature(pkg, "PayloadIsLzma", "4.4.6-1"); #endif +#if HAVE_ZSTD_H + } else if (rstreq(s+1, "zstdio")) { + compr =