Compare commits

..

2 commits

Author SHA1 Message Date
D Haley
27c35ebb5f * Add patches to fix build for ppc64/s390 2017-10-12 23:23:48 +01:00
D Haley
edba125b5a * Bump for GSL related build failure 2017-10-12 23:19:02 +01:00
9 changed files with 614 additions and 1 deletions

17
.gitignore vendored Normal file
View file

@ -0,0 +1,17 @@
/3Depict-0.0.2.tar.gz
/3Depict-0.0.3.tar.gz
/3Depict-0.0.6.tar.gz
/3Depict-0.0.7.tar.gz
/3Depict-0.0.8.tar.gz
/3Depict-0.0.9.tar.gz
/3Depict-0.0.10.tar.gz
/3Depict-0.0.11.tar.gz
/3Depict-0.0.12.tar.gz
/3Depict-0.0.13.tar.gz
/3Depict-0.0.14.tar.gz
/3Depict-0.0.15.tar.gz
/3Depict-0.0.16.tar.gz
/3Depict-0.0.17.tar.gz
/3Depict-0.0.18.tar.gz
/3Depict-0.0.19.tar.gz
/3Depict-0.0.20.tar.gz

View file

@ -0,0 +1,26 @@
--- src/wx/wxcomponents.cpp
+++ src/wx/wxcomponents.cpp
@@ -555,16 +555,17 @@ std::string TTFFinder::nxFindFont(const char *fontFile)
//(Oh look Ma, I'm autoconf!)
const char *dirs[] = { ".",
- "/usr/share/fonts/truetype", //Old debian
+ "/usr/local/share/fonts/truetype", // User fonts
"/usr/share/fonts/truetype/freefont", // New debian
"/usr/share/fonts/truetype/ttf-dejavu", //New debian
- "/usr/local/share/fonts/truetype", // User fonts
+ "/usr/share/fonts/truetype", //Old debian
+ "/usr/share/fonts/dejavu", //Fedora
"/usr/X11R6/lib/X11/fonts/truetype",
"/usr/X11R6/lib64/X11/fonts/truetype",
- "/usr/lib/X11/fonts/truetype",// Fedora 32
- "/usr/lib64/X11/fonts/truetype", //Fedora 64
- "/usr/local/lib/X11/fonts/truetype", // Fedora 32 new
- "/usr/local/lib64/X11/fonts/truetype",// Fedora 64 new
+ "/usr/lib/X11/fonts/truetype",
+ "/usr/lib64/X11/fonts/truetype",
+ "/usr/local/lib/X11/fonts/truetype",
+ "/usr/local/lib64/X11/fonts/truetype",
"",
}; //MUST end with "".

View file

@ -0,0 +1,15 @@
--- src/gui/mainFrame.cpp
+++ src/gui/mainFrame.cpp
@@ -2904,9 +2904,9 @@ void MainWindowFrame::OnHelpHelp(wxCommandEvent &event)
string s;
s=locateDataFile("3Depict-manual.pdf");
- //Also Debian makes us use the lowercase "D", so check there too.
- if(!s.size())
- s=locateDataFile("3depict-manual.pdf");
+ //Also Fedora has diff dir
+ if(!wxFileExists(s))
+ s="/usr/share/doc/3Depict-0.0.8/3Depict-0.0.8-manual.pdf";
//FIXME: under windows, currently we use "manual.pdf"
if(!s.size())

View file

@ -0,0 +1,21 @@
diff -r 522fed67ed37 src/backend/APT/APTFileIO.cpp
--- src/backend/APT/APTFileIO.cpp Mon Aug 28 13:47:41 2017 +0100
+++ src/backend/APT/APTFileIO.cpp Mon Aug 28 13:49:44 2017 +0100
@@ -956,7 +956,7 @@
ASSERT(forceEndian < 3);
#ifdef __LITTLE_ENDIAN__
endianFlip=(forceEndian == 2);
-#elif __BIG_ENDIAN
+#elif defined(__BIG_ENDIAN__)
endianFlip=(forceEndian == 1);
#endif
}
@@ -1225,7 +1225,7 @@
//assign the ID as the mass to charge
h.setMassToCharge(*( (short*)(buffer+12) ));
-#elif __BIG_ENDIAN__
+#elif defined(__BIG_ENDIAN__)
{
Point3D pt((float*)(buffer));
pt.switchEndian();

View file

@ -0,0 +1,127 @@
diff -r f7be487d31b2 src/backend/APT/APTFileIO.cpp
--- src/backend/APT/APTFileIO.cpp Sun Aug 27 05:07:02 2017 +0100
+++ src/backend/APT/APTFileIO.cpp Sun Aug 27 05:08:00 2017 +0100
@@ -22,6 +22,7 @@
#include "../../common/stringFuncs.h"
#include "../../common/basics.h"
#include "../../common/translation.h"
+#include "../../common/endianTest.h"
#include <cstring>
@@ -1230,9 +1231,9 @@
pt.switchEndian();
h.setPos(pt);
- uint16_t s;
- s =*( (uint16_t*)(buffer+12) );
- shortSwapBytes(s);
+ uint16_t *s;
+ s =( (uint16_t*)(buffer+12) );
+ uint16_tSwapBytes(s);
diff -r f7be487d31b2 src/backend/APT/ionhit.cpp
--- src/backend/APT/ionhit.cpp Sun Aug 27 05:07:02 2017 +0100
+++ src/backend/APT/ionhit.cpp Sun Aug 27 05:08:00 2017 +0100
@@ -75,14 +75,12 @@
pos=p;
}
-#ifdef __LITTLE_ENDIAN__
void IonHit::switchEndian()
{
pos.switchEndian();
floatSwapBytes(&(massToCharge));
}
-#endif
const IonHit &IonHit::operator=(const IonHit &obj)
{
diff -r f7be487d31b2 src/backend/APT/ionhit.h
--- src/backend/APT/ionhit.h Sun Aug 27 05:07:02 2017 +0100
+++ src/backend/APT/ionhit.h Sun Aug 27 05:08:00 2017 +0100
@@ -64,9 +64,8 @@
//returns true if any of the 4 data pts are +-inf
bool hasInf();
-#ifdef __LITTLE_ENDIAN__
+ //!Flip the endian of the point contained in this class
void switchEndian();
-#endif
//this does the endian switch for you
//but you must supply a valid array.
void makePosData(float *floatArr) const;
diff -r f7be487d31b2 src/common/endianTest.h
--- src/common/endianTest.h Sun Aug 27 05:07:02 2017 +0100
+++ src/common/endianTest.h Sun Aug 27 05:08:00 2017 +0100
@@ -25,10 +25,12 @@
#include <endian.h>
#endif
#endif
+#include <stdint.h>
#ifdef __BYTE_ORDER
//if both are not defined it is TRUE!
-#if __BYTE_ORDER == __BIG_ENDIAN
+// on F28 ppc64, is defined as __ORDER_BIG_ENDIAN
+#if (__BYTE_ORDER == __BIG_ENDIAN) || (__BYTE_ORDER == __ORDER_BIG_ENDIAN)
#ifndef __BIG_ENDIAN__
#define __BIG_ENDIAN__
#endif
@@ -69,14 +71,14 @@
*inFloat=fb.f;
}
-inline void shortSwapBytes(short *inShort)
+inline void uint16_tSwapBytes(uint16_t *inShort)
{
//Use a union to avoid strict-aliasing error
- union ShortSwapUnion{
- short s;
+ union Uint16SwapUnion{
+ uint16_t s;
char c[2];
} ;
- ShortSwapUnion sa,sb;
+ Uint16SwapUnion sa,sb;
sa.s = *inShort;
sb.c[0] = sa.c[1];
diff -r f7be487d31b2 src/common/mathfuncs.cpp
--- src/common/mathfuncs.cpp Sun Aug 27 05:07:02 2017 +0100
+++ src/common/mathfuncs.cpp Sun Aug 27 05:08:00 2017 +0100
@@ -455,7 +455,6 @@
return true;
}
-#ifdef __LITTLE_ENDIAN__
void Point3D::switchEndian()
{
@@ -463,7 +462,6 @@
floatSwapBytes(&value[1]);
floatSwapBytes(&value[2]);
}
-#endif
std::ostream& operator<<(std::ostream &stream, const Point3D &pt)
{
diff -r f7be487d31b2 src/common/mathfuncs.h
--- src/common/mathfuncs.h Sun Aug 27 05:07:02 2017 +0100
+++ src/common/mathfuncs.h Sun Aug 27 05:08:00 2017 +0100
@@ -174,10 +174,9 @@
static Point3D centroid(const Point3D *p, unsigned int n);
static Point3D centroid(const std::vector<Point3D> &p);
-#ifdef __LITTLE_ENDIAN__
- //!Flip the endian state for data stored in this point
+
+ //!Flip the endian state for data stored in this point
void switchEndian();
-#endif
};
//IMPORTANT!!!

View file

@ -0,0 +1,125 @@
diff -r cf4c3eefdead -r a369c6597982 src/backend/APT/APTFileIO.cpp
--- src/backend/APT/APTFileIO.cpp Sun Feb 05 14:33:21 2017 +0000
+++ src/backend/APT/APTFileIO.cpp Sun Feb 05 18:27:46 2017 +0000
@@ -24,7 +24,6 @@
#include "../../common/translation.h"
-
#include <cstring>
#include <new>
@@ -1123,7 +1122,7 @@
return 0;
}
-//Load a TAPSIM Binfile
+//Load a TAPSIM Binfile, which is the input geometry format for TAPSIM
unsigned int loadTapsimBinFile(const char *fileName, unsigned int &progress, ATOMIC_BOOL &wantAbort, vector<IonHit> &posIons)
{
ifstream f(fileName,std::ios::binary);
@@ -1136,7 +1135,7 @@
fileSize = f.tellg();
f.seekg(0,std::ios::beg);
- //TAPSIM's binary geometery input format is not totally clearly documented
+ //TAPSIM's binary geometry input format is not totally clearly documented
// but an example is provided. So best efforts are us.
std::string str;
@@ -1202,7 +1201,7 @@
return TAPSIM_ERR_FILE_FORMAT_FAIL;
}
- //Contrary to docuemntation, ids appear to be "short", not "unsigned int"
+ //Contrary to documentation, ids appear to be "short", not "unsigned int"
size_t recordSize=( (numbersPresent ? 1:0 )*sizeof(unsigned int) +
3*sizeof(float) + (idsPresent ?1:0)*sizeof(short));
@@ -1222,11 +1221,24 @@
//Transfer position data
#ifdef __LITTLE_ENDIAN__
h.setPos(Point3D((float*)(buffer)));
-#elif __BIG_ENDIAN__
- static_assert(false); //TODO: IMPLEMENT ME
-#endif
+
//assign the ID as the mass to charge
h.setMassToCharge(*( (short*)(buffer+12) ));
+#elif __BIG_ENDIAN__
+ {
+ Point3D pt((float*)(buffer));
+ pt.switchEndian();
+ h.setPos(pt);
+
+ uint16_t s;
+ s =*( (uint16_t*)(buffer+12) );
+ shortSwapBytes(s);
+
+
+
+ }
+
+#endif
posIons[ui]=h;
@@ -1291,7 +1303,7 @@
if(!flip)
{
- //Fkip the endinanness
+ //Flip the endinanness
for(size_t ui=0;ui<4;ui++)
floatSwapBytes(buffer+ui);
}
@@ -1300,7 +1312,7 @@
outF.write((char*)&intData,4);
intData=3;
- //Write out verion num as "3"
+ //Write out version num as "3"
outF.write((char*)&intData,4);
for(size_t ui=0;ui<nPoints;ui++)
@@ -1339,7 +1351,7 @@
TEST((ions[0].getPos().sqrDist(Point3D(1,1,0)) < sqrtf(std::numeric_limits<float>::epsilon())),"Checking read/write OK");
//Load using auto-detection of endinanness
- //Load, forcing assuming cont4ents are little endianness as requried
+ //Load, forcing assuming contents are little endianness as required
TEST(!LoadATOFile(filename.c_str(),ions,dummyProgress,wantAbort,1),"ATO load test (forced endianness)");
TEST(ions.size() == 100,"ion size check");
TEST((ions[0].getPos().sqrDist(Point3D(1,1,0)) < sqrtf(std::numeric_limits<float>::epsilon())),"checking read/write OK");
diff -r cf4c3eefdead -r a369c6597982 src/common/endianTest.h
--- src/common/endianTest.h Sun Feb 05 14:33:21 2017 +0000
+++ src/common/endianTest.h Sun Feb 05 18:27:46 2017 +0000
@@ -51,7 +51,7 @@
inline int is_littleendian() { return (*(char*)&ENDIAN_TEST) == 1 ;}
-
+//this may fail on some compilers??
inline void floatSwapBytes(float *inFloat)
{
//Use a union to avoid strict-aliasing error
@@ -69,5 +69,19 @@
*inFloat=fb.f;
}
+inline void shortSwapBytes(short *inShort)
+{
+ //Use a union to avoid strict-aliasing error
+ union ShortSwapUnion{
+ short s;
+ char c[2];
+ } ;
+ ShortSwapUnion sa,sb;
+ sa.s = *inShort;
+ sb.c[0] = sa.c[1];
+ sb.c[1] = sa.c[0];
+
+ *inShort=sb.s;
+}
#endif

282
3Depict.spec Normal file
View file

@ -0,0 +1,282 @@
Name: 3Depict
Version: 0.0.20
Release: 5%{?dist}
Summary: Valued 3D point cloud visualization and analysis
Group: Applications/Engineering
License: GPLv3+
URL: http://threedepict.sourceforge.net
Source0: http://downloads.sourceforge.net/threedepict/%{name}-%{version}.tar.gz
#Mathgl for plotting
BuildRequires: mathgl-devel
#Mesa for GLU
BuildRequires: libGL-devel
#Libxml2 for file parsing
BuildRequires: libxml2-devel
#FTGL for 3d fonts
BuildRequires: ftgl-devel
#libpng for textures
BuildRequires: libpng-devel
#Desktop file utils for installing desktop file
BuildRequires: desktop-file-utils
#WX widgets
BuildRequires: wxGTK3-devel
#Vigra, for voxelisation
BuildRequires: vigra-devel
#PDF latex build
#BuildRequires: tex(latex)
#Required for surface removal algorithms
BuildRequires: qhull-devel
#Fedora specific PDF dir.
Patch0: %{name}-%{version}-manual-pdf-loc.patch
#Fedora specific font dir
Patch1: %{name}-%{version}-font-path.patch
#Implementes tapsim loading for big-endian
# this is to fix a failed scratch build on ppc64
Patch2: %{name}-%{version}-tapsim-endian.patch
#Fixes for build under s390/ppc64, due to endianness problems
Patch3: %{name}-%{version}-s390_preprocessor_fix.patch
#Fixes for build under s390/ppc64, due to type problems
Patch4: %{name}-%{version}-short_type_fix.patch
%description
This software is designed to help users visualize and analyze 3D point clouds
with an associated real value, in a fast and flexible fashion. It is
specifically targeted to atom probe tomography applications, but may be
useful for general scalar valued point data purposes.
%prep
%setup -q
%patch0
%patch1
%patch2
%patch3
%patch4
%if 0%{?fedora} > 24
# Installation directory has changed
sed -i -e 's,qhull/qhull_a.h,libqhull/qhull_a.h,' \
src/backend/filters/filterCommon.h \
src/backend/filters/algorithms/spatial.cpp \
configure configure.ac
# Avoid rerunning the autotools
touch -r aclocal.m4 configure configure.ac
%endif
%build
%configure --disable-debug-checks --enable-openmp-parallel
make %{?_smp_mflags}
%install
make install DESTDIR=%{buildroot}
# Install the textures
mkdir -p %{buildroot}%{_datadir}/%{name}/textures
cp -p data/textures/*png %{buildroot}%{_datadir}/%{name}/textures/
#Install the manpage
install -Dp -m 644 packaging/manpage/%{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1
desktop-file-install \
--dir %{buildroot}%{_datadir}/applications \
packaging/%{name}.desktop
mkdir -p %{buildroot}%{_datadir}/pixmaps/
install -Dp -m 644 data/textures/tex-source/%{name}-icon.svg %{buildroot}%{_datadir}/pixmaps/%{name}.svg
#install language files
#--
#Remap locale names
mv locales/de_DE/ locales/de/
mkdir -p %{buildroot}/%{_datadir}/locale/
cp -R locales/* %{buildroot}/%{_datadir}/locale/
#Restore the internal build's locale naming
mv locales/de/ locales/de_DE/
#--
#Move the documentation such that it is picked up by the doc macro
mv docs/manual-latex/manual.pdf %{name}-%{version}-manual.pdf
#Locale stuff
%find_lang %{name}
%files -f %{name}.lang
%license COPYING
%doc AUTHORS ChangeLog README TODO %{name}-%{version}-manual.pdf
%{_bindir}/%{name}
%dir %{_datadir}/%{name}/
%dir %{_datadir}/%{name}/textures
%{_datadir}/%{name}/textures/*.png
%{_datadir}/applications/%{name}.desktop
%{_mandir}/man1/%{name}.1.*
%{_datadir}/pixmaps/*.svg
%changelog
* Thu Oct 12 2017 D Haley <mycae(a!t)gmx.com> - 0.0.20-5
- Bump for GSL rebuild
- Add fixes for s390/ppc64
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.20-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.20-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.20-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
* Sun Feb 05 2017 D Haley <mycae(a!t)gmx.com> - 0.0.20-1
- Update to 0.0.20
- Do not specify wx-config-3.0 (bug in wx, 1077718, fixed)
=======
* Sat Jan 14 2017 D Haley <mycae(a!t)gmx.com> - 0.0.19-2
- Rebuild for libmgl bump
* Wed Jun 01 2016 D Haley <mycae(a!t)gmx.com> - 0.0.19-1
- Update to 0.0.19
- Remove gcc patch, fixed upstream
- Add upstream patch
* Fri Apr 29 2016 Ralf Corsépius <corsepiu@fedoraproject.org> - 0.0.18-7
- Rebuild for qhull-2015.2-1.
- Reflect qhull_a.h's location having changed.
* Tue Mar 8 2016 Orion Poplawski <orion@cora.nwra.com> - 0.0.18-6
- Add patch for fix compilation with gcc 6
* Mon Feb 22 2016 Orion Poplawski <orion@cora.nwra.com> - 0.0.18-5
- Rebuild for gsl 2.1
- Cleanup spec
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.18-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
* Sun Nov 29 2015 Kalev Lember <klember@redhat.com> - 0.0.18-3
- Rebuilt for libmgl soname bump
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.18-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Fri May 01 2015 D Haley <mycae(a!t)gmx.com> - 0.0.18-1
- Update to 0.0.18
* Sat Oct 11 2014 D Haley <mycae(a!t)gmx.com> - 0.0.17-2
- Rebuild for mathgl 2.3
* Sun Sep 28 2014 D Haley <mycae(a!t)gmx.com> - 0.0.17-1
- Update to 0.0.17
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.16-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Sat Apr 26 2014 D Haley <mycae(a!t)gmx.com> - 0.0.16-1
- Update to 0.0.16
* Wed Feb 12 2014 D Haley <mycae(a!t)gmx.com> - 0.0.15-4
- Rebuild for mgl
* Wed Feb 05 2014 D Haley <mycae(a!t)gmx.com> - 0.0.15-3
- Rebuild for new mgl
- Add upstream patches
* Sun Jan 26 2014 D Haley <mycae(a!t)gmx.com> - 0.0.15-2
- Rebuild for new mgl
* Sun Dec 01 2013 D Haley <mycae(a!t)gmx.com> - 0.0.15-1
- Update to 0.0.15
* Fri Aug 02 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.14-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Sat Jul 20 2013 D Haley <mycae(a!t)gmx.com> - 0.0.14-1
- Update to 0.0.14
* Tue Jun 25 2013 D Haley <mycae(a!t)gmx.com> - 0.0.13-2
- Enable mathgl2
* Fri Apr 12 2013 D Haley <mycae(a!t)gmx.com> - 0.0.13-1
- Update to 0.0.13
* Sat Mar 23 2013 D Haley <mycae(a!t)gmx.com> - 0.0.12-4
- Add aarch 64 patch for bug 924960, until next version
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.12-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
* Sun Dec 9 2012 D Haley <mycae(a!t)yahoo.com> - 0.0.12-2
- Import bugfixes from upstream for plot UI and crash fixes
* Sun Nov 25 2012 D Haley <mycae(a!t)yahoo.com> - 0.0.12-1
- Update to 0.0.12
* Mon Apr 2 2012 D Haley <mycae(a!t)yahoo.com> - 0.0.10-1
- Update to 0.0.10
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.9-4
- Rebuilt for c++ ABI breakage
* Thu Jan 12 2012 D Haley <mycae(a!t)yahoo.com> - 0.0.9-3
- Patch to fix FTFBS for gcc 4.7
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.9-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Sat Dec 17 2011 D Haley <mycae(a!t)yahoo.com> - 0.0.9-1
- Update to 0.0.9
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 0.0.8-3
- Rebuild for new libpng
* Sat Oct 29 2011 D Haley <mycae(a!t)yahoo.com> - 0.0.8-2
- Post release fixes for various crash bugs
* Sun Oct 23 2011 D Haley <mycae(a!t)yahoo.com> - 0.0.8-1
- Update to 0.0.8
* Sun Aug 14 2011 D Haley <mycae(a!t)yahoo.com> - 0.0.7-1
- Update to 0.0.7
* Fri May 20 2011 D Haley <mycae(a!t)yahoo.com> - 0.0.6-1
- Update to 0.0.6
* Sun Mar 27 2011 D Haley <mycae(a!t)yahoo.com> - 0.0.5-1
- New upstream release
* Sun Mar 13 2011 D Haley <mycae(a!t)yahoo.com> - 0.0.4-3
- Patch opengl startup code -- peek at gl context. Possible fix for bug 684390
* Sat Feb 12 2011 D Haley <mycae(a!t)yahoo.com> - 0.0.4-2
- Fix bug 677016 - 3Depict no built with rpm opt flags
* Sat Jan 22 2011 D Haley <mycae(a!t)yahoo.com> - 0.0.4-1
- Update to 0.0.4
* Fri Nov 26 2010 D Haley <mycae(a!t)yahoo.com> - 0.0.3-1
- Update to 0.0.3
* Tue Oct 5 2010 D Haley <mycae(a!t)yahoo.com> - 0.0.2-3
- Use tex(latex) virtual package in preference to texlive-latex
* Mon Oct 4 2010 D Haley <mycae(a!t)yahoo.com> - 0.0.2-2
- Add latex build for manual
* Sat Sep 25 2010 D Haley <mycae(a!t)yahoo.com> - 0.0.2-1
- Update to 0.0.2
- Address comments in package review
* Sun Aug 08 2010 D Haley <mycae(a!t)yahoo.com> - 0.0.1-1
- Initial package

View file

@ -1 +0,0 @@
Orphaned for 6+ weeks

1
sources Normal file
View file

@ -0,0 +1 @@
SHA512 (3Depict-0.0.20.tar.gz) = e9a68e57c56a0fc9246a70b0bb031a40c54726ba38663fddc9f92995826bc17641fa6cb6872773de39b762e340f03f114a1509ed640bcfc06b266260f1e17654