Fri Jan 3 05:03:51 2014 UTC ()
Update to 0.90.8.1

Changelog:
0.90.8.1:

* fixed bug that prevented uninstallation of rep-gtk

0.90.8:

* fixed building on ARM
* synced spec file [Kim B. Heino]

0.90.7:

* re-arranged tree (all new widget-definitons in widgets/<widget>)
* minimum GTK+ bumped to 2.24
* minimum GDK bumped to 2.23
* New API wrapped:

GtkAccelGroup
  - gtk_accel_group_get_is_locked
  - gtk_accel_group_get_modifier_mask
  - GtkAccelKey
  - GtkAccelGroupEntry

GtkAccelMap:
  - gtk_accel_map_add_entry
  - gtk_accel_map_lookup_entry
  - gtk_accel_map_change_entry
  - gtk_accel_map_load
  - gtk_accel_map_save
  - gtk_accel_map_foreach
  - gtk_accel_map_load_fd
  - gtk_accel_map_save_fd
  - gtk_accel_map_lock_path
  - gtk_accel_map_unlock_path
  - gtk_accel_map_add_filter
  - gtk_accel_map_foreach_unfiltered

GtkExpander:
  - gtk_expander_set_label_fill
  - gtk_expander_get_label_fill

GtkComboBox:
  - gtk_combo_box_new_with_entry
  - gtk_combo_box_new_with_model_and_entry
  - gtk_combo_box_popup
  - gtk_combo_box_popdown
  - gtk_combo_box_set_button_sensitivity
  - gtk_combo_box_get_button_sensitivity
  - gtk_combo_box_get_has_entry
  - gtk_combo_box_get_entry_text_column
  - gtk_combo_box_set_entry_text_column
  - gtk_combo_box_set_row_separator_func
  - gtk_combo_box_get_row_separator_func

GtkComboBoxText:
  - added completely

GtkScale:
  - gtk_scale_add_mark
  - gtk_scale_clear_marks

GtkRC:
  - gtk_rc_parse_string

GdkPixbuf:
  - gdk_pixbuf_new_from_file_at_size
  - gdk_pixbuf_new_from_file_at_scale

GtkImage:
  - gtk_image_clear

* Fixed wrapped API:

GtkFileChooser:
  - gtk_file_chooser_set_filename
  - gtk_file_chooser_select_filename

* Deprecated API no longer wrapped:

GtkComboBox
  - gtk_combo_box_get_active_text
  - gtk_combo_box_remove_text
  - gtk_combo_box_append_text
  - gtk_combo_box_insert_text
  - gtk_combo_box_prepend_text

GtkComboBoxEntry:
  - removed completely

GtkButton
  - gtk_button_pressed
  - gtk_button_released
  - gtk_button_enter
  - gtk_button_leave
  - gtk_file_chooser_button_new_with_backend

0.90.6:

* bump minimum librep to 0.92.0
* updated for changes in installation-paths in librep 0.92.0
* merged Debian scripts from Ian Zimmermann
* improved Makefile clean rules
* combined gtk and gtk-types modules [Kim B. Heino]

0,90,5:

* fixed a bug in configure, which could create an incomplete rep-gtk.pc
* updated the debian packaging scripts (mostly) to the new spec


(ryoon)
diff -r1.32 -r1.33 pkgsrc/x11/rep-gtk2/Makefile
diff -r1.4 -r1.5 pkgsrc/x11/rep-gtk2/PLIST
diff -r1.2 -r1.3 pkgsrc/x11/rep-gtk2/buildlink3.mk
diff -r1.5 -r1.6 pkgsrc/x11/rep-gtk2/distinfo

cvs diff -r1.32 -r1.33 pkgsrc/x11/rep-gtk2/Makefile (expand / switch to unified diff)

--- pkgsrc/x11/rep-gtk2/Makefile 2013/10/10 14:42:39 1.32
+++ pkgsrc/x11/rep-gtk2/Makefile 2014/01/03 05:03:51 1.33
@@ -1,23 +1,22 @@ @@ -1,23 +1,22 @@
1# $NetBSD: Makefile,v 1.32 2013/10/10 14:42:39 ryoon Exp $ 1# $NetBSD: Makefile,v 1.33 2014/01/03 05:03:51 ryoon Exp $
2 2
3DISTNAME= rep-gtk-0.90.4 3DISTNAME= rep-gtk-0.90.8.1
4PKGNAME= ${DISTNAME:S/gtk/gtk2/} 4PKGNAME= ${DISTNAME:S/gtk/gtk2/}
5PKGREVISION= 14 
6CATEGORIES= x11 lang 5CATEGORIES= x11 lang
7MASTER_SITES= http://download.tuxfamily.org/sawfish/rep-gtk/ 6MASTER_SITES= http://download.tuxfamily.org/librep/rep-gtk/
8EXTRACT_SUFX= .tar.bz2 7EXTRACT_SUFX= .tar.bz2
9 8
10MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= http://rep-gtk.sourceforge.net/ 10HOMEPAGE= http://sawfish.wikia.com/
12COMMENT= GTK2 librep bindings (used by wm/sawfish) 11COMMENT= GTK2 librep bindings (used by wm/sawfish)
13 12
14CONFLICTS= rep-gtk-[0-9]* 13CONFLICTS= rep-gtk-[0-9]*
15 14
16USE_LIBTOOL= yes 15USE_LIBTOOL= yes
17GNU_CONFIGURE= yes 16GNU_CONFIGURE= yes
18USE_TOOLS+= gmake pkg-config 17USE_TOOLS+= gmake pkg-config
19PKGCONFIG_OVERRIDE= rep-gtk.pc.in 18PKGCONFIG_OVERRIDE= rep-gtk.pc.in
20 19
21.include "../../lang/librep/buildlink3.mk" 20.include "../../lang/librep/buildlink3.mk"
22.include "../../x11/gtk2/buildlink3.mk" 21.include "../../x11/gtk2/buildlink3.mk"
23.include "../../mk/bsd.pkg.mk" 22.include "../../mk/bsd.pkg.mk"

cvs diff -r1.4 -r1.5 pkgsrc/x11/rep-gtk2/PLIST (expand / switch to unified diff)

--- pkgsrc/x11/rep-gtk2/PLIST 2010/08/21 16:56:51 1.4
+++ pkgsrc/x11/rep-gtk2/PLIST 2014/01/03 05:03:51 1.5
@@ -1,5 +1,4 @@ @@ -1,5 +1,4 @@
1@comment $NetBSD: PLIST,v 1.4 2010/08/21 16:56:51 asau Exp $ 1@comment $NetBSD: PLIST,v 1.5 2014/01/03 05:03:51 ryoon Exp $
2include/rep-gtk/rep-gtk.h 2include/rep-gtk/rep-gtk.h
3lib/pkgconfig/rep-gtk.pc 3lib/pkgconfig/rep-gtk.pc
4lib/rep/${MACHINE_GNU_PLATFORM}/gui/gtk-2/gtk.la 4lib/rep/gui/gtk-2/gtk.la
5lib/rep/${MACHINE_GNU_PLATFORM}/gui/gtk-2/types.la 

cvs diff -r1.2 -r1.3 pkgsrc/x11/rep-gtk2/buildlink3.mk (expand / switch to unified diff)

--- pkgsrc/x11/rep-gtk2/buildlink3.mk 2011/01/23 23:56:53 1.2
+++ pkgsrc/x11/rep-gtk2/buildlink3.mk 2014/01/03 05:03:51 1.3
@@ -1,13 +1,13 @@ @@ -1,13 +1,13 @@
1# $NetBSD: buildlink3.mk,v 1.2 2011/01/23 23:56:53 tnn Exp $ 1# $NetBSD: buildlink3.mk,v 1.3 2014/01/03 05:03:51 ryoon Exp $
2 2
3BUILDLINK_TREE+= rep-gtk2 3BUILDLINK_TREE+= rep-gtk2
4 4
5.if !defined(REP_GTK2_BUILDLINK3_MK) 5.if !defined(REP_GTK2_BUILDLINK3_MK)
6REP_GTK2_BUILDLINK3_MK:= 6REP_GTK2_BUILDLINK3_MK:=
7 7
8BUILDLINK_API_DEPENDS.rep-gtk2+= rep-gtk2>=0.90.4 8BUILDLINK_API_DEPENDS.rep-gtk2+= rep-gtk2>=0.90.8.1
9BUILDLINK_PKGSRCDIR.rep-gtk2?= ../../x11/rep-gtk2 9BUILDLINK_PKGSRCDIR.rep-gtk2?= ../../x11/rep-gtk2
10 10
11.endif # REP_GTK2_BUILDLINK3_MK 11.endif # REP_GTK2_BUILDLINK3_MK
12 12
13BUILDLINK_TREE+= -rep-gtk2 13BUILDLINK_TREE+= -rep-gtk2

cvs diff -r1.5 -r1.6 pkgsrc/x11/rep-gtk2/distinfo (expand / switch to unified diff)

--- pkgsrc/x11/rep-gtk2/distinfo 2011/01/23 23:56:53 1.5
+++ pkgsrc/x11/rep-gtk2/distinfo 2014/01/03 05:03:51 1.6
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.5 2011/01/23 23:56:53 tnn Exp $ 1$NetBSD: distinfo,v 1.6 2014/01/03 05:03:51 ryoon Exp $
2 2
3SHA1 (rep-gtk-0.90.4.tar.bz2) = f70546969a597b2190ecef595978c8b09e6d258c 3SHA1 (rep-gtk-0.90.8.1.tar.bz2) = ee4077d8075ee2f7b2759a07e37cdb5294117c36
4RMD160 (rep-gtk-0.90.4.tar.bz2) = bacf4e25332684cab7e73c26248a6d47555d24d1 4RMD160 (rep-gtk-0.90.8.1.tar.bz2) = ea93d7e42a344b6cc94798800c5457318575b790
5Size (rep-gtk-0.90.4.tar.bz2) = 269679 bytes 5Size (rep-gtk-0.90.8.1.tar.bz2) = 291355 bytes