public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/MyPasswordSafe] rawhide: Orphaned for 6+ weeks
@ 2026-07-22  5:21 Orphaned Packages Process
  0 siblings, 0 replies; only message in thread
From: Orphaned Packages Process @ 2026-07-22  5:21 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/MyPasswordSafe
Branch : rawhide
Commit : edbef815ab1421c074ed01a5aecbd471894d2023
Author : Orphaned Packages Process <packaging-reports@fedoraproject.org>
Date   : 2026-07-22T00:21:31-05:00
Stats  : +1/-430 in 11 file(s)
URL    : https://src.fedoraproject.org/rpms/MyPasswordSafe/c/edbef815ab1421c074ed01a5aecbd471894d2023?branch=rawhide

Log:
Orphaned for 6+ weeks

---
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index e14661a..0000000
--- a/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-MyPasswordSafe-20061216.src.tgz

diff --git a/MyPasswordSafe-20061216-fix-off-by-one.patch b/MyPasswordSafe-20061216-fix-off-by-one.patch
deleted file mode 100644
index bc3aad8..0000000
--- a/MyPasswordSafe-20061216-fix-off-by-one.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -uNr MyPasswordSafe-20061216.orig/src/encryptedstring.cpp MyPasswordSafe-20061216/src/encryptedstring.cpp
---- MyPasswordSafe-20061216.orig/src/encryptedstring.cpp	2010-11-13 18:16:06.000000000 +0100
-+++ MyPasswordSafe-20061216/src/encryptedstring.cpp	2010-11-13 18:16:33.000000000 +0100
-@@ -98,7 +98,7 @@
-     unsigned char cbcbuffer[8];
-     memcpy(cbcbuffer, m_cbc, 8);
- 
--    unsigned char *buffer = new unsigned char[BlockLength]; // so we lie a little...
-+    unsigned char *buffer = new unsigned char[BlockLength+1]; // so we lie a little...
- 
-     unsigned char tempcbc[8];
-     for (int x=0;x<BlockLength;x+=8)

diff --git a/MyPasswordSafe-20061216-gcc43.patch b/MyPasswordSafe-20061216-gcc43.patch
deleted file mode 100644
index d064f9a..0000000
--- a/MyPasswordSafe-20061216-gcc43.patch
+++ /dev/null
@@ -1,70 +0,0 @@
-diff -uNr MyPasswordSafe-20061216-orig/src/crypto/bfproxy.cpp MyPasswordSafe-20061216/src/crypto/bfproxy.cpp
---- MyPasswordSafe-20061216-orig/src/crypto/bfproxy.cpp	2004-12-06 14:07:03.000000000 +0100
-+++ MyPasswordSafe-20061216/src/crypto/bfproxy.cpp	2008-01-04 14:48:06.000000000 +0100
-@@ -17,6 +17,7 @@
-  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-  */
- #include "bfproxy.hpp"
-+#include <cstring>
- 
- BFProxy::BFProxy(const unsigned char *key, int len)
- {
-diff -uNr MyPasswordSafe-20061216-orig/src/encryptedstring.cpp MyPasswordSafe-20061216/src/encryptedstring.cpp
---- MyPasswordSafe-20061216-orig/src/encryptedstring.cpp	2004-12-06 13:32:05.000000000 +0100
-+++ MyPasswordSafe-20061216/src/encryptedstring.cpp	2008-01-04 14:20:16.000000000 +0100
-@@ -17,6 +17,7 @@
-  */
- #include <time.h>
- #include <iostream>
-+#include <cstdlib>
- #include "pwsafe/Util.h"
- #include "crypto/bfproxy.hpp"
- #include "crypto/sha1.h"
-diff -uNr MyPasswordSafe-20061216-orig/src/pwsafe/Util.h MyPasswordSafe-20061216/src/pwsafe/Util.h
---- MyPasswordSafe-20061216-orig/src/pwsafe/Util.h	2004-11-01 22:54:35.000000000 +0100
-+++ MyPasswordSafe-20061216/src/pwsafe/Util.h	2008-01-04 14:37:08.000000000 +0100
-@@ -9,6 +9,9 @@
- #include "securedstring.hpp"
- #include <assert.h>
- 
-+#include <cstring>
-+#include <cstdlib>
-+#include <climits>
- #include <string>
- using std::string;
- #include "PW_sha1.h"
-diff -uNr MyPasswordSafe-20061216-orig/src/safe.hpp MyPasswordSafe-20061216/src/safe.hpp
---- MyPasswordSafe-20061216-orig/src/safe.hpp	2005-11-23 14:21:29.000000000 +0100
-+++ MyPasswordSafe-20061216/src/safe.hpp	2008-01-04 14:21:36.000000000 +0100
-@@ -129,7 +129,7 @@
-   SafeEntry(SafeGroup *parent);
-   SafeEntry(SafeGroup *parent,
- 	    const QString &n, const QString &u,
--	    const EncryptedString &p, const QString &n);
-+	    const EncryptedString &p, const QString &note);
-   SafeEntry(const SafeEntry &item);
-   ~SafeEntry();
- 
-diff -uNr MyPasswordSafe-20061216-orig/src/safeserializer.cpp MyPasswordSafe-20061216/src/safeserializer.cpp
---- MyPasswordSafe-20061216-orig/src/safeserializer.cpp	2004-12-06 13:34:28.000000000 +0100
-+++ MyPasswordSafe-20061216/src/safeserializer.cpp	2008-01-04 14:24:57.000000000 +0100
-@@ -22,6 +22,7 @@
- #include "plaintextlizer.hpp"
- #include "serializers.hpp"
- #include "xmlserializer.hpp"
-+#include <algorithm>
- 
- using namespace std;
- 
-diff -uNr MyPasswordSafe-20061216-orig/src/xmlserializer.hpp MyPasswordSafe-20061216/src/xmlserializer.hpp
---- MyPasswordSafe-20061216-orig/src/xmlserializer.hpp	2004-11-01 22:34:58.000000000 +0100
-+++ MyPasswordSafe-20061216/src/xmlserializer.hpp	2008-01-04 14:22:59.000000000 +0100
-@@ -22,7 +22,7 @@
- #include "safeserializer.hpp"
- 
- class Safe;
--enum Safe::Error;
-+// enum Safe::Error;
- class EncryptedString;
- class SecuredString;
- 

diff --git a/MyPasswordSafe-20061216-stack-trash.patch b/MyPasswordSafe-20061216-stack-trash.patch
deleted file mode 100644
index 5eac224..0000000
--- a/MyPasswordSafe-20061216-stack-trash.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -uNr a/src/pwsafe/PW_BlowFish.cpp b/src/pwsafe/PW_BlowFish.cpp
---- a/src/pwsafe/PW_BlowFish.cpp	2013-12-21 12:53:16.877044394 +0100
-+++ b/src/pwsafe/PW_BlowFish.cpp	2013-12-21 12:54:05.581963998 +0100
-@@ -419,9 +419,8 @@
- {
-   //  trashMemory((unsigned char*)tempbf_P, 18*4);
-   // trashMemory((unsigned char*)tempbf_S, 256*4);
--  trashMemory((unsigned char*)bf_P, 18*sizeof(long));
--  for(int i = 0; i < 4; i++)
--    trashMemory((unsigned char*)bf_S[i], 256);
-+  trashMemory((unsigned char*)bf_P, sizeof(bf_P));
-+  trashMemory((unsigned char*)bf_S, sizeof(bf_S));
- }
- 
- void

diff --git a/MyPasswordSafe-20061216-unsigned-convert.patch b/MyPasswordSafe-20061216-unsigned-convert.patch
deleted file mode 100644
index 795d25e..0000000
--- a/MyPasswordSafe-20061216-unsigned-convert.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff -uNr a/src/crypto/sha1.cpp b/src/crypto/sha1.cpp
---- a/src/crypto/sha1.cpp	2013-12-21 12:54:42.876629399 +0100
-+++ b/src/crypto/sha1.cpp	2013-12-21 12:55:32.838402565 +0100
-@@ -324,11 +324,11 @@
- {
- 	const char test1[] = { 'a', 'b', 'c' };
- 	const uint32_t test1_len = array_size(test1);
--	const char test1_md[] = { 0xA9, 0x99, 0x3E, 0x36, 0x47, 0x06, 0x81, 0x6A, 0xBA, 0x3E,
-+	const unsigned char test1_md[] = { 0xA9, 0x99, 0x3E, 0x36, 0x47, 0x06, 0x81, 0x6A, 0xBA, 0x3E,
- 				  0x25, 0x71, 0x78, 0x50, 0xC2, 0x6C, 0x9C, 0xD0, 0xD8, 0x9D };
- 	const char test2[] = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq";
- 	const uint32_t test2_len = array_size(test2) - 1;
--	const char test2_md[] = { 0x84, 0x98, 0x3E, 0x44, 0x1C, 0x3B, 0xD2, 0x6E, 0xBA, 0xAE,
-+	const unsigned char test2_md[] = { 0x84, 0x98, 0x3E, 0x44, 0x1C, 0x3B, 0xD2, 0x6E, 0xBA, 0xAE,
- 				  0x4A, 0xA1, 0xF9, 0x51, 0x29, 0xE5, 0xE5, 0x46, 0x70, 0xF1 };
- 	const uint32_t test3_len = 640;
- 	const char test3_single[] = { '0', '1', '2', '3', '4', '5', '6', '7' };
-@@ -337,7 +337,7 @@
- 	uint32_t i;
- 	for (i = 0; i < test3_len / test3_single_len; ++i)
- 		memcpy(test3 + (i * test3_single_len), test3_single, test3_single_len);
--	const char test3_md[] = { 0xDE, 0xA3, 0x56, 0xA2, 0xCD, 0xDD, 0x90, 0xC7, 0xA7, 0xEC,
-+	const unsigned char test3_md[] = { 0xDE, 0xA3, 0x56, 0xA2, 0xCD, 0xDD, 0x90, 0xC7, 0xA7, 0xEC,
- 				  0xED, 0xC5, 0xEB, 0xB5, 0x63, 0x93, 0x4F, 0x46, 0x04, 0x52 };
- 	Sha1 sha1;
- 	sha1.sha1_write(reinterpret_cast<const byte *>(test1), test1_len);

diff --git a/MyPasswordSafe-20061216-use-system-uuid.patch b/MyPasswordSafe-20061216-use-system-uuid.patch
deleted file mode 100644
index 2f90eba..0000000
--- a/MyPasswordSafe-20061216-use-system-uuid.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff -uNr MyPasswordSafe-20061216-orig/Makefile MyPasswordSafe-20061216/Makefile
---- MyPasswordSafe-20061216-orig/Makefile	2004-12-06 14:14:53.000000000 +0100
-+++ MyPasswordSafe-20061216/Makefile	2007-07-06 20:55:45.000000000 +0200
-@@ -27,7 +27,7 @@
- MyPasswordSafe.mak: MyPasswordSafe.pro
- 	$(QMAKE) -o $@ $<
- 
--MyPasswordSafe: config uuid-1.0.0/.libs/libuuid.a MyPasswordSafe.mak
-+MyPasswordSafe: config MyPasswordSafe.mak
- 	${MAKE} -f MyPasswordSafe.mak
- 	lrelease locale/*.ts
- 
-diff -uNr MyPasswordSafe-20061216-orig/MyPasswordSafe.pro MyPasswordSafe-20061216/MyPasswordSafe.pro
---- MyPasswordSafe-20061216-orig/MyPasswordSafe.pro	2006-04-06 13:04:38.000000000 +0200
-+++ MyPasswordSafe-20061216/MyPasswordSafe.pro	2007-07-06 21:04:34.000000000 +0200
-@@ -3,8 +3,8 @@
- 
- CONFIG	+= qt warn_on
- 
--LIBS	+= uuid-1.0.0/.libs/libuuid.a
--INCLUDEPATH	+= uuid-1.0.0
-+LIBS	+= -lossp-uuid
-+#INCLUDEPATH	+= uuid-1.0.0
- 
- # idle
- CONFIG += idle

diff --git a/MyPasswordSafe-20090425-gcc44.patch b/MyPasswordSafe-20090425-gcc44.patch
deleted file mode 100644
index 996847f..0000000
--- a/MyPasswordSafe-20090425-gcc44.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/pwsafe/Util.h.orig	2009-04-25 13:35:52.000000000 +0200
-+++ src/pwsafe/Util.h	2009-04-25 13:46:50.000000000 +0200
-@@ -173,7 +173,7 @@
- 
- inline char * strFind( const char *str, const char *fstr )
- {
--	return strstr( str, fstr );
-+	return (char *) strstr( str, fstr );
- }
- 
- #if defined(UNICODE)

diff --git a/MyPasswordSafe.desktop b/MyPasswordSafe.desktop
deleted file mode 100644
index c785908..0000000
--- a/MyPasswordSafe.desktop
+++ /dev/null
@@ -1,9 +0,0 @@
-[Desktop Entry]
-Encoding=UTF-8
-Name=MyPasswordSafe
-GenericName=Password Manager
-Comment=Manage your passwords
-Exec=MyPasswordSafe
-Terminal=false
-Type=Application
-Categories=Utility;Database;Security;

diff --git a/MyPasswordSafe.spec b/MyPasswordSafe.spec
deleted file mode 100644
index d96bd14..0000000
--- a/MyPasswordSafe.spec
+++ /dev/null
@@ -1,259 +0,0 @@
-%define         datever 20061216
-
-Name:           MyPasswordSafe
-Version:        0.6.7
-Release:        56.%{datever}%{?dist}
-Summary:        A graphical password management tool
-
-# Automatically converted from old format: GPLv2+ - review is highly recommended.
-License:        GPL-2.0-or-later
-URL:            http://www.semanticgap.com/myps/
-Source0:        http://www.semanticgap.com/myps/release/MyPasswordSafe-%{datever}.src.tgz
-Source1:        MyPasswordSafe.desktop
-Patch0:         MyPasswordSafe-20061216-use-system-uuid.patch
-# Both patches have been sent to support [AT] semanticgap [DOT] com on 2009/04/25
-Patch1:         MyPasswordSafe-20061216-gcc43.patch
-Patch2:         MyPasswordSafe-20090425-gcc44.patch
-Patch3:         MyPasswordSafe-20061216-fix-off-by-one.patch
-Patch4:         MyPasswordSafe-20061216-stack-trash.patch
-Patch5:         MyPasswordSafe-20061216-unsigned-convert.patch
-
-BuildRequires: make
-BuildRequires:  gcc-c++
-BuildRequires:  boost-devel, qt3-devel, uuid-devel, libXScrnSaver-devel
-BuildRequires:  desktop-file-utils
-
-%description
-MyPasswordSafe is a straight-forward, easy-to-use password manager that
-maintains compatibility with Password Safe files. MyPasswordSafe has the
-following features:
-
-* Safes are encrypted when they are stored to disk.
-* Passwords never have to be seen, because they are copied to the clipboard
-* Random passwords can be generated.
-* Window size, position, and column widths are remembered.
-* Passwords remain encrypted until they need to be decrypted at the dialog
-  and file levels.
-* A safe can be made active so it will always be opened when MyPasswordSafe
-  starts.
-* Supports Unicode in the safes
-* Languages supported: English and French
-
-
-%prep
-%setup -q -n %{name}-%{datever}
-
-# Use the system installed ossp-uuid lib
-%patch -P0 -p1 -b .use-system-uuid.patch
-
-# Fix regressions due to stricter GCC 4.3 checking
-%patch -P1 -p1 -b .gcc43
-
-# GCC 4.4 patch
-%patch -P2 -b .gcc44
-
-# Fix off-by-one in EncryptedString::get
-%patch -P3 -p1 -b off-by-one
-
-# Fix stack trashing due to wrong array size calculations
-%patch -P4 -p1 -b stack-trash
-
-# Fix compiler warnings for narrowing to char
-%patch -P5 -p1 -b unsigned-convert
-
-%build
-
-unset QTDIR || : ; . /etc/profile.d/qt.sh
-
-make %{?_smp_mflags} PREFIX=%{_prefix}
-
-
-%install
-rm -rf $RPM_BUILD_ROOT
-make install PREFIX=$RPM_BUILD_ROOT%{_prefix}
-
-# Remove the docs, they are in the wrong place.
-rm -rf $RPM_BUILD_ROOT%{_prefix}/share/doc
-
-desktop-file-install \
-%if 0%{?fedora} && 0%{?fedora} < 19
-  --vendor="fedora"               \
-%endif
-  --dir=${RPM_BUILD_ROOT}%{_datadir}/applications    \
-    %{SOURCE1}
-
-
-
-%files
-%doc ChangeLog CHANGES COPYING README doc/manual.html doc/sshots/*.jpg
-%{_bindir}/MyPasswordSafe
-%{_datadir}/MyPasswordSafe
-%if 0%{?fedora} && 0%{?fedora} < 19
-%{_datadir}/applications/fedora-MyPasswordSafe.desktop
-%else
-%{_datadir}/applications/MyPasswordSafe.desktop
-%endif
-
-%changelog
-* Wed Jul 15 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-56.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
-
-* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-55.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
-
-* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-54.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
-
-* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-53.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
-
-* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-52.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
-
-* Fri Jul 26 2024 Miroslav Suchý <msuchy@redhat.com> - 0.6.7-51.20061216
-- convert license to SPDX
-
-* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-50.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
-
-* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-49.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
-
-* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-48.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
-
-* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-47.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
-
-* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-46.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
-
-* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-45.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
-
-* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-44.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
-
-* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-43.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
-
-* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-42.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
-
-* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-41.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
-
-* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-40.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
-
-* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-39.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
-
-* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-38.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
-
-* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-37.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
-
-* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-36.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
-
-* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-35.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
-
-* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-34.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
-
-* Mon Jul 03 2017 Jonathan Wakely <jwakely@redhat.com> - 0.6.7-33.20061216
-- Rebuilt for Boost 1.64
-
-* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-32.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
-
-* Fri Jan 27 2017 Jonathan Wakely <jwakely@redhat.com> - 0.6.7-31.20061216
-- Rebuilt for Boost 1.63
-
-* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-30.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
-
-* Thu Jan 14 2016 Jonathan Wakely <jwakely@redhat.com> - 0.6.7-29.20061216
-- Rebuilt for Boost 1.60
-
-* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 0.6.7-28.20061216
-- Rebuilt for Boost 1.59
-
-* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.7-27.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
-
-* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 0.6.7-26.20061216
-- rebuild for Boost 1.58
-
-* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.7-25.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
-
-* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 0.6.7-24.20061216
-- Rebuilt for GCC 5 C++11 ABI change
-
-* Tue Jan 27 2015 Petr Machata <pmachata@redhat.com> - 0.6.7-23.20061216
-- Rebuild for boost 1.57.0
-
-* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.7-22.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
-
-* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.7-21.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
-
-* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 0.6.7-20.20061216
-- Rebuild for boost 1.55.0
-
-* Sat Dec 21 2013 Ralf Ertzinger <ralf@skytale.net> - 0.6.7-19.20061216
-- Fix stack trashing due to wrong size calculation, closes bz1042667
-- Fix compiler warnings about narrowing longs into chars
-
-* Fri Aug 02 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.7-18.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
-
-* Tue Jul 30 2013 Petr Machata <pmachata@redhat.com> - 0.6.7-17.20061216
-- Rebuild for boost 1.54.0
-
-* Thu Feb 14 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.7-16.20061216
-- Remove --vendor from desktop-file-install https://fedorahosted.org/fesco/ticket/1077
-
-* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.7-15.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
-
-* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.7-14.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
-
-* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.7-13.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
-
-* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.7-12.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
-
-* Sat Nov 13 2010 Ralf Ertzinger <ralf@skytale.net>
-- Fix off-by-one in encryptstring.cpp, closes bz652928
-
-* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.7-9.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
-
-* Sat Apr 25 2009 Milos Jakubicek <xjakub@fi.muni.cz> - 0.6.7-8.20061216
-- Fix FTBFS: added MyPasswordSafe-20090425-gcc44.patch
-
-* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.7-7.20061216
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
-
-* Mon Jul 14 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.6.7-6.20061216
-- fix license tag
-
-* Sat Apr 05 2008 Ralf Ertzinger <ralf@skytale.net> 0.6.7-5.20061216
-- Change BuildRequires to qt3-devel
-
-* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.6.7-4.20061216
-- Autorebuild for GCC 4.3
-
-* Fri Jan 04 2008 Ralf Ertzinger <ralf@skytale.net> 0.6.7-3.20061216
-- Add patch to enable compilation with GCC4.3
-
-* Fri Jul 06 2007 Ralf Ertzinger <ralf@skytale.net> 0.6.7-1.20061216
-- Initial build for Fedora

diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..5204a84
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+Orphaned for 6+ weeks

diff --git a/sources b/sources
deleted file mode 100644
index e122640..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-0fef98e77c8e593382fb201bd278cacf  MyPasswordSafe-20061216.src.tgz

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

only message in thread, other threads:[~2026-07-22  5:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-22  5:21 [rpms/MyPasswordSafe] rawhide: Orphaned for 6+ weeks Orphaned Packages Process

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