public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-solitaire/files/
@ 2016-08-07 15:29 Joerg Bornkessel
  0 siblings, 0 replies; only message in thread
From: Joerg Bornkessel @ 2016-08-07 15:29 UTC (permalink / raw
  To: gentoo-commits

commit:     e137d6ac95912ba34a9678f16b3577e5d30a2c90
Author:     Joerg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
AuthorDate: Sun Aug  7 15:28:36 2016 +0000
Commit:     Joerg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
CommitDate: Sun Aug  7 15:29:29 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e137d6ac

media-plugins/vdr-solitaire: removed unused patches/diffs

Package-Manager: portage-2.3.0

 .../files/vdr-solitaire-0.0.2-vdr-1.5.5.diff       |  12 --
 .../vdr-solitaire/files/vdr-solitaire-0.0.2.patch  | 129 ---------------------
 2 files changed, 141 deletions(-)

diff --git a/media-plugins/vdr-solitaire/files/vdr-solitaire-0.0.2-vdr-1.5.5.diff b/media-plugins/vdr-solitaire/files/vdr-solitaire-0.0.2-vdr-1.5.5.diff
deleted file mode 100644
index 431e6d3..0000000
--- a/media-plugins/vdr-solitaire/files/vdr-solitaire-0.0.2-vdr-1.5.5.diff
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -ru solitaire-0.0.2-orig/tools/list.h solitaire-0.0.2/tools/list.h
---- solitaire-0.0.2-orig/tools/list.h	2007-06-26 22:43:49.559179067 +0200
-+++ solitaire-0.0.2/tools/list.h	2007-06-26 22:44:10.561050626 +0200
-@@ -523,7 +523,7 @@
- 	return neu;
- }
- 
--typedef class cTBList<cTBString> cStringList;
-+// typedef class cTBList<cTBString> cStringList;
- typedef class cTBList<void*> cPtrList;
- 
- // Special Overrides for String lists

diff --git a/media-plugins/vdr-solitaire/files/vdr-solitaire-0.0.2.patch b/media-plugins/vdr-solitaire/files/vdr-solitaire-0.0.2.patch
deleted file mode 100644
index 83db65b..0000000
--- a/media-plugins/vdr-solitaire/files/vdr-solitaire-0.0.2.patch
+++ /dev/null
@@ -1,129 +0,0 @@
-diff -ruN solitaire-0.0.2.org/tools/list.h solitaire-0.0.2/tools/list.h
---- solitaire-0.0.2.org/tools/list.h	2004-08-24 00:49:04.000000000 +0200
-+++ solitaire-0.0.2/tools/list.h	2006-02-03 11:35:36.000000000 +0100
-@@ -90,22 +90,22 @@
- 	T &SetNextCurrent  ();
- 	T &SetPrevCurrent  ();
- 
--	friend cTBList<T> &operator+= <> (cTBList<T> &list1, const cTBList<T> &list2);
--	friend cTBList<T> &operator+= <> (cTBList<T> &list, const T &element);
-+//	friend cTBList<T> &operator+= <> (cTBList<T> &list1, const cTBList<T> &list2);
-+//	friend cTBList<T> &operator+= <> (cTBList<T> &list, const T &element);
- 
--	friend cTBList<T> operator+ <> (const cTBList<T> &list1, const cTBList<T> &list2);
--	friend cTBList<T> operator+ <> (const T &element, const cTBList<T> &list);
--	friend cTBList<T> operator+ <> (const cTBList<T> &list, const T &element);
-+//	friend cTBList<T> operator+ <> (const cTBList<T> &list1, const cTBList<T> &list2);
-+//	friend cTBList<T> operator+ <> (const T &element, const cTBList<T> &list);
-+//	friend cTBList<T> operator+ <> (const cTBList<T> &list, const T &element);
- 
- 	/*friend cSource &operator<< <> (cSource &dest, const cTBList<T> &list);
--	friend cSource &operator>> <> (cSource &dest, cTBList<T> &list);*/
-+//	friend cSource &operator>> <> (cSource &dest, cTBList<T> &list);*/
- };
- 
- // Template Implementation (inline funcs)
- 
- template<class T>
- inline int cTBList<T>::Find (const T & i) {
--	cTBList<T>::cItem *item = m_First;
-+	typename cTBList<T>::cItem *item = m_First;
- 	int index = 0;
- 
- 	while (item && (item->Data != i)) {
-@@ -203,7 +203,7 @@
- 
- template<class T>
- typename cTBList<T>::cItem *cTBList<T>::NewItem (cTBList<T>::cItem *pBefore, cTBList<T>::cItem *pAfter) const {
--	cTBList<T>::cItem *item = new cTBList<T>::cItem;
-+	typename cTBList<T>::cItem *item = new typename cTBList<T>::cItem;
- 
- 	item->Next = pAfter;
- 	item->Prev = pBefore;
-@@ -235,7 +235,7 @@
- 	if ((int)idx == m_CurPos)
- 		return m_Current;
- 
--	cTBList<T>::cItem *item;
-+	typename cTBList<T>::cItem *item;
- 	int dist = idx - m_CurPos;
- 	bool direct;
- 
-@@ -271,7 +271,7 @@
- 
- template<class T>
- T &cTBList<T>::Prepend () {
--	cTBList<T>::cItem *item = NewItem(NULL, m_First);
-+	typename cTBList<T>::cItem *item = NewItem(NULL, m_First);
- 
- 	m_First = m_Current = item;
- 	if (!m_Last)
-@@ -285,7 +285,7 @@
- 
- template<class T>
- T &cTBList<T>::Append () {
--	cTBList<T>::cItem *item = NewItem(m_Last, NULL);
-+	typename cTBList<T>::cItem *item = NewItem(m_Last, NULL);
- 
- 	m_Last = m_Current = item;
- 	if (!m_First)
-@@ -317,13 +317,13 @@
- 		return true;
- 	}
- 
--	cTBList<T>::cItem *nextItem = Locate(idx);
-+	typename cTBList<T>::cItem *nextItem = Locate(idx);
- 	if (!nextItem)
- 		return false;
- 
--	cTBList<T>::cItem *prevItem = nextItem->Prev;
-+	typename cTBList<T>::cItem *prevItem = nextItem->Prev;
- 
--	cTBList<T>::cItem *item = NewItem(prevItem, nextItem);
-+	typename cTBList<T>::cItem *item = NewItem(prevItem, nextItem);
- 	item->Data = i;
- 
- 	m_CurPos = idx;
-@@ -338,7 +338,7 @@
- 	if (!m_Current)
- 		return NULL;
- 
--	cTBList<T>::cItem *item = m_Current;
-+	typename cTBList<T>::cItem *item = m_Current;
- 	if (item == m_First) {
- 		if (m_First = item->Next)
- 			m_First->Prev = NULL;
-@@ -370,7 +370,7 @@
- 		if (Find(i) == -1)
- 			return false;
- 
--	cTBList<T>::cItem *item = Unlink();
-+	typename cTBList<T>::cItem *item = Unlink();
- 	if (!item)
- 		return false;
- 
-@@ -383,7 +383,7 @@
- 	if (!Locate(idx))
- 		return false;
- 
--	cTBList<T>::cItem *item = Unlink();
-+	typename cTBList<T>::cItem *item = Unlink();
- 	if (!item)
- 		return false;
- 
-@@ -412,13 +412,13 @@
- 
- template<class T>
- void cTBList<T>::Clear () {
--	cTBList<T>::cItem *item = m_First;
-+	typename cTBList<T>::cItem *item = m_First;
- 
- 	m_First = m_Last = m_Current = NULL;
- 	m_Count = 0;
- 	m_CurPos = -1;
- 
--	cTBList<T>::cItem *Prev;
-+	typename cTBList<T>::cItem *Prev;
- 	while (item) {
- 		Prev = item;
- 		item = item->Next;


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-08-07 15:29 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-07 15:29 [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-solitaire/files/ Joerg Bornkessel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox