pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/libdockapp
Module Name: pkgsrc
Committed By: nia
Date: Tue Nov 24 11:13:25 UTC 2020
Modified Files:
pkgsrc/devel/libdockapp: Makefile PLIST buildlink3.mk distinfo
Removed Files:
pkgsrc/devel/libdockapp/patches: patch-aa
Log Message:
libdockapp: Update to 0.7.3
2020-05-03 Jeremy Sowden <jeremy%azazel.net@localhost>
* configure.ac: bump version to 0.7.3.
2020-05-03 Jeremy Sowden <jeremy%azazel.net@localhost>
* src/Makefile.am: bump library version to 3.0.1.
2020-05-03 Jeremy Sowden <jeremy%azazel.net@localhost>
* src/wmgeneral.c, src/wmgeneral.h: fix multiple definitions of
global variable. The `display` variable is declared in
wmgeneral.h with no explicit linkage. This may result in there
being definitions of it in the library and the object-files of
applications which link against it, which causes link failures
when building these applications with GCC 10, since this uses
-fno-common by default. Add `extern` to the header declaration
and a separate declaration with no linkage in wmgeneral.c where it
is initialized.
2020-05-03 Jeremy Sowden <jeremy%azazel.net@localhost>
* Makefile.am, autogen: add autogen.
2019-06-13 Jeremy Sowden <jeremy%azazel.net@localhost>
* src/daargs.c: removed assertion that short-form options have
length 2. The mixed-option parsing code includes an assertion
that short-form options have a length of two. However, there is
no other validation of this requirement and some dock-apps do not
comply with it, which means that if one exec's them with an
unrecognized option or a mix of short options, the assertion fails
and the app aborts. For example:
$ /usr/bin/wmail --help | grep '\<display\>'
-display <string> display to use
$ /usr/bin/wmail --blah
wmail: daargs.c:126: contains: Assertion `strlen(needle) == 2' failed.
Aborted
Since there is no explicit statement of this requirement, let's
replace the assertion with a conditional.
2019-01-04 Anil N' via Window Maker Development <wmaker-dev%googlegroups.com@localhost>
* src/damain.c: Fix for missing windowname and one more.
- "Untitled window" appears in xfce4-wmdock-plugin's enumeration
of dockapps using libdockapp.
- Reference to string buffer that might not live long enough.
2018-06-27 Doug Torrance <dtorrance%piedmont.edu@localhost>
* Makefile.am, NEWS: Update old windowmaker.org/dockapps urls to
dockapps.net
2018-05-14 Doug Torrance <dtorrance%piedmont.edu@localhost>
* NEWS, configure.ac: Update mailing list links to new Google
Groups.
2017-08-31 Doug Torrance <dtorrance%piedmont.edu@localhost>
* src/dapixmap.c, src/dockapp.h: Add DAMakeShapeFromData() and
DAMakeShapeFromFile() functions. libdockapp supports shaped
dockapps with the DASetShape() function, but this function
requires as input a bitmap. Previously, there was no support for
creating such a bitmap from XBM data without using Xlib directly.
We add two functions, DAMakeShapeFromData(), which is a wrapper
around XCreateBitmapFromData and allows developers to #include XBM
data, and DAMakeShapeFromFile(), which is a wrapper around
XReadBitmapfile and lets developers specify the path to an XBM
file.
2017-08-30 Doug Torrance <dtorrance%piedmont.edu@localhost>
* src/daargs.c, src/daargs.h, src/damain.c: Make
DAParseArguments() optional. Some dockapps may want to handle
command line options themselves, so we make this function
optional. Previously, if this function was skipped, then a
segfault would result when trying to access the _daContext global
while first creating the dockapp window. Now we check if
_daContext has been initialized first, and if not, we initialize
it.
2017-08-12 Doug Torrance <dtorrance%piedmont.edu@localhost>
* Makefile.am: Use Requires.private in pkg-config file to avoid
overlinking.
2017-04-27 Doug Torrance <dtorrance%piedmont.edu@localhost>
* src/damain.c: Don't withdraw dockapps in windowed mode. In
Window Maker, windows with application class "DockApp" are
automatically withdrawn. We don't want this in windowed mode. We
use the application name instead, with the usual convention of
capitalizing the initial letter.
2017-04-26 Doug Torrance <dtorrance%piedmont.edu@localhost>
* src/wmgeneral.c: Do not include pathnames in Window Name and
Class Properties Patch by Corin-EU from GitHub [1]. In
libdockapps file wmgeneral.c, wname is set from argv[0] and is
then used to set the window name and class resource. Often
applications are called with their full path which then means that
the window name has a path in it, thereby requiring an unwieldy
path specific string for "Name" in WMState if the applet is to be
captured in the WM dock. The simple solution is that wname should
be the basename of argv[0] to ensure that the window name for the
applet is the simple and obvious one. Thus the inclusion of
header file libgen.h is required. Just say "no" to path slashes
"/" in window name/class resources ....
[1] https://github.com/d-torrance/dockapps/issues/5
2015-10-20 Doug Torrance <dtorrance%piedmont.edu@localhost>
* configure.ac: Bump to version 0.7.2.
2015-10-20 Doug Torrance <dtorrance%piedmont.edu@localhost>
* Makefile.am: Clean generated file dockapp.pc.
Based on the Debian patch [1].
[1] https://sources.debian.net/src/1:0.7.1-1/debian/patches/
clean_dockapp.pc.patch/
2015-10-20 Doug Torrance <dtorrance%piedmont.edu@localhost>
* configure.ac, src/Makefile.am:
Remove AC_PATH_XTRA macro from configure.ac
We already check for libraries with the PKG_CHECK_MODULES macros.
This also allows the Debian package to drop the Build-Depend on
libice-dev. Based on the Debian patch [1].
[1] https://sources.debian.net/src/1:0.7.1-1/debian/patches/
remove_AC_PATH_XTRA.diff/
2015-10-20 Doug Torrance <dtorrance%piedmont.edu@localhost>
* Recompress fonts without timestamp.
This fixes the package-contains-timestamped-gzip warning given by
Lintian for the Debian package. (This warning is really
unnecessary, as its purpose it to check for reproducible builds and
the fonts are not compressed at build time, but I see no harm in
removing these timestamps.)
2015-10-17 Doug Torrance <dtorrance%piedmont.edu@localhost>
* configure.ac: Bump to version 0.7.1.
2015-10-17 Doug Torrance <dtorrance%piedmont.edu@localhost>
* Makefile.am: Update update-changelog target in Makefile.
Only grab libdockapp commits.
2015-10-17 Doug Torrance <dtorrance%piedmont.edu@localhost>
* examples/basic/basic.c, examples/rectangles/rectangles.c: Update
header location in examples.
2015-10-09 Shining <wmaker-dev%linuxcondom.net@localhost>
* README: Simplify instructions to generate a ./configure script.
Based on suggestions by Alexey Frolov and BALATON Zoltan.
2015-10-05 Shining <wmaker-dev%linuxcondom.net@localhost>
* README: Info about generating 'configure' script in README.
In the README it is said to run ./configure but there's no such
script in the tarball. I wrote instructions to generate a
./configure with libtool and autotools.
2015-08-15 Rodolfo García Peñas (kix) <kix%kix.es@localhost>
* Include libwmgeneral in libdockapp.
This patch includes the libwmgeneral library in the libdockapp library.
The new library is now version 3 (previous was version 2) and it
includes the new include folder in $libdir/libdockapp. The wmgeneral
files were moved from the previous folder (libwmgeneral) and the folder
is now removed.
Signed-off-by: Rodolfo García Peñas (kix) <kix%kix.es@localhost>
2014-11-28 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* NEWS, configure.ac: Release version 0.6.4.
2014-11-28 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* Makefile.am, NEWS, configure.ac: Update contact information.
2014-11-28 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* Add update-changelog target to Makefile to update ChangeLog.
2014-11-25 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* ChangeLog, NEWS, examples/basic/basic.c, src/dockapp.h:
Merge ChangeLog into NEWS (they were largely the same).
2014-11-25 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* examples/basic/basic.c: Add #include
<time.h> to basic example.
Otherwise, we get the following compiler warning
basic.c: Infunction ‘main’: basic.c:111:2: warning: implicit
declaration of function ‘time’ [-Wimplicit-function-declaration]
srandom(time(NULL));
^
2014-11-25 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* README, examples/Makefile.am, examples/basic/Imakefile,
examples/basic/Makefile, examples/rectangles/Imakefile,
examples/rectangles/Makefile: Replace example
Imakefiles with Makefiles. imake is deprecated.
2014-11-25 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* examples/basic/basic.c, examples/rectangles/rectangles.c,
src/daargs.c, src/daargs.h, src/dacallback.c, src/dacolor.c,
src/daevent.c, src/damain.c, src/dapixmap.c, src/darect.c,
src/dashaped.c, src/dautil.c, src/dockapp.h: Use consistent code
formatting.
Used uncrustify to minimize warnings and errors from checkpatch.pl
in the Window Maker source tree.
2014-11-25 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* examples/basic/Imakefile, examples/basic/basic.c,
examples/rectangles/Imakefile, examples/rectangles/rectangles.c,
src/Makefile.am, src/daargs.c, src/daargs.h, src/dacallback.c,
src/dacolor.c, src/daevent.c, src/damain.c, src/dapixmap.c,
src/darect.c, src/dashaped.c, src/dautil.c, src/dautil.h,
src/dockapp.h: Remove CVS cruft.
2014-11-25 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* examples/basic/Imakefile, examples/basic/README,
examples/basic/basic.c, examples/rectangles/Imakefile,
examples/rectangles/rectangles.c, fonts/Makefile.am, src/dacallback.c,
src/dacolor.c, src/daevent.c, src/damain.c, src/dapixmap.c,
src/dashaped.c, src/dockapp.h: Remove trailing whitespace.
2014-11-24 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* INSTALL, Makefile.in, aclocal.m4, compile, config.guess,
config.sub, configure, dockapp.pc, examples/Makefile.in,
fonts/Makefile.in, install-sh, ltmain.sh, missing, src/Makefile.in:
Remove autotools-generated files.
2014-11-24 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* Add version 0.6.3 to repository.
Obtained from:
http://sourceforge.net/projects/files/
libdockapp-0.6.3.tar.gz/download
** Changes above this point from git log in dockapps git repository. **
2014-06-06 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* ChangeLog, NEWS: updated Changelog and NEWS files with new version
2014-06-06 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* Makefile.am: add xext to dockapp.pc
2014-06-06 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* configure.ac, src/Makefile.am: add xpm to linked libraries
2014-06-06 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* .gitignore, autogen.sh, do_verify.sh: add more autotools-generated
files to .gitignore
2014-06-06 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* configure.ac, src/Makefile.am: use pkg-config for linked libraries
2014-05-02 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* Makefile.am: added BUGS to distribution tarball
2014-05-02 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* .gitignore: Update .gitignore (add configure.no-verify).
2014-05-01 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* .gitignore, Makefile.am: Add pkg-config dockapp.pc file.
2014-05-01 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* configure.ac: Modernize configure.ac.
2014-05-01 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* .gitignore, Makefile.in, aclocal.m4, compile, config.guess,
config.sub, configure, examples/Makefile.in, fonts/Makefile.in,
ltmain.sh, missing, src/Makefile.in: Remove autotools-generated
files, update .gitignore.
2014-05-01 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* fonts/Makefile.am: Actually added fonts to distribution tarball.
Despite the commit message of the previous commit, this was not
done. Now it is.
2014-05-01 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* configure.ac, fonts/Makefile.am, fonts/fonts.alias,
fonts/fonts.dir: Various changes to `make install' of fonts.
* Use font-util macros.
* Include fonts in distribution tarball.
* Removed fonts.dir (built by `make install') and fonts.alias (empty
file).
2014-04-30 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* examples/Makefile.am: rewrite examples Makefile.am to ensure they
are included in the tarball
2014-04-30 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* INSTALL, Makefile.in, aclocal.m4, compile, config.guess,
config.sub, configure, configure.ac, configure.in,
examples/Makefile.in, fonts/Makefile.in, install-sh, ltmain.sh,
missing, src/Makefile.in: rename configure.in -> configure.ac
2014-04-30 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* .gitignore: added .gitignore
2014-04-30 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* CVS/Entries, CVS/Repository, CVS/Root, autom4te.cache/output.0,
autom4te.cache/output.1, autom4te.cache/requests,
autom4te.cache/traces.0, autom4te.cache/traces.1,
examples/CVS/Entries, examples/CVS/Repository, examples/CVS/Root,
examples/basic/CVS/Entries, examples/basic/CVS/Repository,
examples/basic/CVS/Root, examples/rectangles/CVS/Entries,
examples/rectangles/CVS/Repository, examples/rectangles/CVS/Root,
examples/shapes/CVS/Entries, examples/shapes/CVS/Repository,
examples/shapes/CVS/Root, fonts/CVS/Entries, fonts/CVS/Repository,
fonts/CVS/Root, src/CVS/Entries, src/CVS/Repository, src/CVS/Root:
Removed CVS directories
2014-04-24 Doug Torrance <dtorrance%monmouthcollege.edu@localhost>
* Initial commit
** Changes above this point from git log in sourceforge git repository. **
To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 pkgsrc/devel/libdockapp/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/libdockapp/PLIST
cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/libdockapp/buildlink3.mk
cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/libdockapp/distinfo
cvs rdiff -u -r1.4 -r0 pkgsrc/devel/libdockapp/patches/patch-aa
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/libdockapp/Makefile
diff -u pkgsrc/devel/libdockapp/Makefile:1.26 pkgsrc/devel/libdockapp/Makefile:1.27
--- pkgsrc/devel/libdockapp/Makefile:1.26 Wed Aug 16 20:45:35 2017
+++ pkgsrc/devel/libdockapp/Makefile Tue Nov 24 11:13:25 2020
@@ -1,22 +1,22 @@
-# $NetBSD: Makefile,v 1.26 2017/08/16 20:45:35 wiz Exp $
-#
+# $NetBSD: Makefile,v 1.27 2020/11/24 11:13:25 nia Exp $
-DISTNAME= libdockapp-0.6.2
+DISTNAME= libdockapp-0.7.3
CATEGORIES= devel wm
-#MASTER_SITES= http://solfertje.student.utwente.nl/~dalroi/libdockapp/files/
-EXTRACT_SUFX= .tar.bz2
+MASTER_SITES= https://www.dockapps.net/download/
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
-#HOMEPAGE= http://solfertje.student.utwente.nl/~dalroi/libdockapp/
+HOMEPAGE= https://www.dockapps.net/libdockapp
COMMENT= Simple library to create dockapps for WindowMaker
+LICENSE= mit
GNU_CONFIGURE= YES
USE_LIBTOOL= YES
-
-INSTALLATION_DIRS= share/doc/libdockapp
+USE_TOOLS+= pkg-config
post-install:
- ${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${PREFIX}/share/doc/libdockapp
+ ${RM} -f ${DESTDIR}${PREFIX}/share/fonts/X11/misc/fonts.dir
+
+FONTS_DIRS.x11= share/fonts/X11/misc
BUILDLINK_DEPMETHOD.libXt?= build
Index: pkgsrc/devel/libdockapp/PLIST
diff -u pkgsrc/devel/libdockapp/PLIST:1.5 pkgsrc/devel/libdockapp/PLIST:1.6
--- pkgsrc/devel/libdockapp/PLIST:1.5 Mon Jan 1 22:29:24 2018
+++ pkgsrc/devel/libdockapp/PLIST Tue Nov 24 11:13:25 2020
@@ -1,10 +1,16 @@
-@comment $NetBSD: PLIST,v 1.5 2018/01/01 22:29:24 rillig Exp $
-include/dockapp.h
+@comment $NetBSD: PLIST,v 1.6 2020/11/24 11:13:25 nia Exp $
+include/libdockapp/dockapp.h
+include/libdockapp/list.h
+include/libdockapp/misc.h
+include/libdockapp/wmgeneral.h
lib/libdockapp.la
+lib/pkgconfig/dockapp.pc
share/doc/libdockapp/README
-share/examples/libdockapp/basic/Imakefile
-share/examples/libdockapp/basic/README
-share/examples/libdockapp/basic/ball_red.xpm
-share/examples/libdockapp/basic/basic.c
-share/examples/libdockapp/rectangles/Imakefile
-share/examples/libdockapp/rectangles/rectangles.c
+share/doc/libdockapp/basic/Makefile
+share/doc/libdockapp/basic/README
+share/doc/libdockapp/basic/ball_red.xpm
+share/doc/libdockapp/basic/basic.c
+share/doc/libdockapp/rectangles/Makefile
+share/doc/libdockapp/rectangles/rectangles.c
+share/fonts/X11/misc/luxel-ascii-06x09.pcf.gz
+share/fonts/X11/misc/seg7-ascii-05x07.pcf.gz
Index: pkgsrc/devel/libdockapp/buildlink3.mk
diff -u pkgsrc/devel/libdockapp/buildlink3.mk:1.11 pkgsrc/devel/libdockapp/buildlink3.mk:1.12
--- pkgsrc/devel/libdockapp/buildlink3.mk:1.11 Sun Jan 7 13:04:05 2018
+++ pkgsrc/devel/libdockapp/buildlink3.mk Tue Nov 24 11:13:25 2020
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.11 2018/01/07 13:04:05 rillig Exp $
+# $NetBSD: buildlink3.mk,v 1.12 2020/11/24 11:13:25 nia Exp $
BUILDLINK_TREE+= libdockapp
@@ -8,6 +8,7 @@ LIBDOCKAPP_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.libdockapp+= libdockapp>=0.4.0
BUILDLINK_ABI_DEPENDS.libdockapp+= libdockapp>=0.4.0nb2
BUILDLINK_PKGSRCDIR.libdockapp?= ../../devel/libdockapp
+BUILDLINK_INCDIRS.libdockapp+= include/libdockapp
.include "../../x11/libXpm/buildlink3.mk"
.endif # LIBDOCKAPP_BUILDLINK3_MK
Index: pkgsrc/devel/libdockapp/distinfo
diff -u pkgsrc/devel/libdockapp/distinfo:1.7 pkgsrc/devel/libdockapp/distinfo:1.8
--- pkgsrc/devel/libdockapp/distinfo:1.7 Tue Nov 3 03:27:39 2015
+++ pkgsrc/devel/libdockapp/distinfo Tue Nov 24 11:13:25 2020
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.7 2015/11/03 03:27:39 agc Exp $
+$NetBSD: distinfo,v 1.8 2020/11/24 11:13:25 nia Exp $
-SHA1 (libdockapp-0.6.2.tar.bz2) = ca1ffdf7c5f3f02a48529bd4e816d32b900ea95a
-RMD160 (libdockapp-0.6.2.tar.bz2) = 5043c88254e79223e6d574af5352b2fcd70e7f3c
-SHA512 (libdockapp-0.6.2.tar.bz2) = 415cb905951640732e7ed1bbf9c38c201218f8a6cad995147729452cd608a30bd8086d3c8fddf5e29ddffe43465ebff25a69a4f04169684b8642ba7fa2dec1d1
-Size (libdockapp-0.6.2.tar.bz2) = 540677 bytes
-SHA1 (patch-aa) = f2985ceb620739b17b10d477d119b495e5d61cc6
+SHA1 (libdockapp-0.7.3.tar.gz) = 05eff84cb5592b3743389a8c36db72921d9b42a3
+RMD160 (libdockapp-0.7.3.tar.gz) = 2fff5109c7262d910f0abe2aa2d3f63923272922
+SHA512 (libdockapp-0.7.3.tar.gz) = 38d35599675fc8a8e9d14b0f059a0d1585106ed870210712f53f315d0442e98ad1df40a74b9f00e3f22656cb859d03fc93793b6042b9432394e572b89c58a815
+Size (libdockapp-0.7.3.tar.gz) = 387507 bytes
Home |
Main Index |
Thread Index |
Old Index