From 0e4305dceb73dd54f3e82cb9f81f8e2c14dc4316 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Aug 08 2019 13:32:34 +0000 Subject: barry fails to build from source: https://bugzilla.redhat.com/show_bug.cgi?id=1674685 --- diff --git a/.gitignore b/.gitignore deleted file mode 100644 index a59bcf4..0000000 --- a/.gitignore +++ /dev/null @@ -1,11 +0,0 @@ -barry-0.17.tar.bz2 -/barry-20101126.0.17.tar.bz2 -/barry-20101231.0.17.tar.bz2 -/barry-20110118.0.17.tar.bz2 -/barry-20110126.0.17.tar.bz2 -/barry-0.17.0.tar.bz2 -/barry-0.17.1.tar.bz2 -/barry-0.18.0.tar.bz2 -/barry-0.18.3.tar.bz2 -/.project -/barry-0.18.4.tar.bz2 diff --git a/barry-0.17.2-destructor-exception.patch b/barry-0.17.2-destructor-exception.patch deleted file mode 100644 index 12173f3..0000000 --- a/barry-0.17.2-destructor-exception.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff --git a/src/m_javaloader.cc b/src/m_javaloader.cc -index 5ed8fed..af32306 100644 ---- a/src/m_javaloader.cc -+++ b/src/m_javaloader.cc -@@ -342,8 +342,16 @@ JavaLoader::JavaLoader(Controller &con) - - JavaLoader::~JavaLoader() - { -- if( m_StreamStarted ) -- StopStream(); -+ try { -+ if( m_StreamStarted ) -+ StopStream(); -+ } -+ catch( std::exception &e ) { -+ dout("Exception ignored in ~JavaLoader(): " << e.what()); -+ } -+ catch( ... ) { -+ dout("Unknown exception in ~JavaLoader()"); -+ } - } - - /////////////////////////////////////////////////////////////////////////////// --- -1.6.5.GIT diff --git a/barry-0.18-cxx11.patch b/barry-0.18-cxx11.patch deleted file mode 100644 index 3b866eb..0000000 --- a/barry-0.18-cxx11.patch +++ /dev/null @@ -1,199 +0,0 @@ ---- barry-0.18.4/tools/btool.cc.orig 2016-01-28 22:36:10.425241414 +0000 -+++ barry-0.18.4/tools/btool.cc 2016-01-28 22:36:12.025244900 +0000 -@@ -51,7 +51,6 @@ - #include - #include - #include --#include - #include "i18n.h" - #include "util.h" - #include "boostwrap.h" -@@ -59,7 +58,6 @@ - #include "barrygetopt.h" - - using namespace std; --using namespace std::tr1; - using namespace Barry; - - std::map SortKeys; ---- barry-0.18.4/tools/bio.cc.orig 2016-01-28 23:00:41.545875679 +0000 -+++ barry-0.18.4/tools/bio.cc 2016-01-28 23:00:43.921882060 +0000 -@@ -34,7 +34,6 @@ - #include - #include - #include --#include - #include - #include - -@@ -42,7 +41,6 @@ - #include "i18n.h" - - using namespace std; --using namespace std::tr1; - using namespace Barry; - - // keeping a record of all the -i device / -o device pin numbers, so ---- barry-0.18.4/src/usbwrap.h.orig 2016-01-28 23:17:56.285616559 +0000 -+++ barry-0.18.4/src/usbwrap.h 2016-01-28 23:17:58.659622739 +0000 -@@ -27,7 +27,6 @@ - #include "dll.h" - - #include --#include - #include - #include - #include "error.h" -@@ -82,7 +81,7 @@ - class BXEXPORT DeviceID - { - public: -- std::tr1::shared_ptr m_impl; -+ std::shared_ptr m_impl; - public: - // Takes ownership of impl - DeviceID(DeviceIDImpl* impl = NULL); -@@ -146,7 +145,7 @@ - InvalidType = 0xff - }; - private: -- const std::auto_ptr m_impl; -+ const std::unique_ptr m_impl; - bool m_read; - uint8_t m_addr; - EpType m_type; -@@ -173,7 +172,7 @@ - public: - typedef std::vector base_type; - private: -- const std::auto_ptr m_impl; -+ const std::unique_ptr m_impl; - private: - InterfaceDescriptor(const InterfaceDescriptor& rhs); // Prevent copying - public: -@@ -199,7 +198,7 @@ - public: - typedef std::map base_type; - private: -- const std::auto_ptr m_impl; -+ const std::unique_ptr m_impl; - private: - ConfigDescriptor(const ConfigDescriptor& rhs); // Prevent copying - public: -@@ -221,7 +220,7 @@ - public: - typedef std::map base_type; - private: -- const std::auto_ptr m_impl; -+ const std::unique_ptr m_impl; - private: - DeviceDescriptor(const DeviceDescriptor& rhs); // Prevent copying - public: -@@ -237,7 +236,7 @@ - { - private: - // Private implementation structure -- const std::auto_ptr m_impl; -+ const std::unique_ptr m_impl; - private: - DeviceList(const DeviceList& rhs); // Prevent copying - public: -@@ -255,7 +254,7 @@ - { - private: - Usb::DeviceID m_id; -- const std::auto_ptr m_handle; -+ const std::unique_ptr m_handle; - - int m_timeout; - int m_lasterror; ---- barry-0.18.4/src/socket.h.orig 2016-01-28 23:20:46.844060604 +0000 -+++ barry-0.18.4/src/socket.h 2016-01-28 23:20:38.710039428 +0000 -@@ -42,7 +42,7 @@ - - class SocketBase; - class Socket; --typedef std::auto_ptr SocketHandle; -+typedef std::unique_ptr SocketHandle; - - class BXEXPORT SocketZero - { -@@ -202,7 +202,7 @@ - bool m_registered; - - // buffer data -- std::auto_ptr m_sequence; -+ std::unique_ptr m_sequence; - - protected: - void ForceClosed(); ---- barry-0.18.4/opensync-plugin/src/environment.h.orig 2016-01-29 00:18:43.620316307 +0000 -+++ barry-0.18.4/opensync-plugin/src/environment.h 2016-01-29 00:18:45.483320943 +0000 -@@ -88,7 +88,7 @@ - bool m_DebugMode; - - // device communication -- std::auto_ptr m_con; -+ std::unique_ptr m_con; - - // sync data - DatabaseSyncState m_CalendarSync, m_ContactsSync; ---- barry-0.18.4/src/ldifio.h.orig 2016-01-29 00:33:31.928533147 +0000 -+++ barry-0.18.4/src/ldifio.h 2016-01-29 00:33:40.394555098 +0000 -@@ -49,8 +49,8 @@ - /// - class BXEXPORT LdifStore - { -- std::auto_ptr m_ifs; -- std::auto_ptr m_ofs; -+ std::unique_ptr m_ifs; -+ std::unique_ptr m_ofs; - std::istream &m_is; - std::ostream &m_os; - bool m_end_of_file; ---- barry-0.18.4/src/controller.h.orig 2016-01-29 00:51:50.210391670 +0000 -+++ barry-0.18.4/src/controller.h 2016-01-29 00:50:39.227205391 +0000 -@@ -92,7 +92,7 @@ - }; - - private: -- const std::auto_ptr m_priv; -+ const std::unique_ptr m_priv; - - private: - Controller(const Controller& rhs); // prevent copying ---- barry-0.18.4/src/iconv.h.orig 2016-01-29 00:52:18.395465635 +0000 -+++ barry-0.18.4/src/iconv.h 2016-01-29 00:52:28.506492170 +0000 -@@ -42,7 +42,7 @@ - { - friend class IConverter; - -- std::auto_ptr m_priv; -+ std::unique_ptr m_priv; - - bool m_throw_on_conv_err; - ---- barry-0.18.4/src/connector.h.orig 2016-01-29 00:52:41.099525217 +0000 -+++ barry-0.18.4/src/connector.h 2016-01-29 00:52:48.420544429 +0000 -@@ -134,8 +134,8 @@ - class BXEXPORT DesktopConnector : public Connector - { - Barry::SocketRoutingQueue *m_router; -- std::auto_ptr m_con; -- std::auto_ptr m_desktop; -+ std::unique_ptr m_con; -+ std::unique_ptr m_desktop; - int m_connect_timeout; - - protected: ---- barry-0.18.4/src/j_server.h.orig 2016-01-29 00:53:09.069598618 +0000 -+++ barry-0.18.4/src/j_server.h 2016-01-29 00:53:16.178617275 +0000 -@@ -58,7 +58,7 @@ - JDWAppList appList; // List of BlackBerry application (an application contents several COD files) - Barry::JDG::ClassList visibleClassList; // Visible class list from JDB - -- std::auto_ptr handler; -+ std::unique_ptr handler; - ConsoleCallbackType printConsoleMessage; - - void CommandsetProcess(Barry::Data &cmd); diff --git a/barry.spec b/barry.spec deleted file mode 100644 index 7b3e0d6..0000000 --- a/barry.spec +++ /dev/null @@ -1,461 +0,0 @@ -Name: barry -Version: 0.18.4 -Release: 27%{?dist} -Summary: BlackBerry Desktop for Linux -License: GPLv2+ -URL: http://www.netdirect.ca/software/packages/barry -# The source for this package is often pulled from upstream's git. Use the following -# commands to generate the tarball: -# git clone git://repo.or.cz/barry.git OR git pull barry -# cd barry/maintainer -# ./git-extract.sh 0 15 master -# (cd build/barry* && ../../tar-prepare.sh) -# (cd build && ../tar-create.sh 0 15) -Source0: http://downloads.sourceforge.net/projects/%{name}/%{name}/%{name}-%{version}/%{name}-%{version}.tar.bz2 -Patch1: barry-0.18-cxx11.patch -BuildRequires: autoconf -BuildRequires: automake -BuildRequires: boost-devel -BuildRequires: desktop-file-utils -BuildRequires: doxygen -BuildRequires: fuse-devel -BuildRequires: gettext-devel -BuildRequires: gtkmm24-devel -BuildRequires: libglade2-devel -BuildRequires: libglademm24-devel -BuildRequires: libtar-devel -BuildRequires: libtool -BuildRequires: libusb-devel -BuildRequires: libxml++-devel -BuildRequires: zlib-devel -Requires: hicolor-icon-theme - -%description -Barry is a desktop tool set for managing your BlackBerry device. - -This package contains command line tools which will enable you to charge your -device with a proper 500mA and be able to access data on the device. It also -includes a GUI application to backup your BlackBerry. - -%package libs -Summary: Library files for %{name} -Requires: kmod -Requires: pam - -%description libs -This package contains the library files used by BlackBerry Desktop for Linux. - -%package devel -Summary: Development files for %{name} -Requires: %{name}-libs%{?_isa} = %{version}-%{release} -Requires: boost-devel%{?_isa} -Requires: libusb-devel%{?_isa} - -%description devel -This package contains the development library files for Barry, barry-libs. - -%package devel-docs -Summary: Development libraries documentation of %{name} -BuildArch: noarch - -%description devel-docs -This package contains the documentation for the development library files for -Barry. - -%package opensync -Summary: Opensync plugin of BlackBerry Desktop for Linux -BuildRequires: libopensync-devel -Requires: libopensync = 1:0.22 - -%description opensync -This package contains the opensync plugin to synchronize your BlackBerry. - -%prep -%setup -q -%patch1 -p1 -rm -frv ./doc/www/*.php -rm -frv ./doc/www/*.sh -#find ./doc/www/doxygen/html -type f -size 0 -name \*.map -exec rm '{}' \; - -%build -# main tree -%configure --enable-boost --with-zlib --disable-rpath -#--disable-rpath doesn't seem effective -sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool -sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool -%make_build - -# gui tree -pushd gui/ -%configure --disable-rpath PKG_CONFIG_PATH="..:$PKG_CONFIG_PATH" CXXFLAGS="-I../.." LDFLAGS="-L../../src" -#--disable-rpath doesn't seem effective -sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool -sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool -%make_build -popd - -# opensync tree -pushd opensync-plugin/ -%configure --disable-rpath PKG_CONFIG_PATH="..:$PKG_CONFIG_PATH" CXXFLAGS="-I../.." LDFLAGS="-L../../src" -#--disable-rpath doesn't seem effective -sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool -sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool -%make_build -popd - -%install -# main tree -%make_install - -mkdir -p %{buildroot}%{_prefix}/lib/udev/rules.d -cp udev/*.rules %{buildroot}%{_prefix}/lib/udev/rules.d/ - -#mkdir -p %{buildroot}%{_sysconfdir}/security/console.perms.d - -mkdir -p %{buildroot}%{_sysconfdir}/modprobe.d -cp modprobe/blacklist-berry_charge.conf %{buildroot}%{_sysconfdir}/modprobe.d/ - -mkdir -p %{buildroot}%{_sysconfdir}/ppp/peers -cp ppp/barry-* %{buildroot}%{_sysconfdir}/ppp/peers/ - -mkdir -p %{buildroot}%{_sysconfdir}/chatscripts -cp ppp/barry-*.chat %{buildroot}%{_sysconfdir}/chatscripts/ - -# Install hal fdi config -mkdir -p %{buildroot}%{_datadir}/hal/fdi/information/10freedesktop -mkdir -p %{buildroot}%{_datadir}/hal/fdi/policy/10osvendor -cp hal/fdi/information/10freedesktop/10-blackberry.fdi %{buildroot}%{_datadir}/hal/fdi/information/10freedesktop -#cp hal/fdi/policy/10osvendor/19-blackberry-acl.fdi %{buildroot}%{_datadir}/hal/fdi/policy/10osvendor - -# Install hal support script -mkdir -p %{buildroot}%{_bindir} -cp hal/hal-blackberry %{buildroot}%{_bindir} - -%find_lang %{name} - -# gui tree -pushd gui/ -%make_install -desktop-file-install --dir=%{buildroot}%{_datadir}/applications/ ../menu/barrybackup.desktop -mkdir -p %{buildroot}%{_datadir}/icons/hicolor/48x48/apps -install -pm0644 ../logo/barry_logo_icon.png %{buildroot}%{_datadir}/icons/hicolor/48x48/apps/ -popd - -# opensync tree -pushd opensync-plugin/ -%make_install -popd - -find %{buildroot} -name '*.la' -delete -print -find %{buildroot} -name '*.a' -delete -print - -%files -f %{name}.lang -%license COPYING -%{_sbindir}/* -%{_bindir}/* -%{_mandir}/man1/* -%{_datadir}/hal/fdi/information/10freedesktop/10-blackberry.fdi -#%{_datadir}/hal/fdi/policy/10osvendor/19-blackberry-acl.fdi -%{_datadir}/barry/glade/*.glade -%{_datadir}/applications/barrybackup.desktop -%{_datadir}/icons/hicolor/*/apps/*.png -%{_datadir}/locale/fr/LC_MESSAGES/barry-backup.mo -%{_datadir}/locale/fr/LC_MESSAGES/barry-opensync-plugin.mo -%{_datadir}/locale/es/LC_MESSAGES/barry-backup.mo -%{_datadir}/locale/es/LC_MESSAGES/barry-opensync-plugin.mo -%config(noreplace) %{_sysconfdir}/ppp/peers/* -%config(noreplace) %{_sysconfdir}/chatscripts/*.chat - -%files libs -%license COPYING -%doc AUTHORS ChangeLog NEWS README -%{_libdir}/*.so.* -%{_prefix}/lib/udev/rules.d/* -#%config(noreplace) %{_sysconfdir}/security/console.perms.d/* -%config(noreplace) %{_sysconfdir}/modprobe.d/blacklist-berry_charge.conf - -%files devel -%doc TODO examples/*.cc examples/*.am -%{_includedir}/barry18/ -%{_libdir}/*.so -%{_libdir}/pkgconfig/*.pc - -%files devel-docs -%doc doc/* - -%files opensync -%{_libdir}/opensync/plugins/* -%{_datadir}/opensync/defaults/* - -%ldconfig_scriptlets libs - -%changelog -* Wed Jul 24 2019 Fedora Release Engineering - 0.18.4-27 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Thu Jan 31 2019 Fedora Release Engineering - 0.18.4-26 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Thu Jan 24 2019 Jonathan Wakely - 0.18.4-25 -- Rebuilt for Boost 1.69 - -* Thu Jul 12 2018 Fedora Release Engineering - 0.18.4-24 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Wed Feb 07 2018 Fedora Release Engineering - 0.18.4-23 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Tue Jan 23 2018 Jonathan Wakely - 0.18.4-22 -- Rebuilt for Boost 1.66 - -* Sun Jan 07 2018 Igor Gnatenko - 0.18.4-21 -- Remove obsolete scriptlets - -* Wed Aug 02 2017 Fedora Release Engineering - 0.18.4-20 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 0.18.4-19 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Wed Jul 19 2017 Jonathan Wakely - 0.18.4-18 -- Rebuilt for s390x binutils bug - -* Tue Jul 18 2017 Jonathan Wakely - 0.18.4-17 -- Rebuilt for Boost 1.64 - -* Mon May 15 2017 Fedora Release Engineering - 0.18.4-16 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild - -* Tue Feb 07 2017 Kalev Lember - 0.18.4-15 -- Rebuilt for Boost 1.63 - -* Wed Feb 03 2016 Fedora Release Engineering - 0.18.4-14 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Thu Jan 28 2016 Jonathan Wakely 0.18.4-13 -- Patched for C++14 and rebuilt for Boost 1.60 - -* Thu Aug 27 2015 Jonathan Wakely - 0.18.4-12 -- Rebuilt for Boost 1.59 - -* Wed Jul 29 2015 Fedora Release Engineering - 0.18.4-11 -- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159 - -* Wed Jul 22 2015 David Tardon - 0.18.4-10 -- rebuild for Boost 1.58 - -* Tue Jul 14 2015 Mosaab Alzoubi - 0.18.4-9 -- Fix #1239384 -- Fix some days in %%changelog - -* Wed Jun 17 2015 Fedora Release Engineering - 0.18.4-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Tue Jan 27 2015 Petr Machata - 0.18.4-7 -- Rebuild for boost 1.57.0 - -* Fri Aug 15 2014 Fedora Release Engineering - 0.18.4-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sat Jun 07 2014 Fedora Release Engineering - 0.18.4-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Fri May 23 2014 Petr Machata - 0.18.4-4 -- Rebuild for boost 1.55.0 - -* Sat Aug 03 2013 Fedora Release Engineering - 0.18.4-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Sat Jul 27 2013 pmachata@redhat.com - 0.18.4-2 -- Rebuild for boost 1.54.0 - -* Fri Apr 19 2013 Nathanael Noblet - 0.18.4-1 -- New upstream release - -* Sun Feb 10 2013 Denis Arnaud - 0.18.3-5 -- Rebuild for Boost-1.53.0 - -* Sat Feb 09 2013 Denis Arnaud - 0.18.3-4 -- Rebuild for Boost-1.53.0 - -* Mon Jul 30 2012 Nathanael Noblet - 0.18.3-3 -- Rebuilt for new boost 1.50 release - -* Wed Jul 18 2012 Fedora Release Engineering - 0.18.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Wed Jun 6 2012 Nathanael Noblet - 0.18.3-1 -- remove udev requires -- moved udev rules to system directory -- removed un-needed security directory -- New upstream release - -* Wed May 2 2012 Nathanael Noblet - 0.18.0-1 -- New upstream release - -* Tue Feb 28 2012 Fedora Release Engineering - 0.17.1-7 -- Rebuilt for c++ ABI breakage - -* Thu Jan 5 2012 Nathanael Noblet - 0.17.1-6 -- Fixes for gcc 4.7 - -* Sun Nov 20 2011 Nathanael Noblet - 0.17.1-5 -- Release bump for F16 boost soname change - -* Wed Nov 9 2011 Nathanael Noblet - 0.17.1-4 -- patch for bug #752000 - -* Fri Jul 22 2011 Nathanael Noblet - 0.17.1-3 -- boost requirements - -* Wed Apr 6 2011 Nathanael Noblet - 0.17.1-2 -- Release bump for F16 boost soname change - -* Fri Mar 4 2011 Nathanael Noblet - 0.17.1-1 -- Version bump - fixes build issues + some other minor software bugs - -* Wed Feb 16 2011 Nathanael Noblet - 0.17.0-2 -- Readded smp_mflags as they aren't the build issue -- added disable-rpath which fixes the build issue and saves us rpath sed commands - -* Mon Feb 14 2011 Nathanael Noblet - 0.17.0-1 -- Latest release -- Updates Source0 and URL tags accordingly -- Add libxml++ dependency -- Removed smp_mflags as we're experiencing build failures - prompted upstream to fix recursive makefiles - -* Mon Feb 07 2011 Fedora Release Engineering - 0.17-0.7.20110126git -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Wed Jan 26 2011 Nathanael Noblet - 0.6.20110126git -- fix for bz#665648 - -* Tue Jan 18 2011 Nathanael Noblet - 0.6.20110118git -- New git snapshot to fix udev acl permissions - -* Fri Dec 31 2010 Nathanael Noblet - 0.6.20101231git -- New git snapshot - essentially RC1 - -* Fri Nov 26 2010 Nathanael Noblet - 0.6.20101126git -- New git snapshot - -* Thu Aug 05 2010 Nathanael Noblet - 0.4.20100730git -- Removed un-needed specfile conditionals -- Version bump - -* Wed Aug 04 2010 Rahul Sundaram - 0.2.20100329git -- Rebuild for Boost soname bump -- Update spec for guidelines and drop obsolete ifdefs - -* Thu Jul 29 2010 Nathanael Noblet - 0.3.20100730git -- Rebuilt against new boost -- Release version bump to keep upgrade path proper - -* Mon Mar 29 2010 Nathanael Noblet - 0.1.20100329git -- Update version to include new udev rules fixing permission issue on f12 -- Fix icon and .desktop file installation -- rpmlint spelling errors fixed - -* Fri Jan 22 2010 Rahul Sundaram - 0.1.5-0.10.200963git -- Rebuild for Boost soname bump - -* Thu Sep 17 2009 Peter Lemenkov - 0.15-0.9.20090630git -- Rebuilt with new fuse - -* Fri Jul 24 2009 Fedora Release Engineering - 0.15-0.8.20090630git -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Tue Jun 30 2009 Christopher D. Stover 0.15-0.7.20090630git -- version/git bump -- create separate doc package; BZ#508462 -- fixed opensync build issue; BZ#506609 -- incorporated hal changes to fix permission issues; BZ#478851 -- add icon for BarryBackup; BZ#483151 - -* Tue Jun 23 2009 Christopher D. Stover 0.15-0.6.20090623git -- version/git bump -- added configure --with-zlib - -* Tue Mar 03 2009 Caolán McNamara - 0.15-0.5.20090109git -- include stdio.h for EOF - -* Mon Feb 23 2009 Fedora Release Engineering - 0.15-0.4.20090109git -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Mon Jan 12 2009 Christopher D. Stover 0.15-0.3.20090109git -- version bump for proper patch name - -* Mon Jan 12 2009 Christopher D. Stover 0.15-0.2.20090109git -- enable fuse module during build -- include ip_modem password patch for the Blackberry Bold 9000 - -* Mon Jan 12 2009 Christopher D. Stover 0.15-0.1.20090109git -- version/git bump - -* Thu Dec 18 2008 Petr Machata - 0.14-6 -- rebuild for new boost - -* Wed Nov 12 2008 Christopher D. Stover 0.14-5 -- removed opensync support for F11 - -* Mon Nov 10 2008 Christopher D. Stover 0.14-4 -- merged gui with the main package - -* Mon Nov 10 2008 Christopher D. Stover 0.14-3 -- fixed Requires and BuildRequires -- modified gui package summary -- moved some config files to the libs package -- removed static libraries - -* Sun Nov 09 2008 Christopher D. Stover 0.14-2 -- updated license to GPLv2+ -- fixed directory ownership issues -- created separate libs package and moved *.so to devel package -- cleaned up /doc/www -- removed Rpaths - -* Tue Oct 28 2008 Christopher D. Stover 0.14-1 -- initial package for fedora - -* Wed Sep 24 2008 Chris Frey 0.14-0 -- version bump -- added new ppp chat script for T-Mobile US -- renamed libbarry to libbarry0 - -* Thu May 29 2008 Chris Frey 0.13-1 -- version bump -- added brecsum -- added ppp options and chat scripts -- added manpages for pppob, brecsum, breset, upldif, barrybackup -- spec file now assumes gui and opensync, with conditional checks depending on host - -* Fri Dec 07 2007 Chris Frey 0.12-1 -- version bump - -* Fri Nov 30 2007 Chris Frey 0.11-1 -- version bump - -* Fri Nov 30 2007 Chris Frey 0.10-1 -- version bump -- removed ktrans and translate from rpm package -- added bidentify - -* Thu Aug 09 2007 Chris Frey 0.9-1 -- version bump - -* Fri Aug 03 2007 Chris Frey 0.8-1 -- version bump -- changed tarball to bz2 - -* Tue May 01 2007 Chris Frey 0.7-2 -- added pppob to utils - -* Thu Mar 08 2007 Chris Frey 0.7-1 -- removed barry base package that only contained docs, and put docs in libbarry* -- changed barrybackup reference to barry-gui -- removed the patch step, as version 0.7 shouldn't need it -- added license file to each package - -* Sun Mar 04 2007 Troy Engel 0.6-1 -- initial build -- adding udev and console perms patch for raw 0.6 diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..016cd44 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +barry fails to build from source: https://bugzilla.redhat.com/show_bug.cgi?id=1674685 diff --git a/gcc-4.7.patch b/gcc-4.7.patch deleted file mode 100644 index 7f9852c..0000000 --- a/gcc-4.7.patch +++ /dev/null @@ -1,21 +0,0 @@ ---- src/packet.h.org 2012-01-05 11:49:43.000000000 -0700 -+++ src/packet.h 2012-01-05 11:50:02.873589023 -0700 -@@ -26,6 +26,7 @@ - - #include - #include -+#include - #include "protocol.h" - #include "data.h" - ---- src/j_jdwp.cc.org 2012-01-05 12:08:54.772293943 -0700 -+++ src/j_jdwp.cc 2012-01-05 12:09:10.524984146 -0700 -@@ -24,7 +24,7 @@ - #include - #include - #include -- -+#include - - namespace Barry { namespace JDWP { - diff --git a/sources b/sources deleted file mode 100644 index a7e0f22..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -840572f21bb0b5b37ca2c39e8c72da83 barry-0.18.4.tar.bz2