diff options
author | Mart Raudsepp <leio@gentoo.org> | 2007-10-12 08:25:33 +0000 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2007-10-12 08:25:33 +0000 |
commit | 9951449b686585f22c6579443ce81c66ae1be183 (patch) | |
tree | 2e7769a3b9337369b58016e1491811dfb856b33a /dev-cpp/libgnomecanvasmm/files | |
parent | stable x86, security bug 195571 (diff) | |
download | historical-9951449b686585f22c6579443ce81c66ae1be183.tar.gz historical-9951449b686585f22c6579443ce81c66ae1be183.tar.bz2 historical-9951449b686585f22c6579443ce81c66ae1be183.zip |
Remove old versions and SLOT for bug 159995. Also quote ${D} in the remaining version for bonus points
Package-Manager: portage-2.1.3.12
Diffstat (limited to 'dev-cpp/libgnomecanvasmm/files')
4 files changed, 0 insertions, 128 deletions
diff --git a/dev-cpp/libgnomecanvasmm/files/2.0.1-gcc3.4-after-cvs.patch b/dev-cpp/libgnomecanvasmm/files/2.0.1-gcc3.4-after-cvs.patch deleted file mode 100644 index 0bd9f26983cd..000000000000 --- a/dev-cpp/libgnomecanvasmm/files/2.0.1-gcc3.4-after-cvs.patch +++ /dev/null @@ -1,80 +0,0 @@ -Index: ChangeLog -=================================================================== -RCS file: /cvs/gnome/gnomemm/libgnomecanvasmm/ChangeLog,v -retrieving revision 1.55.2.2 -diff -u -p -r1.55.2.2 ChangeLog ---- ChangeLog 2 May 2004 10:06:31 -0000 1.55.2.2 -+++ ChangeLog 11 Jul 2004 18:05:21 -0000 -@@ -1,3 +1,7 @@ -+2004-07-11 Ed Catmur <ed@catmur.co.uk> -+ -+ * examples/canvas_events/canvas_events.cc: use named enum, for gcc 3.4 -+ - 2004-05-01 Takashi Takekawa <takekawa@users.sourceforge.jp> - - * libgnomecanvas/libgnomecanvas.[h,cc] (GNOMEMM_PROPERTY, -Index: examples/canvas_events/canvas_events.cc -=================================================================== -RCS file: /cvs/gnome/gnomemm/libgnomecanvasmm/examples/canvas_events/canvas_events.cc,v -retrieving revision 1.1 -diff -u -p -r1.1 canvas_events.cc ---- examples/canvas_events/canvas_events.cc 9 Dec 2002 09:41:19 -0000 1.1 -+++ examples/canvas_events/canvas_events.cc 11 Jul 2004 18:05:21 -0000 -@@ -14,7 +14,7 @@ - - guint32 etime = 0; - guint status = 0; --enum -+enum someEnum - { - CE = 0, - CEA = 1, -@@ -42,12 +42,12 @@ public: - virtual ~CanvasExample(); - - protected: -- void on_event_explorer_notify(GdkEvent* e, guint caller); -- void on_button_event_stub_notify(GdkEventButton* e, guint caller); -- bool on_button_event_stub(GdkEventButton* e, guint caller); -+ void on_event_explorer_notify(GdkEvent* e, someEnum caller); -+ void on_button_event_stub_notify(GdkEventButton* e, someEnum caller); -+ bool on_button_event_stub(GdkEventButton* e, someEnum caller); - - private: -- bool on_event_explorer(GdkEvent* e, guint caller); -+ bool on_event_explorer(GdkEvent* e, someEnum caller); - Gnome::Canvas::Group m_canvasgroup; - }; - -@@ -89,7 +89,7 @@ CanvasExample::~CanvasExample() - } - - bool --CanvasExample::on_event_explorer(GdkEvent* e, guint caller) -+CanvasExample::on_event_explorer(GdkEvent* e, someEnum caller) - { - GdkEventButton* b; - // Ignore all but button-press events: -@@ -133,19 +133,19 @@ CanvasExample::on_event_explorer(GdkEven - } - - void --CanvasExample::on_event_explorer_notify(GdkEvent* e, guint caller) -+CanvasExample::on_event_explorer_notify(GdkEvent* e, someEnum caller) - { - std::cerr << "on_event_explorer_notify" << std::endl; - } - - bool --CanvasExample::on_button_event_stub(GdkEventButton* b, guint caller) -+CanvasExample::on_button_event_stub(GdkEventButton* b, someEnum caller) - { - return on_event_explorer((GdkEvent *) b, caller); - } - - void --CanvasExample::on_button_event_stub_notify(GdkEventButton* b, guint caller) -+CanvasExample::on_button_event_stub_notify(GdkEventButton* b, someEnum caller) - { - std::cerr << "on_button_event_stub_notify" << std::endl; - } diff --git a/dev-cpp/libgnomecanvasmm/files/2.0.1-gcc3.4-to-cvs.patch b/dev-cpp/libgnomecanvasmm/files/2.0.1-gcc3.4-to-cvs.patch deleted file mode 100644 index 01ed843eb709..000000000000 --- a/dev-cpp/libgnomecanvasmm/files/2.0.1-gcc3.4-to-cvs.patch +++ /dev/null @@ -1,42 +0,0 @@ ---- libgnomecanvas/src/line.hg 2004/07/09 08:38:56 1.1 -+++ libgnomecanvas/src/line.hg 2004/07/09 08:40:31 -@@ -115,7 +115,7 @@ namespace Glib - { - - template <> --class Glib::Value<Gnome::Canvas::Points> : public Glib::Value_Boxed<Gnome::Canvas::Points> -+class Value<Gnome::Canvas::Points> : public Value_Boxed<Gnome::Canvas::Points> - { - public: - static GType value_type() G_GNUC_CONST; ---- libgnomecanvas/libgnomecanvasmm/line.h 2004/07/09 08:42:09 1.1 -+++ libgnomecanvas/libgnomecanvasmm/line.h 2004/07/09 08:42:34 -@@ -286,7 +286,7 @@ namespace Glib - { - - template <> --class Glib::Value<Gnome::Canvas::Points> : public Glib::Value_Boxed<Gnome::Canvas::Points> -+class Value<Gnome::Canvas::Points> : public Value_Boxed<Gnome::Canvas::Points> - { - public: - static GType value_type() G_GNUC_CONST; ---- ChangeLog 11 Jul 2004 18:10:49 -0000 -+++ ChangeLog 2 May 2004 10:06:31 -0000 1.55.2.2 -@@ -1,3 +1,17 @@ -+2004-05-01 Takashi Takekawa <takekawa@users.sourceforge.jp> -+ -+ * libgnomecanvas/libgnomecanvas.[h,cc] (GNOMEMM_PROPERTY, -+ GNOMEMM_PROPERTY_IMPL): fixed doubled '>' when T is a template class, -+ for the Intel compiler. -+ * libgnomecanvas/src/line.hg: deleted unnecessary namespace -+ qualification, for the Intel compiler. -+ -+2003-12-21 Eric Bourque <ericb@computer.org> -+ * libgnomecanvasmm.spec.in: fixed dependency to gtkmm2 instead of gtkmm -+ -+2003-09-25 Eric Bourque <ericb@computer.org> -+ * libgnomecanvasmm.spec.in: updated for libgnomecanvasmm-2.0 -+ - 2.0.1: - - 2003-08-22 Murray Cumming <murrayc@usa.net> diff --git a/dev-cpp/libgnomecanvasmm/files/digest-libgnomecanvasmm-2.0.1 b/dev-cpp/libgnomecanvasmm/files/digest-libgnomecanvasmm-2.0.1 deleted file mode 100644 index 00d3374386df..000000000000 --- a/dev-cpp/libgnomecanvasmm/files/digest-libgnomecanvasmm-2.0.1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 bf05e2d85c0e10aa29dc6d451a52b3bf libgnomecanvasmm-2.0.1.tar.gz 421895 -RMD160 408623b22c68f1c2e26001c4b67ba0948acb2265 libgnomecanvasmm-2.0.1.tar.gz 421895 -SHA256 001a7d1b5978131bdce4b532b52df89064dac7d31fcb9d9903c1960bf0d2798d libgnomecanvasmm-2.0.1.tar.gz 421895 diff --git a/dev-cpp/libgnomecanvasmm/files/digest-libgnomecanvasmm-2.12.0 b/dev-cpp/libgnomecanvasmm/files/digest-libgnomecanvasmm-2.12.0 deleted file mode 100644 index 0956ae3ef739..000000000000 --- a/dev-cpp/libgnomecanvasmm/files/digest-libgnomecanvasmm-2.12.0 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 b05bba03433745043ef0c781020d4738 libgnomecanvasmm-2.12.0.tar.bz2 353153 -RMD160 4ab7c4c4f6bc24c5decbe6858453c6c5fdd58d71 libgnomecanvasmm-2.12.0.tar.bz2 353153 -SHA256 830622e3d0f8cbeeed3c1aeb8ec0d399505edc319f97233f3c4a6088acea3c80 libgnomecanvasmm-2.12.0.tar.bz2 353153 |