pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/security/gcr



Module Name:    pkgsrc
Committed By:   mef
Date:           Sat Nov  7 07:17:08 UTC 2020

Modified Files:
        pkgsrc/security/gcr: Makefile PLIST distinfo

Log Message:
(security/gcr) Updated 3.28.0 to 3.38.0

(pkgsrc changes)
 - Add ./autogen.sh for pre-configure:
 - Add following two lines to get the similar PLIST
   CONFIGURE_ARGS+=       --enable-gtk-doc
   .include "../../textproc/gtk-doc/buildlink3.mk"
 - Add following lines to avoid  "msgfmt: unknown option -- desktop" (thanks joerg@)
   .if ${OPSYS} == "NetBSD"
   TOOLS_PLATFORM.msgfmt=
   .endif

(upstream changes)
gcr 3.38.0:
- No changes from 3.37.91

gcr 3.37.91:
- meson: missing dependency on generated oids header [GNOME/gcr#48, GNOME/gcr!57]
- Correct display of key usage extensions [GNOME/gcr#47, GNOME/gcr!56]
- meson: Correctly set internal vapi dependencies [GNOME/gcr!55]
- Cleanup GType boilerplate [GNOME/gcr!53]
- gck: Fixed test failures [GNOME/gcr#42, GNOME/gcr!51, GNOME/gcr!52]
- Updated translations

gcr 3.36.0:
- gcr: Update gtk-doc get_der_data() vfunc [GNOME/gcr!48]
- Updated translations

gcr 3.35.91:
- Mark deprecated functions with G_DEPRECATED [GNOME/gcr#36, GNOME/gcr!47]
- egg-oid: Add comments for translators for new abbrevations [GNOME/gcr#40, GNOME/gcr!45]
- Updated translations

gcr 3.35.90:
- Add support for "NEW CERTIFICATE REQUEST" header [GNOME/gcr!44]
- Add support for GOST certificates [GNOME/gcr!43]
- Rework handling of ASN.1 standard types [GNOME/gcr!42]
- Fix a few regressions in the Meson build [GNOME/gcr!46, 7ba0e00d]
- Add support for g_autoptr [GNOME/gcr!36, GNOME/gcr#16]
- Fixed some compiler warnings [GNOME/gcr!38]
- Updated translations

gcr 3.35.1:
- gcr-certificate: Add (virtual) annotation [GNOME/gcr!35, GNOME/gcr#37]
- Always use G_PARAM_STATIC_STRINGS [GNOME/gcr!31]
- Support Meson build system [GNOME/gcr!11,32,33,34]
- Avoid potential 64-bit pointer aliasing alignment issues [GNOME/gcr!27, GNOME/gcr#34]
- Update README to mention correct environment variables [GNOME/gcr!25]
- build: Use sed for .desktop variables substitution [GNOME/gcr!24]
- Updated translations

gcr 3.34.0:
- gcr-prompt-dialog: Allow the use of mnemonics in the choice label [GNOME/gcr!22]
- Use python3 shebang in ui/icons/render-icons.py [GNOME/gcr!21]
- configure: Use PKG_PROG_PKG_CONFIG instead of reinventing it [GNOME/gcr!20]
- Replace tap-gtester with one that relies on GLib 2.38+ TAP output [GNOME/gcr!19]
- Remove SKS network from keyserver defaults [GNOME/gcr!18]
- Updated translations

gcr 3.33.4:
- Move from intltool to gettext [GNOME/gcr#18]
- Fix parameter type for signal handler causing stack smashing on ppc64le [GNOME/gcr!16]
- cleanup: Don't use deprecated g_type_class_add_private() anymore [GNOME/gcr!12]
- Fix GIR annotations [GNOME/gcr!10]
- Fix hashtable ordering assumptions [GNOME/gcr!9]
- build: Fix gcr-trust symbols not appearing in GIR, and hence also VAPI [GNOME/gcr!7]
- Update gcr_pkcs11_get_trust_{store|lookup}_slot URI checks [GNOME/gcr!5]
- build: Update tap scripts for Python 3 compat [GNOME/gcr!2]
- Updated translations


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/security/gcr/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/gcr/PLIST \
    pkgsrc/security/gcr/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/security/gcr/Makefile
diff -u pkgsrc/security/gcr/Makefile:1.11 pkgsrc/security/gcr/Makefile:1.12
--- pkgsrc/security/gcr/Makefile:1.11   Tue Oct  6 19:51:18 2020
+++ pkgsrc/security/gcr/Makefile        Sat Nov  7 07:17:07 2020
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.11 2020/10/06 19:51:18 wiz Exp $
+# $NetBSD: Makefile,v 1.12 2020/11/07 07:17:07 mef Exp $
 
-DISTNAME=              gcr-3.28.0
-PKGREVISION=           11
+DISTNAME=              gcr-3.38.0
 CATEGORIES=            security
-MASTER_SITES=          ${MASTER_SITE_GNOME:=sources/gcr/3.28/}
+MASTER_SITES=          ${MASTER_SITE_GNOME:=sources/gcr/3.38/}
 EXTRACT_SUFX=          .tar.xz
 
 MAINTAINER=            pkgsrc-users%NetBSD.org@localhost
@@ -16,9 +15,17 @@ BUILD_DEPENDS+=              gettext-m4-[0-9]*:../..
 
 GNU_CONFIGURE=         yes
 USE_LIBTOOL=           yes
-USE_TOOLS+=            gmake intltool msgfmt perl pkg-config
+USE_TOOLS+=            gmake intltool msgfmt perl pkg-config aclocal autoconf automake
 
 CONFIGURE_ARGS+=       --enable-vala
+CONFIGURE_ARGS+=       --enable-gtk-doc
+
+.include "../../mk/bsd.prefs.mk"
+
+# To avoid msgfmt: unknown option -- desktop
+.if ${OPSYS} == "NetBSD"
+TOOLS_PLATFORM.msgfmt=
+.endif
 
 PKGCONFIG_OVERRIDE+=   gck-1.pc.in
 PKGCONFIG_OVERRIDE+=   gcr-base-3.pc.in
@@ -27,6 +34,10 @@ PKGCONFIG_OVERRIDE+= gcr-3.pc.in
 
 TEST_TARGET=           check
 
+pre-configure:
+       cd ${WRKSRC}; \
+       ./autogen.sh
+
 BUILDLINK_API_DEPENDS.glib2+=  glib2>=2.38
 .include "../../devel/glib2/buildlink3.mk"
 .include "../../devel/gobject-introspection/buildlink3.mk"
@@ -36,5 +47,6 @@ BUILDLINK_API_DEPENDS.glib2+= glib2>=2.3
 .include "../../security/p11-kit/buildlink3.mk"
 .include "../../sysutils/desktop-file-utils/desktopdb.mk"
 .include "../../textproc/gnome-doc-utils/buildlink3.mk"
+.include "../../textproc/gtk-doc/buildlink3.mk"
 .include "../../x11/gtk3/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/security/gcr/PLIST
diff -u pkgsrc/security/gcr/PLIST:1.1 pkgsrc/security/gcr/PLIST:1.2
--- pkgsrc/security/gcr/PLIST:1.1       Tue Dec 11 12:36:28 2018
+++ pkgsrc/security/gcr/PLIST   Sat Nov  7 07:17:07 2020
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2018/12/11 12:36:28 bsiegert Exp $
+@comment $NetBSD: PLIST,v 1.2 2020/11/07 07:17:07 mef Exp $
 bin/gcr-viewer
 include/gck-1/gck/gck-deprecated.h
 include/gck-1/gck/gck-enum-types.h
@@ -211,6 +211,7 @@ share/locale/bn_IN/LC_MESSAGES/gcr.mo
 share/locale/bs/LC_MESSAGES/gcr.mo
 share/locale/ca/LC_MESSAGES/gcr.mo
 share/locale/ca@valencia/LC_MESSAGES/gcr.mo
+share/locale/ckb/LC_MESSAGES/gcr.mo
 share/locale/cs/LC_MESSAGES/gcr.mo
 share/locale/cy/LC_MESSAGES/gcr.mo
 share/locale/da/LC_MESSAGES/gcr.mo
Index: pkgsrc/security/gcr/distinfo
diff -u pkgsrc/security/gcr/distinfo:1.1 pkgsrc/security/gcr/distinfo:1.2
--- pkgsrc/security/gcr/distinfo:1.1    Tue Dec 11 12:36:28 2018
+++ pkgsrc/security/gcr/distinfo        Sat Nov  7 07:17:07 2020
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2018/12/11 12:36:28 bsiegert Exp $
+$NetBSD: distinfo,v 1.2 2020/11/07 07:17:07 mef Exp $
 
-SHA1 (gcr-3.28.0.tar.xz) = 65cddbc1e12266233aca4d1857a93b42ef52f620
-RMD160 (gcr-3.28.0.tar.xz) = 8180637d78b7ca893aff5bca6d6050fb7e14d4be
-SHA512 (gcr-3.28.0.tar.xz) = 8d5e650cb369fa889b0adfdc1dc1cb5f8b184881256e6c0a2ed456074a54ceb61d64c0929c093bec66c0d5a15c1718f6e3736a1b25b6d7076081df93b49419e0
-Size (gcr-3.28.0.tar.xz) = 1329044 bytes
+SHA1 (gcr-3.38.0.tar.xz) = ec77b51962010555445c84981f30a32f6426323e
+RMD160 (gcr-3.38.0.tar.xz) = bfe464c4e7135a1ae753c9c2c93f6b53635f4416
+SHA512 (gcr-3.38.0.tar.xz) = 24c35ac514a67a1dee6a5738e829b55921a490b060ffa597421cea0abac3ddc62695370d2c7b3504c0adfd55b1ade878ad3ca5e6cb869428b4a19f4a11563bc6
+Size (gcr-3.38.0.tar.xz) = 1029784 bytes



Home | Main Index | Thread Index | Old Index