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

twm: Changes to 'refs/tags/twm-1_1.0.8-1'



Tag 'twm-1_1.0.8-1' created by Julien Cristau <jcristau@debian.org> at 2014-07-13 09:15 +0000

Tagging upload of twm 1:1.0.8-1 to unstable.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAABAgAGBQJTwk4rAAoJEDEBgAUJBeQMGxAQALonf6pD3HPNkZnD0XMPfUfJ
8KiddJkYMIkFRI4ZorGdR17K38sc/h68XlxrO3YbLdymP8IfsFdFv64+/88z+PVb
79IwlkDEdKRX6mHEd4YS5Tnb1pAMP4HVg07Toin1mTZhjtpGJEtqLCa8PTL5HZBN
I5Up8MWjK+RZ/ZaJJ3X+EccqggcaECy5lR2u1NO9ezymo4HDoUhqAFArKuXUtcTZ
cHFfe8eyYj/7YXxmdtvgs6o+4Xl65ICjjex1T5p1NmuCYmWjsygxlAtvsaX63jKw
KS51+PoAK/UTLfGmIuconmdyiK01vdvBrzp09hp4nzFP0hUyhTR2U6S3EO22cig9
5KDqhr1tHT9DZnc3xEkkniuOcbY5ECZVf5s/zNrfStSG//EbKlrlTeg8r4pYtblf
x7RhoWUDR4NnxGpIxCmLQEeHB0EMgkvh7CAOZcv+leq1wiqayrxZCgYHCX+RMEIg
fUmTc99ts16fQkbFmf3tkfAkwSKLwqhs0gOlKH9sKwp5GwdQdpj75VTl9180StXM
DzjOVq5CGSDdAPo4f4cAWTgKJawr+FtF+pQmYVxRMg0jbSdskxYzZE7QwTW4rcMI
FhI/Ftxrt6FUM0JU8E5TO+wEqu0QZHIqrK+IxYRtW6HCQzx3vtY299G5rXtz9at7
YiSNTo+wn6Qp8g7tprLh
=jUwc
-----END PGP SIGNATURE-----

Changes since twm-1_1.0.6-1:
Alan Coopersmith (22):
      Fix many gcc strict-aliasing warnings
      Remove unused fallback implementation of putenv()
      Fix: menus.c:2374: warning: implicit declaration of function `putenv`
      Replace most sprintf calls with snprintf
      Whitespace fixes in src files
      twm 1.0.7
      Terminate execl() arguments with NULL instead of 0
      Constification cleanup - fix dozens of gcc warnings
      Use (void) to declare functions that take no arguments, instead of ()
      Convert remaining K&R function declarations to C89 style
      Make various helper & callback functions private to session.c
      unifdef macII - drop support for A/UX 2.0
      Remove unused global variable gotFirstSave
      Make some more previously global variables into file-scoped statics
      Assume C89 signal handlers, returning void
      Make more functions static that aren't called from other files
      Delete trailing whitespace in non *.[ch] source files
      Stop casting pointers to (char *) when freeing them
      Stop casting return values from malloc & calloc
      AddWindow: Use NULL instead of 0 for null pointer check
      Replace malloc(strlen()+1); strcpy(); pairs with strdup()
      twm 1.0.8

Colin Harrison (1):
      Syntax error in recent twm commit

Egbert Eich (1):
      Fix SEGV if CreateColormapWindow() returns NULL.

Eric S. Raymond (1):
      Don't rely on the ability to set tab stops.

Gaetan Nadon (6):
      man: replace hard coded section number with __appmansuffix__
      lex & yacc: only header file needs to be in BUILT_SOURCES
      deftwmrc.c is not required in MAINTAINERCLEANFILES
      config: rm is about removal, not generation
      man: use Autoconf provided $(SED)
      config: layout the C flags for better readability

Jeremy Huddleston (6):
      LP64: Fix formatting for DEBUG printf
      Silence uninitialized warning
      Mark Done() as _X_NORETURN
      Address a possible NULL pointer dereference
      Add sanity checking to avoid a possible NULL dereference
      Add extra sanity checking to avoid possible NULL dereferences

Julien Cristau (7):
      Fix Vcs-Browser control field (closes: #736408).  Thanks, Mateusz Łukasik!
      Merge tag 'twm-1.0.8' into debian-unstable
      Bump changelogs
      Rewrite debian/rules using dh, bump compat to 9, drop xsfbs.
      Update 01_debian_system_twmrc.diff.
      Disable silent build rules.
      Upload to unstable

---
 ChangeLog                                  |  389 ++++++++++++++++++
 Makefile.am                                |    6 
 configure.ac                               |    9 
 debian/changelog                           |   10 
 debian/compat                              |    2 
 debian/control                             |    5 
 debian/patches/01_debian_system_twmrc.diff |   12 
 debian/rules                               |   97 ----
 debian/twm.postinst                        |   18 
 debian/twm.postinst.in                     |   23 -
 debian/twm.postrm                          |   20 
 debian/twm.postrm.in                       |   25 -
 debian/twm.prerm                           |   18 
 debian/twm.prerm.in                        |   23 -
 debian/xsfbs/repack.sh                     |   32 -
 debian/xsfbs/xsfbs.mk                      |  285 -------------
 debian/xsfbs/xsfbs.sh                      |  622 -----------------------------
 man/twm.man                                |  437 ++++++++++----------
 src/Makefile.am                            |   96 ++--
 src/add_window.c                           |  197 ++++-----
 src/add_window.h                           |    2 
 src/cursor.c                               |   12 
 src/events.c                               |  277 +++++++-----
 src/events.h                               |    1 
 src/gc.c                                   |    2 
 src/gram.y                                 |   74 +--
 src/iconmgr.c                              |   50 +-
 src/iconmgr.h                              |    4 
 src/icons.c                                |   32 -
 src/icons.h                                |    7 
 src/lex.l                                  |   10 
 src/list.c                                 |   16 
 src/list.h                                 |    4 
 src/menus.c                                |  353 ++++++++--------
 src/menus.h                                |   27 -
 src/parse.c                                |   81 ++-
 src/parse.h                                |    6 
 src/resize.c                               |   64 +-
 src/resize.h                               |    1 
 src/screen.h                               |    2 
 src/session.c                              |  254 ++++-------
 src/session.h                              |   20 
 src/twm.c                                  |   63 +-
 src/twm.h                                  |   36 -
 src/util.c                                 |  171 ++-----
 src/util.h                                 |   26 -
 src/version.c                              |    2 
 src/version.h                              |    2 
 48 files changed, 1590 insertions(+), 2335 deletions(-)
---


Reply to: